hexsha stringlengths 40 40 | size int64 5 1.05M | ext stringclasses 98
values | lang stringclasses 21
values | max_stars_repo_path stringlengths 3 945 | max_stars_repo_name stringlengths 4 118 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses listlengths 1 10 | max_stars_count int64 1 368k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 3 945 | max_issues_repo_name stringlengths 4 118 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 10 | max_issues_count int64 1 134k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 3 945 | max_forks_repo_name stringlengths 4 135 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 10 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 5 1.05M | avg_line_length float64 1 1.03M | max_line_length int64 2 1.03M | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
42169a2ea5b85859ae1d912d0d5008d1c5aca02e | 31 | kts | Kotlin | settings.gradle.kts | holmes89/links-api | 7f814e006730a0123968ef4a9d56ec35072ce6e0 | [
"Apache-2.0"
] | null | null | null | settings.gradle.kts | holmes89/links-api | 7f814e006730a0123968ef4a9d56ec35072ce6e0 | [
"Apache-2.0"
] | null | null | null | settings.gradle.kts | holmes89/links-api | 7f814e006730a0123968ef4a9d56ec35072ce6e0 | [
"Apache-2.0"
] | null | null | null | rootProject.name = "links-api"
| 15.5 | 30 | 0.741935 |
26129789b9dd55ca7ecb3bea5044cfa20449c98c | 37,956 | java | Java | docroot/WEB-INF/src/it/infn/ct/QueryIsidore.java | csgf/parallel-semantic-search-portlet | f5f3e1f8923c2c444ea562edce8c717df79224d4 | [
"Apache-2.0"
] | null | null | null | docroot/WEB-INF/src/it/infn/ct/QueryIsidore.java | csgf/parallel-semantic-search-portlet | f5f3e1f8923c2c444ea562edce8c717df79224d4 | [
"Apache-2.0"
] | null | null | null | docroot/WEB-INF/src/it/infn/ct/QueryIsidore.java | csgf/parallel-semantic-search-portlet | f5f3e1f8923c2c444ea562edce8c717df79224d4 | [
"Apache-2.0"
] | null | null | null | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package it.infn.ct;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.openrdf.model.Value;
import org.openrdf.query.*;
import org.openrdf.query.resultio.TupleQueryResultFormat;
import org.openrdf.repository.Repository;
import org.openrdf.repository.RepositoryConnection;
import org.openrdf.repository.RepositoryException;
import org.openrdf.repository.http.HTTPRepository;
/**
*
* @author ccarrubba
*/
public class QueryIsidore {
public static RepositoryConnection IsidoreConnection;
public static ArrayList arrayIsidoreTitles;
public static boolean isidoreServiceAvailable;
static public RepositoryConnection ConnectionToIsidore(String IsidoreEndPoint)
throws RepositoryException
{
//String endpointURL = "http://rechercheisidore.fr/sparql/";
HTTPRepository myRepository = new HTTPRepository(IsidoreEndPoint, "");
myRepository.initialize();
myRepository.setPreferredTupleQueryResultFormat(TupleQueryResultFormat.SPARQL);
IsidoreConnection = myRepository.getConnection();
return IsidoreConnection;
}
static public int testEndPoint(String IsidoreEndPoint)
throws MalformedURLException, IOException
{
//URL url = new URL("http://rechercheisidore.fr/sparql/");
URL url = new URL(IsidoreEndPoint);
HttpURLConnection http = null;
int statusCode = 0;
try {
http = (HttpURLConnection) url.openConnection();
} catch (IOException ex) {
Logger.getLogger(QueryIsidore.class.getName()).log(Level.SEVERE, null, ex);
// System.out.println("CATCH1");
statusCode = -1;
}
try {
statusCode = http.getResponseCode();
} catch (IOException ex) {
Logger.getLogger(QueryIsidore.class.getName()).log(Level.SEVERE, null, ex);
//System.out.println("CATCH2");
statusCode = -1;
}
System.out.println("STATUS ISIDORE URL--->" + statusCode);
return statusCode;
}
public static ArrayList queryIsidoreResource(String search_word,
String numPage,
int numberRecords,
String IsidoreEndPoint)
throws MalformedURLException, IOException
{
ArrayList arrayIsidoreResourceDupl = new ArrayList();
ArrayList arrayIsidoreResource = new ArrayList();
int statusCode = testEndPoint(IsidoreEndPoint);
if (statusCode != -1) {
try {
ConnectionToIsidore(IsidoreEndPoint);
String word = "' " + search_word + " '";
String bif_word = " \"' " + search_word + " '\"";
int page = Integer.parseInt(numPage);
int numOffset = (page - 1) * numberRecords;
int numberFinal = numberRecords * page;
// String queryString = ""
// + "SELECT distinct ?s WHERE {"
// +"?s dc:title ?title."
// + "FILTER regex(?title, "+word+",'i')."
// + "}limit "+numberFinal;
String queryString = "";
if (search_word.contains(":")) {
String[] splitSword = search_word.split(":");
String field = splitSword[0];
if (field.equals(SemanticQuery.search_filter.author.toString()) ||
field.equals(SemanticQuery.search_filter.format.toString()) ||
field.equals(SemanticQuery.search_filter.type.toString()) ||
field.equals(SemanticQuery.search_filter.publisher.toString()) ||
field.equals(SemanticQuery.search_filter.subject.toString()))
{
SemanticQuery.search_filter wordFilter = SemanticQuery.search_filter.valueOf(field);
System.out.println("wordFilter ISIDORE =>>>>>>" + wordFilter);
String s = splitSword[1];
String search = "'" + s + "'";
switch (wordFilter) {
case author:
queryString = ""
+ " PREFIX dc-term:<http://purl.org/dc/terms/>\n"
+ "SELECT distinct ?s \n"
+ "WHERE {\n "
+ "?s dc-term:creator ?creator.\n"
+ "?creator rdfs:label ?author.\n"
+ "FILTER regex(?author, " + search + ",'i').\n"
+ "}limit " + numberFinal;
break;
case subject:
queryString = ""
+ " PREFIX dc-term:<http://purl.org/dc/terms/>\n"
+ "SELECT distinct ?s \n"
+ "WHERE {\n "
+ "?s dc:subject ?subject.\n"
+ "FILTER regex(?subject, " + search + ",'i').\n"
+ "}limit " + numberFinal;
case type:
queryString = ""
+ " PREFIX dc-term:<http://purl.org/dc/terms/>\n"
+ "SELECT distinct ?s \n"
+ "WHERE {\n "
+ "?s dc:type ?type.\n"
+ "FILTER regex(?type, " + search + ",'i').\n"
+ "}limit " + numberFinal;
break;
case format:
queryString = ""
+ " PREFIX dc-term:<http://purl.org/dc/terms/>\n"
+ "SELECT distinct ?s \n"
+ "WHERE {\n "
+ "?s dc:format ?format.\n"
+ "FILTER regex(?format, " + search + ",'i').\n"
+ "}limit " + numberFinal;
break;
case publisher:
queryString = ""
+ " PREFIX dc-term:<http://purl.org/dc/terms/>\n"
+ "SELECT distinct ?s \n"
+ "WHERE {\n "
+ "?s dc:publisher ?publisher.\n"
+ "FILTER regex(?publisher, " + search + ",'i').\n"
+ "}limit " + numberFinal;
default:
break;
}
} else {
queryString = ""
+ "SELECT distinct ?s WHERE {"
+ "?s dc:title ?title."
+ "?title bif:contains " + bif_word + "."
+ "}limit " + numberFinal;
}
} else {
queryString = ""
+ "SELECT distinct ?s WHERE {"
+ "?s dc:title ?title."
+ "?title bif:contains " + bif_word + "."
+ "}limit " + numberFinal;
}
//System.out.println("QUERY Isidore: " + queryString);
TupleQuery tupleQuery = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL,
queryString);
TupleQueryResult result = tupleQuery.evaluate();
if (result.hasNext())
{
while (result.hasNext())
{
BindingSet bindingSet = result.next();
String resource = bindingSet.getValue("s").stringValue();
arrayIsidoreResourceDupl.add(resource);
}
}
arrayIsidoreResource = getListNotDuplicate(arrayIsidoreResourceDupl);
} catch (QueryEvaluationException ex) {
Logger.getLogger(QueryIsidore.class.getName()).log(Level.SEVERE, null, ex);
//arrayIsidoreResource.add("Exception");
System.out.println("ISIDORE QueryEvaluationException");
} catch (MalformedQueryException ex) {
Logger.getLogger(QueryIsidore.class.getName()).log(Level.SEVERE, null, ex);
arrayIsidoreResource.add("Exception");
System.out.println(" ISIDORE MalformedQueryException");
} catch (RepositoryException ex) {
Logger.getLogger(QueryIsidore.class.getName()).log(Level.SEVERE, null, ex);
arrayIsidoreResource.add("Exception");
System.out.println(" ISIDORE RepositoryException");
} finally {
try {
IsidoreConnection.close();
} catch (RepositoryException ex) {
Logger.getLogger(QueryIsidore.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
return arrayIsidoreResource;
}
public static ArrayList getListNotDuplicate(ArrayList listOriginal) {
ArrayList listNuova = new ArrayList();
if (listOriginal.size() > 1) {
int k = 1;
int j, i = 0;
boolean duplicato;
listNuova.add(listOriginal.get(0));
for (i = 1; i < listOriginal.size(); i++) {
duplicato = false;
for (j = 0; j < i; j++) {
if (listOriginal.get(i).equals(listOriginal.get(j))) {
duplicato = true;
}
}
if (!duplicato) {
listNuova.add(listOriginal.get(i));
}
}
return listNuova;
} else {
return listOriginal;
}
}
public static String getIsidoreTitle(String resource)
throws RepositoryException, MalformedQueryException, UnsupportedEncodingException
{
ArrayList arrayIsidoreTitleDupl = new ArrayList();
arrayIsidoreTitles = new ArrayList();
String sTitles = "";
try {
String queryStringTitle = "";
queryStringTitle = "SELECT ?title \n"
+ "WHERE {\n "
+ "<" + resource + "> dc:title ?title.\n"
+ "}";
// System.out.println("QUERY TITLE Isidore-->"+queryStringTitle);
TupleQuery tupleQuery_title = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL, queryStringTitle);
TupleQueryResult result_title = tupleQuery_title.evaluate();
String titles = "";
if (result_title.hasNext()) {
while (result_title.hasNext()) {
BindingSet bindingSet_title = result_title.next();
if (bindingSet_title.getValue("title") != null) {
Value title = bindingSet_title.getValue("title");
titles = title.stringValue();
String titleFinale = new String(title.stringValue().getBytes("iso-8859-1"), "utf-8");
arrayIsidoreTitleDupl.add(titleFinale);
}
}
arrayIsidoreTitles = getListNotDuplicate(arrayIsidoreTitleDupl);
} else {
sTitles = "---";
}
result_title.close();
for (int i = 0; i < arrayIsidoreTitles.size(); i++) {
if (arrayIsidoreTitles.get(i).toString() != "") {
sTitles = sTitles + "##" + arrayIsidoreTitles.get(i).toString();
}
}
} catch (QueryEvaluationException ex) {
Logger.getLogger(SemanticQuery.class.getName()).log(Level.SEVERE, null, ex);
}
return sTitles;
}
public static String getIsidoreAuthors(String resource)
throws RepositoryException, MalformedQueryException,
UnsupportedEncodingException
{
ArrayList arrayIsidoreAuthorsDupl = new ArrayList();
ArrayList arrayIsidoreAuthors = new ArrayList();
String sAuthors = "";
try {
String queryStringAuthors = "PREFIX dc-term:<http://purl.org/dc/terms/>\n"
+ "SELECT ?author \n"
+ "WHERE {\n "
+ "<" + resource + "> dc-term:creator ?creator.\n"
+ "?creator rdfs:label ?author.\n"
+ "}";
//System.out.println("QUERY CREATOR Isidore-->"+queryStringAuthors);
TupleQuery tupleQuery_authors = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL, queryStringAuthors);
TupleQueryResult result_authors = tupleQuery_authors.evaluate();
String authors = "";
if (result_authors.hasNext())
{
while (result_authors.hasNext())
{
BindingSet bindingSet_authors = result_authors.next();
if (bindingSet_authors.getValue("author") != null)
{
Value author = bindingSet_authors.getValue("author");
authors = author.stringValue();
String authorsFinale = new String(author.stringValue().getBytes("iso-8859-1"), "utf-8");
arrayIsidoreAuthorsDupl.add(authorsFinale);
}
}
arrayIsidoreAuthors = getListNotDuplicate(arrayIsidoreAuthorsDupl);
} else {
sAuthors = "";
}
result_authors.close();
for (int i = 0; i < arrayIsidoreAuthors.size(); i++) {
if (arrayIsidoreAuthors.get(i).toString() != "") {
sAuthors = sAuthors + "##" + arrayIsidoreAuthors.get(i).toString();
}
}
} catch (QueryEvaluationException ex) {
Logger.getLogger(SemanticQuery.class.getName()).log(Level.SEVERE, null, ex);
}
return sAuthors;
}
public static String getIsidoreDescription(String resource)
throws RepositoryException, MalformedQueryException, UnsupportedEncodingException
{
ArrayList arrayIsidoreDescriptionDupl = new ArrayList();
ArrayList arrayIsidoreDescrtiption = new ArrayList();
String sDescriptions = "";
try {
String queryStringDescriptions = ""
+ "SELECT ?desc \n"
+ "WHERE {\n "
+ "<" + resource + "> dc:description ?desc.\n"
+ "}";
//System.out.println("QUERY DESCRIPTION Isidore-->"+queryStringDescriptions);
TupleQuery tupleQuery_description = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL, queryStringDescriptions);
TupleQueryResult result_description = tupleQuery_description.evaluate();
String descriptions = "";
if (result_description.hasNext())
{
while (result_description.hasNext())
{
BindingSet bindingSet_description = result_description.next();
if (bindingSet_description.getValue("desc") != null)
{
Value description = bindingSet_description.getValue("desc");
descriptions = description.stringValue();
String descrFinale = new String(description.stringValue().getBytes("iso-8859-1"), "utf-8");
arrayIsidoreDescriptionDupl.add(descrFinale);
}
}
arrayIsidoreDescrtiption = getListNotDuplicate(arrayIsidoreDescriptionDupl);
} else {
sDescriptions = "";
}
result_description.close();
if (arrayIsidoreDescrtiption.size() > 0) {
for (int i = 0; i < arrayIsidoreDescrtiption.size(); i++) {
sDescriptions = sDescriptions + "##" + arrayIsidoreDescrtiption.get(i).toString();
}
}
} catch (QueryEvaluationException ex) {
Logger.getLogger(SemanticQuery.class.getName()).log(Level.SEVERE, null, ex);
}
return sDescriptions;
}
public static String getIsidoreIdentifier(String resource)
throws RepositoryException, MalformedQueryException, UnsupportedEncodingException
{
ArrayList arrayIsidoreIdDupl = new ArrayList();
ArrayList arrayIsidoreId = new ArrayList();
String sId = "";
try {
String queryStringId = ""
+ "SELECT ?id \n"
+ "WHERE {\n "
+ "<" + resource + "> dc:identifier ?id.\n"
+ "}";
//System.out.println("QUERY IDENTIFIER Isidore-->"+queryStringId);
TupleQuery tupleQuery_id = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL, queryStringId);
TupleQueryResult result_id = tupleQuery_id.evaluate();
String ids = "";
if (result_id.hasNext())
{
while (result_id.hasNext())
{
BindingSet bindingSet_id = result_id.next();
if (bindingSet_id.getValue("id") != null)
{
Value description = bindingSet_id.getValue("id");
ids = description.stringValue();
String idFinale = new String(description.stringValue().getBytes("iso-8859-1"), "utf-8");
arrayIsidoreIdDupl.add(idFinale);
}
}
arrayIsidoreId = getListNotDuplicate(arrayIsidoreIdDupl);
} else {
sId = "";
}
result_id.close();
for (int i = 0; i < arrayIsidoreId.size(); i++) {
if (arrayIsidoreId.get(i).toString() != "") {
sId = sId + "##" + arrayIsidoreId.get(i).toString();
}
}
} catch (QueryEvaluationException ex) {
Logger.getLogger(SemanticQuery.class.getName()).log(Level.SEVERE, null, ex);
}
return sId;
}
public static ArrayList getIsidorePublisher(String resource)
throws RepositoryException, MalformedQueryException,
QueryEvaluationException, UnsupportedEncodingException
{
ArrayList arrayIsidorePublisherDupl = new ArrayList();
ArrayList arrayIsidorePublisher = new ArrayList();
String sPublisher = "";
String queryStringPublisher = ""
+ "SELECT ?publisher \n"
+ "WHERE {\n "
+ "<" + resource + "> dc:publisher ?publisher.\n"
+ "}";
//System.out.println("QUERY PUBLISHER Isidore-->"+queryStringPublisher);
TupleQuery tupleQuery_publisher = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL, queryStringPublisher);
TupleQueryResult result_publisher = tupleQuery_publisher.evaluate();
String publishers = "";
if (result_publisher.hasNext())
{
while (result_publisher.hasNext())
{
BindingSet bindingSet_publisher = result_publisher.next();
if (bindingSet_publisher.getValue("publisher") != null)
{
Value publisher = bindingSet_publisher.getValue("publisher");
publishers = publisher.stringValue();
String publisherFinale = new String(publisher.stringValue().getBytes("iso-8859-1"), "utf-8");
arrayIsidorePublisherDupl.add(publisherFinale);
}
}
arrayIsidorePublisher = getListNotDuplicate(arrayIsidorePublisherDupl);
}
return arrayIsidorePublisher;
}
public static ArrayList getIsidoreSubject(String resource)
throws RepositoryException, MalformedQueryException, QueryEvaluationException, UnsupportedEncodingException
{
ArrayList arrayIsidoreSubjectDupl = new ArrayList();
ArrayList arrayIsidoreSubject = new ArrayList();
String sSubject = "";
String queryStringSubject = ""
+ "SELECT ?subject \n"
+ "WHERE {\n "
+ "<" + resource + "> dc:subject ?subject.\n"
+ "}";
TupleQuery tupleQuery_Subject = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL, queryStringSubject);
TupleQueryResult result_Subject = tupleQuery_Subject.evaluate();
String subjects = "";
if (result_Subject.hasNext())
{
while (result_Subject.hasNext())
{
BindingSet bindingSet_Subject = result_Subject.next();
if (bindingSet_Subject.getValue("subject") != null)
{
Value subject = bindingSet_Subject.getValue("subject");
subjects = subject.stringValue();
String subjectFinale = new String(subject.stringValue().getBytes("iso-8859-1"), "utf-8");
arrayIsidoreSubjectDupl.add(subjectFinale);
}
}
arrayIsidoreSubject = getListNotDuplicate(arrayIsidoreSubjectDupl);
}
return arrayIsidoreSubject;
}
public static ArrayList getIsidoreSource(String resource)
throws RepositoryException, MalformedQueryException, QueryEvaluationException, UnsupportedEncodingException
{
ArrayList arrayIsidoreSourceDupl = new ArrayList();
ArrayList arrayIsidoreSource = new ArrayList();
String sSource = "";
String queryStringSource = ""
+ "SELECT ?source \n"
+ "WHERE {\n "
+ "<" + resource + "> dc:source ?source.\n"
+ "}";
//System.out.println("QUERY source Isidore-->"+queryStringSource);
TupleQuery tupleQuery_Source = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL, queryStringSource);
TupleQueryResult result_Source = tupleQuery_Source.evaluate();
String sources = "";
if (result_Source.hasNext())
{
while (result_Source.hasNext())
{
BindingSet bindingSet_Source = result_Source.next();
if (bindingSet_Source.getValue("source") != null)
{
Value source = bindingSet_Source.getValue("source");
sources = source.stringValue();
String sourceFinale = new String(source.stringValue().getBytes("iso-8859-1"), "utf-8");
arrayIsidoreSourceDupl.add(sourceFinale);
}
}
arrayIsidoreSource = getListNotDuplicate(arrayIsidoreSourceDupl);
}
return arrayIsidoreSource;
}
public static ArrayList getIsidoreLanguage(String resource)
throws RepositoryException, MalformedQueryException, QueryEvaluationException, UnsupportedEncodingException
{
ArrayList arrayIsidoreLanguageDupl = new ArrayList();
ArrayList arrayIsidoreLanguage = new ArrayList();
String sLanguage = "";
String queryStringLanguage = ""
+ "SELECT ?language \n"
+ "WHERE {\n "
+ "<" + resource + "> dc:language ?language.\n"
+ "}";
//System.out.println("QUERY language Isidore-->"+queryStringLanguage);
TupleQuery tupleQuery_language = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL, queryStringLanguage);
TupleQueryResult result_language = tupleQuery_language.evaluate();
String languages = "";
if (result_language.hasNext())
{
while (result_language.hasNext())
{
BindingSet bindingSet_language = result_language.next();
if (bindingSet_language.getValue("language") != null)
{
Value language = bindingSet_language.getValue("language");
languages = language.stringValue();
String languageFinale = new String(language.stringValue().getBytes("iso-8859-1"), "utf-8");
arrayIsidoreLanguageDupl.add(languageFinale);
}
}
arrayIsidoreLanguage = getListNotDuplicate(arrayIsidoreLanguageDupl);
}
return arrayIsidoreLanguage;
}
public static ArrayList getIsidoreDate(String resource)
throws RepositoryException, MalformedQueryException,
QueryEvaluationException, UnsupportedEncodingException
{
ArrayList arrayIsidoreDateDupl = new ArrayList();
ArrayList arrayIsidoreDate = new ArrayList();
String sDtae = "";
String queryStringDate = ""
+ "SELECT ?date \n"
+ "WHERE {\n "
+ "<" + resource + "> dc:date ?date.\n"
+ "}";
TupleQuery tupleQuery_date = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL, queryStringDate);
TupleQueryResult result_date = tupleQuery_date.evaluate();
String dates = "";
if (result_date.hasNext())
{
while (result_date.hasNext())
{
BindingSet bindingSet_date = result_date.next();
if (bindingSet_date.getValue("date") != null)
{
Value date = bindingSet_date.getValue("date");
dates = date.stringValue();
String dateFinale = new String(date.stringValue().getBytes("iso-8859-1"), "utf-8");
arrayIsidoreDateDupl.add(dateFinale);
}
}
arrayIsidoreDate = getListNotDuplicate(arrayIsidoreDateDupl);
}
return arrayIsidoreDate;
}
public static ArrayList getIsidoreContributor(String resource)
throws RepositoryException, MalformedQueryException, QueryEvaluationException, UnsupportedEncodingException
{
ArrayList arrayIsidoreContributorDupl = new ArrayList();
ArrayList arrayIsidoreContributor = new ArrayList();
String sContributors = "";
String queryStringContributor = ""
+ "PREFIX dc-term: <http://purl.org/dc/terms/>\n"
+ " select ?namec where { \n"
+ "<" + resource + "> dc-term:contributor ?co.\n"
+ " ?co rdfs:label ?namec.\n"
+ "}";
//System.out.println("QUERY contributor Isidore-->"+queryStringContributor);
TupleQuery tupleQuery_contributor = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL, queryStringContributor);
TupleQueryResult result_contributor = tupleQuery_contributor.evaluate();
String dates = "";
if (result_contributor.hasNext())
{
while (result_contributor.hasNext())
{
BindingSet bindingSet_contributor = result_contributor.next();
if (bindingSet_contributor.getValue("contributor") != null)
{
Value date = bindingSet_contributor.getValue("contributor");
dates = date.stringValue();
String contributorFinale = new String(date.stringValue().getBytes("iso-8859-1"), "utf-8");
arrayIsidoreContributorDupl.add(contributorFinale);
}
}
arrayIsidoreContributor = getListNotDuplicate(arrayIsidoreContributorDupl);
}
return arrayIsidoreContributor;
}
public static ArrayList getIsidoreRights(String resource)
throws RepositoryException, MalformedQueryException, QueryEvaluationException, UnsupportedEncodingException
{
ArrayList arrayIsidoreRightsDupl = new ArrayList();
ArrayList arrayIsidoreRights = new ArrayList();
String sRights = "";
String queryStringrRights = ""
+ "PREFIX dc-term: <http://purl.org/dc/terms/>\n"
+ " select ?rights where { \n"
+ "<" + resource + "> dc:rights ?rights.\n"
+ "}";
//System.out.println("QUERY rights Isidore-->"+queryStringrRights);
TupleQuery tupleQuery_rights = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL, queryStringrRights);
TupleQueryResult result_rights = tupleQuery_rights.evaluate();
String rights = "";
if (result_rights.hasNext())
{
while (result_rights.hasNext())
{
BindingSet bindingSet_rights = result_rights.next();
if (bindingSet_rights.getValue("rights") != null)
{
Value right = bindingSet_rights.getValue("rights");
rights = right.stringValue();
String rightFinale = new String(right.stringValue().getBytes("iso-8859-1"), "utf-8");
arrayIsidoreRightsDupl.add(rightFinale);
}
}
arrayIsidoreRightsDupl = getListNotDuplicate(arrayIsidoreRightsDupl);
}
return arrayIsidoreRightsDupl;
}
public static String getIsidoreCoverage(String resource)
throws RepositoryException, MalformedQueryException, QueryEvaluationException, UnsupportedEncodingException
{
String sCoverage = "";
String queryStringCoverage = ""
+ "PREFIX dc-term: <http://purl.org/dc/terms/>\n"
+ "PREFIX skos: <http://www.w3.org/2004/02/skos/core#>\n"
+ "PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>\n"
+ "select *\n"
+ "where {\n"
+ "<" + resource + "> dc-term:coverage ?coverage.\n"
+ "?coverage skos:prefLabel ?labelcoverage.\n"
+ " ?coverage geo:lat ?latitude_coverage.\n"
+ " ?coverage geo:ong ?langitude_coverage.\n"
+ "}";
//System.out.println("QUERY contributor Isidore-->"+queryStringCoverage);
TupleQuery tupleQuery_coverage = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL, queryStringCoverage);
TupleQueryResult result_coverage = tupleQuery_coverage.evaluate();
String coverages = "";
String label_coverage = "";
String latitude_coverage = "";
String longitude_coverage = "";
if (result_coverage.hasNext())
{
while (result_coverage.hasNext())
{
BindingSet bindingSet_coverage = result_coverage.next();
if (bindingSet_coverage.getValue("coverage") != null)
{
Value coverage = bindingSet_coverage.getValue("coverage");
label_coverage = bindingSet_coverage.getValue("labelcoverage").stringValue();
latitude_coverage = bindingSet_coverage.getValue("latitudecoverage").stringValue();
longitude_coverage = bindingSet_coverage.getValue("longitudecoverage").stringValue();
}
}
coverages = label_coverage + " latitude: " + latitude_coverage + "longitude: " + longitude_coverage;
}
return coverages;
}
public static ArrayList getIsidoreType(String resource)
throws RepositoryException, MalformedQueryException,
QueryEvaluationException, UnsupportedEncodingException
{
ArrayList arrayIsidoreTypeDupl = new ArrayList();
ArrayList arrayIsidoreType = new ArrayList();
String sType = "";
String queryStringType = ""
+ "PREFIX dc-term: <http://purl.org/dc/terms/>\n"
+ " select ?type where { \n"
+ "<" + resource + "> dc:type ?type.\n"
+ "}";
TupleQuery tupleQuery_type = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL, queryStringType);
TupleQueryResult result_type = tupleQuery_type.evaluate();
String types = "";
if (result_type.hasNext())
{
while (result_type.hasNext())
{
BindingSet bindingSet_type = result_type.next();
if (bindingSet_type.getValue("type") != null)
{
Value type = bindingSet_type.getValue("type");
types = type.stringValue();
String typeFinale = new String(type.stringValue().getBytes("iso-8859-1"), "utf-8");
arrayIsidoreTypeDupl.add(typeFinale);
}
}
arrayIsidoreTypeDupl = getListNotDuplicate(arrayIsidoreTypeDupl);
}
return arrayIsidoreTypeDupl;
}
public static ArrayList getIsidoreFormat(String resource)
throws RepositoryException, MalformedQueryException, QueryEvaluationException, UnsupportedEncodingException
{
ArrayList arrayIsidoreFormatDupl = new ArrayList();
ArrayList arrayIsidoreFormat = new ArrayList();
String sFormat = "";
String queryStringFormat = ""
+ "PREFIX dc-term: <http://purl.org/dc/terms/>\n"
+ " select ?format where { \n"
+ "<" + resource + "> dc:format ?format.\n"
+ "}";
//System.out.println("QUERY type Isidore-->"+queryStringFormat);
TupleQuery tupleQuery_format = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL, queryStringFormat);
TupleQueryResult result_format = tupleQuery_format.evaluate();
String formats = "";
if (result_format.hasNext())
{
while (result_format.hasNext())
{
BindingSet bindingSet_format = result_format.next();
if (bindingSet_format.getValue("format") != null)
{
Value format = bindingSet_format.getValue("format");
formats = format.stringValue();
String formatFinale = new String(format.stringValue().getBytes("iso-8859-1"), "utf-8");
arrayIsidoreFormatDupl.add(formatFinale);
}
}
arrayIsidoreFormat = getListNotDuplicate(arrayIsidoreFormatDupl);
}
return arrayIsidoreFormat;
}
public static ArrayList getIsidoreRelation(String resource)
throws RepositoryException, MalformedQueryException,
QueryEvaluationException, UnsupportedEncodingException
{
ArrayList arrayIsidoreRelationDupl = new ArrayList();
ArrayList arrayIsidoreRelation = new ArrayList();
String sRelation = "";
String queryStringRelation = ""
+ "PREFIX dc-term: <http://purl.org/dc/terms/>\n"
+ " select ?relation where { \n"
+ "<" + resource + "> dc:relation ?relation.\n"
+ "}";
//System.out.println("QUERY type Isidore-->"+queryStringRelation);
TupleQuery tupleQuery_relation = IsidoreConnection
.prepareTupleQuery(QueryLanguage.SPARQL, queryStringRelation);
TupleQueryResult result_relation = tupleQuery_relation.evaluate();
String relations = "";
if (result_relation.hasNext())
{
while (result_relation.hasNext())
{
BindingSet bindingSet_relation = result_relation.next();
if (bindingSet_relation.getValue("relation") != null)
{
Value relation = bindingSet_relation.getValue("relation");
relations = relation.stringValue();
String relationFinale = new String(relation.stringValue().getBytes("iso-8859-1"), "utf-8");
arrayIsidoreRelationDupl.add(relationFinale);
}
}
arrayIsidoreRelation = getListNotDuplicate(arrayIsidoreRelationDupl);
}
return arrayIsidoreRelation;
}
}
| 38.032064 | 120 | 0.526979 |
de239cb5181886203c46a931c3294fe51de9bfbd | 1,765 | dart | Dart | Mobile Application/Delivery Boy/lib/my_app.dart | BlondelSeumo/Grocery-Pharmacy-Courier-Delivery-App-Backend-Driver-Vendor-app | 3d515fd6e1aa924a94d83f9bb1b28871a58572df | [
"MIT"
] | 3 | 2021-07-22T17:04:57.000Z | 2021-08-24T08:29:12.000Z | Mobile Application/Vendor/lib/my_app.dart | BlondelSeumo/Grocery-Pharmacy-Courier-Delivery-App-Backend-Driver-Vendor-app | 3d515fd6e1aa924a94d83f9bb1b28871a58572df | [
"MIT"
] | null | null | null | Mobile Application/Vendor/lib/my_app.dart | BlondelSeumo/Grocery-Pharmacy-Courier-Delivery-App-Backend-Driver-Vendor-app | 3d515fd6e1aa924a94d83f9bb1b28871a58572df | [
"MIT"
] | 2 | 2021-07-14T15:03:17.000Z | 2022-02-04T17:31:01.000Z | import 'package:adaptive_theme/adaptive_theme.dart';
import 'package:flutter/material.dart';
import 'package:fuodz/constants/app_theme.dart';
import 'package:fuodz/services/app.service.dart';
import 'package:fuodz/views/pages/splash.page.dart';
import 'package:fuodz/services/auth.service.dart';
import 'constants/app_strings.dart';
import 'package:fuodz/services/router.service.dart' as router;
import 'package:i18n_extension/i18n_widget.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
class MyApp extends StatelessWidget {
const MyApp({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
//
return AdaptiveTheme(
light: AppTheme().lightTheme(),
dark: AppTheme().darkTheme(),
initial: AdaptiveThemeMode.system,
builder: (theme, darkTheme) {
return MaterialApp(
navigatorKey: AppService.navigatorKey,
debugShowCheckedModeBanner: false,
title: AppStrings.appName,
onGenerateRoute: router.generateRoute,
// initialRoute: _startRoute,
localizationsDelegates: [
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
],
supportedLocales: [
const Locale('en'),
const Locale('fr'),
const Locale('es'),
const Locale('de'),
const Locale('pt'),
const Locale('ar'),
const Locale('ko'),
],
home: I18n(
child: SplashPage(),
initialLocale: Locale(AuthServices.getLocale()),
),
theme: theme,
darkTheme: darkTheme,
);
},
);
}
}
| 32.090909 | 66 | 0.633994 |
209ca92b893e301f8682e3ee1d7948bd50b8d1a9 | 398 | dart | Dart | verbeelding_verbindt_core/lib/src/use_cases/route/delete_route_use_case.dart | middelkampdev/verbeelding-verbindt-app | 8c944a7331a003a2a3d8b168c6aa202d3a370df2 | [
"MIT"
] | null | null | null | verbeelding_verbindt_core/lib/src/use_cases/route/delete_route_use_case.dart | middelkampdev/verbeelding-verbindt-app | 8c944a7331a003a2a3d8b168c6aa202d3a370df2 | [
"MIT"
] | null | null | null | verbeelding_verbindt_core/lib/src/use_cases/route/delete_route_use_case.dart | middelkampdev/verbeelding-verbindt-app | 8c944a7331a003a2a3d8b168c6aa202d3a370df2 | [
"MIT"
] | null | null | null | import '../../../verbeelding_verbindt_core.dart';
class DeleteRouteUseCase extends UseCase<Future<void>, String> {
DeleteRouteUseCase({
required RouteRepository routeRepository,
}) : _routeRepository = routeRepository;
final RouteRepository _routeRepository;
@override
Future<void> call(
String params,
) async {
await _routeRepository.delete(
params,
);
}
}
| 20.947368 | 64 | 0.711055 |
8bafc548a0695a10a412574a98cdfeefba56a3e0 | 2,276 | dart | Dart | lib/screens/music/albums.dart | Bruhtek/jellyamp | ab16425824298c1ddbf04393b100b344964aca38 | [
"MIT"
] | null | null | null | lib/screens/music/albums.dart | Bruhtek/jellyamp | ab16425824298c1ddbf04393b100b344964aca38 | [
"MIT"
] | 10 | 2022-02-03T22:23:26.000Z | 2022-03-11T22:53:28.000Z | lib/screens/music/albums.dart | Bruhtek/jellyamp | ab16425824298c1ddbf04393b100b344964aca38 | [
"MIT"
] | null | null | null | import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:flutter_staggered_grid_view/flutter_staggered_grid_view.dart';
import '../../main.dart';
import '../../utilities/grid.dart';
import '../../providers/settings.dart';
import '../../providers/jellyfin.dart';
int crossAxisCount = 2;
// ignore: must_be_immutable
class AlbumsScreen extends ConsumerWidget {
AlbumsScreen(this.toggleSelecting, {this.albumIds, Key? key}) : super(key: key);
Function toggleSelecting;
List<String>? albumIds;
@override
Widget build(BuildContext context, WidgetRef ref) {
DisplayMode displayMode = ref.watch(settingsProvider.select((value) => value.displayMode));
List<Album> albums = [];
if (albumIds != null) {
for (var i = 0; i < albumIds!.length; i++) {
var temp = ref.watch(jellyfinAPIProvider.select((value) => value.getAlbum(albumIds![i])));
if (temp != null) {
albums.add(temp);
}
}
} else {
albums = ref.watch(jellyfinAPIProvider.select((value) => value.getAlbums()));
}
return AlignedGridView.count(
addAutomaticKeepAlives: true,
crossAxisCount: crossAxisCount,
crossAxisSpacing: 8.0,
mainAxisSpacing: 8.0,
padding: const EdgeInsets.only(top: 8.0, left: 8.0, right: 8.0),
itemCount: albums.length,
itemBuilder: (context, index) {
final album = albums[index];
// compact = 0, comfortable = 1
switch (displayMode) {
case DisplayMode.grid: // compact
return gridItem(
context,
albumCover(album, ref, context, rounded: true),
album.title,
album.artistNames.join(', '),
onClick: () => Navigator.pushNamed(context, '/albumInfo', arguments: album),
);
case DisplayMode.comfortableGrid:
return comfortableGridItem(
context,
albumCover(album, ref, context, rounded: true),
album.title,
album.artistNames.join(', '),
onClick: () => Navigator.pushNamed(context, '/albumInfo', arguments: album),
);
default:
return null;
}
},
);
}
}
| 32.985507 | 98 | 0.606327 |
605fa63e046d6523644649329f391ce0cbdbd470 | 10,316 | html | HTML | Yaml.php.html | Adrox25/EmailProject | aee8e9f2032262ae27cb98744db2612174231aaf | [
"MIT"
] | null | null | null | Yaml.php.html | Adrox25/EmailProject | aee8e9f2032262ae27cb98744db2612174231aaf | [
"MIT"
] | null | null | null | Yaml.php.html | Adrox25/EmailProject | aee8e9f2032262ae27cb98744db2612174231aaf | [
"MIT"
] | null | null | null | <html>
<head>
<title>Yaml.php</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
.s0 { color: #cc7832;}
.s1 { color: #a9b7c6;}
.s2 { color: #808080;}
.s3 { color: #a9b7c6;}
.s4 { color: #629755; font-style: italic;}
.s5 { color: #629755; font-weight: bold; font-style: italic;}
.s6 { color: #77b767; font-style: italic;}
.s7 { color: #6897bb;}
.s8 { color: #9876aa;}
.ls0 { height: 1px; border-width: 0; color: #4d4d4d; background-color:#4d4d4d}
</style>
</head>
<body bgcolor="#2b2b2b">
<table CELLSPACING=0 CELLPADDING=5 COLS=1 WIDTH="100%" BGCOLOR="#606060" >
<tr><td><center>
<font face="Arial, Helvetica" color="#000000">
Yaml.php</font>
</center></td></tr></table>
<pre><span class="s0"><?php</span>
<span class="s2">/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/</span>
<hr class="ls0"><span class="s0">namespace </span><span class="s3">Symfony</span><span class="s1">\</span><span class="s3">Component</span><span class="s1">\</span><span class="s3">Yaml</span><span class="s0">;</span>
<span class="s0">use </span><span class="s3">Symfony</span><span class="s1">\</span><span class="s3">Component</span><span class="s1">\</span><span class="s3">Yaml</span><span class="s1">\</span><span class="s3">Exception</span><span class="s1">\</span><span class="s3">ParseException</span><span class="s0">;</span>
<hr class="ls0"><span class="s4">/**</span>
<span class="s4">* Yaml offers convenience methods to load and dump YAML.</span>
<span class="s4">*</span>
<span class="s4">* </span><span class="s5">@author </span><span class="s4">Fabien Potencier </span><span class="s6"><fabien</span><span class="s4">@symfony.com></span>
<span class="s4">*</span>
<span class="s4">* </span><span class="s5">@final</span>
<span class="s4">*/</span>
<span class="s0">class </span><span class="s3">Yaml</span>
<span class="s1">{</span>
<span class="s0">const </span><span class="s3">DUMP_OBJECT </span><span class="s1">= </span><span class="s7">1</span><span class="s0">;</span>
<span class="s0">const </span><span class="s3">PARSE_EXCEPTION_ON_INVALID_TYPE </span><span class="s1">= </span><span class="s7">2</span><span class="s0">;</span>
<span class="s0">const </span><span class="s3">PARSE_OBJECT </span><span class="s1">= </span><span class="s7">4</span><span class="s0">;</span>
<span class="s0">const </span><span class="s3">PARSE_OBJECT_FOR_MAP </span><span class="s1">= </span><span class="s7">8</span><span class="s0">;</span>
<span class="s0">const </span><span class="s3">DUMP_EXCEPTION_ON_INVALID_TYPE </span><span class="s1">= </span><span class="s7">16</span><span class="s0">;</span>
<span class="s0">const </span><span class="s3">PARSE_DATETIME </span><span class="s1">= </span><span class="s7">32</span><span class="s0">;</span>
<span class="s0">const </span><span class="s3">DUMP_OBJECT_AS_MAP </span><span class="s1">= </span><span class="s7">64</span><span class="s0">;</span>
<span class="s0">const </span><span class="s3">DUMP_MULTI_LINE_LITERAL_BLOCK </span><span class="s1">= </span><span class="s7">128</span><span class="s0">;</span>
<span class="s0">const </span><span class="s3">PARSE_CONSTANT </span><span class="s1">= </span><span class="s7">256</span><span class="s0">;</span>
<span class="s0">const </span><span class="s3">PARSE_CUSTOM_TAGS </span><span class="s1">= </span><span class="s7">512</span><span class="s0">;</span>
<span class="s0">const </span><span class="s3">DUMP_EMPTY_ARRAY_AS_SEQUENCE </span><span class="s1">= </span><span class="s7">1024</span><span class="s0">;</span>
<span class="s0">const </span><span class="s3">DUMP_NULL_AS_TILDE </span><span class="s1">= </span><span class="s7">2048</span><span class="s0">;</span>
<span class="s4">/**</span>
<span class="s4">* Parses a YAML file into a PHP value.</span>
<span class="s4">*</span>
<span class="s4">* Usage:</span>
<span class="s4">*</span>
<span class="s4">* $array = Yaml::parseFile('config.yml');</span>
<span class="s4">* print_r($array);</span>
<span class="s4">*</span>
<span class="s4">* </span><span class="s5">@param </span><span class="s4">string $filename The path to the YAML file to be parsed</span>
<span class="s4">* </span><span class="s5">@param </span><span class="s4">int $flags A bit field of PARSE_* constants to customize the YAML parser behavior</span>
<span class="s4">*</span>
<span class="s4">* </span><span class="s5">@return </span><span class="s4">mixed The YAML converted to a PHP value</span>
<span class="s4">*</span>
<span class="s4">* </span><span class="s5">@throws </span><span class="s4">ParseException If the file could not be read or the YAML is not valid</span>
<span class="s4">*/</span>
<span class="s0">public static function </span><span class="s3">parseFile</span><span class="s1">(</span><span class="s3">string </span><span class="s8">$filename</span><span class="s0">, </span><span class="s3">int </span><span class="s8">$flags </span><span class="s1">= </span><span class="s7">0</span><span class="s1">)</span>
<span class="s1">{</span>
<span class="s8">$yaml </span><span class="s1">= </span><span class="s0">new </span><span class="s3">Parser</span><span class="s1">()</span><span class="s0">;</span>
<span class="s0">return </span><span class="s8">$yaml</span><span class="s1">-></span><span class="s3">parseFile</span><span class="s1">(</span><span class="s8">$filename</span><span class="s0">, </span><span class="s8">$flags</span><span class="s1">)</span><span class="s0">;</span>
<span class="s1">}</span>
<span class="s4">/**</span>
<span class="s4">* Parses YAML into a PHP value.</span>
<span class="s4">*</span>
<span class="s4">* Usage:</span>
<span class="s4">* </span><span class="s6"><code></span>
<span class="s4">* $array = Yaml::parse(file_get_contents('config.yml'));</span>
<span class="s4">* print_r($array);</span>
<span class="s4">* </span><span class="s6"></code></span>
<span class="s4">*</span>
<span class="s4">* </span><span class="s5">@param </span><span class="s4">string $input A string containing YAML</span>
<span class="s4">* </span><span class="s5">@param </span><span class="s4">int $flags A bit field of PARSE_* constants to customize the YAML parser behavior</span>
<span class="s4">*</span>
<span class="s4">* </span><span class="s5">@return </span><span class="s4">mixed The YAML converted to a PHP value</span>
<span class="s4">*</span>
<span class="s4">* </span><span class="s5">@throws </span><span class="s4">ParseException If the YAML is not valid</span>
<span class="s4">*/</span>
<span class="s0">public static function </span><span class="s3">parse</span><span class="s1">(</span><span class="s3">string </span><span class="s8">$input</span><span class="s0">, </span><span class="s3">int </span><span class="s8">$flags </span><span class="s1">= </span><span class="s7">0</span><span class="s1">)</span>
<span class="s1">{</span>
<span class="s8">$yaml </span><span class="s1">= </span><span class="s0">new </span><span class="s3">Parser</span><span class="s1">()</span><span class="s0">;</span>
<span class="s0">return </span><span class="s8">$yaml</span><span class="s1">-></span><span class="s3">parse</span><span class="s1">(</span><span class="s8">$input</span><span class="s0">, </span><span class="s8">$flags</span><span class="s1">)</span><span class="s0">;</span>
<span class="s1">}</span>
<span class="s4">/**</span>
<span class="s4">* Dumps a PHP value to a YAML string.</span>
<span class="s4">*</span>
<span class="s4">* The dump method, when supplied with an array, will do its best</span>
<span class="s4">* to convert the array into friendly YAML.</span>
<span class="s4">*</span>
<span class="s4">* </span><span class="s5">@param </span><span class="s4">mixed $input The PHP value</span>
<span class="s4">* </span><span class="s5">@param </span><span class="s4">int $inline The level where you switch to inline YAML</span>
<span class="s4">* </span><span class="s5">@param </span><span class="s4">int $indent The amount of spaces to use for indentation of nested nodes</span>
<span class="s4">* </span><span class="s5">@param </span><span class="s4">int $flags A bit field of DUMP_* constants to customize the dumped YAML string</span>
<span class="s4">*</span>
<span class="s4">* </span><span class="s5">@return </span><span class="s4">string A YAML string representing the original PHP value</span>
<span class="s4">*/</span>
<span class="s0">public static function </span><span class="s3">dump</span><span class="s1">(</span><span class="s8">$input</span><span class="s0">, </span><span class="s3">int </span><span class="s8">$inline </span><span class="s1">= </span><span class="s7">2</span><span class="s0">, </span><span class="s3">int </span><span class="s8">$indent </span><span class="s1">= </span><span class="s7">4</span><span class="s0">, </span><span class="s3">int </span><span class="s8">$flags </span><span class="s1">= </span><span class="s7">0</span><span class="s1">): </span><span class="s3">string</span>
<span class="s1">{</span>
<span class="s8">$yaml </span><span class="s1">= </span><span class="s0">new </span><span class="s3">Dumper</span><span class="s1">(</span><span class="s8">$indent</span><span class="s1">)</span><span class="s0">;</span>
<span class="s0">return </span><span class="s8">$yaml</span><span class="s1">-></span><span class="s3">dump</span><span class="s1">(</span><span class="s8">$input</span><span class="s0">, </span><span class="s8">$inline</span><span class="s0">, </span><span class="s7">0</span><span class="s0">, </span><span class="s8">$flags</span><span class="s1">)</span><span class="s0">;</span>
<span class="s1">}</span>
<span class="s1">}</span>
</pre>
</body>
</html> | 81.873016 | 601 | 0.629217 |
127f6fe44da88d6e18f557b987dc0fe90e899474 | 1,708 | h | C | tests/cpp/histogram_helpers.h | bclehmann/xgboost | 345796825f7bbeb0251bca1244e296fda211551b | [
"Apache-2.0"
] | 23,866 | 2015-03-22T05:53:05.000Z | 2022-03-31T23:59:37.000Z | tests/cpp/histogram_helpers.h | bclehmann/xgboost | 345796825f7bbeb0251bca1244e296fda211551b | [
"Apache-2.0"
] | 6,405 | 2015-03-22T09:41:16.000Z | 2022-03-31T23:28:40.000Z | tests/cpp/histogram_helpers.h | bclehmann/xgboost | 345796825f7bbeb0251bca1244e296fda211551b | [
"Apache-2.0"
] | 9,745 | 2015-03-22T05:25:51.000Z | 2022-03-31T09:24:51.000Z | #if defined(__CUDACC__)
#include "../../src/data/ellpack_page.cuh"
#endif
namespace xgboost {
#if defined(__CUDACC__)
namespace {
class HistogramCutsWrapper : public common::HistogramCuts {
public:
using SuperT = common::HistogramCuts;
void SetValues(std::vector<float> cuts) {
SuperT::cut_values_.HostVector() = std::move(cuts);
}
void SetPtrs(std::vector<uint32_t> ptrs) {
SuperT::cut_ptrs_.HostVector() = std::move(ptrs);
}
void SetMins(std::vector<float> mins) {
SuperT::min_vals_.HostVector() = std::move(mins);
}
};
} // anonymous namespace
inline std::unique_ptr<EllpackPageImpl> BuildEllpackPage(
int n_rows, int n_cols, bst_float sparsity= 0) {
auto dmat = RandomDataGenerator(n_rows, n_cols, sparsity).Seed(3).GenerateDMatrix();
const SparsePage& batch = *dmat->GetBatches<xgboost::SparsePage>().begin();
HistogramCutsWrapper cmat;
cmat.SetPtrs({0, 3, 6, 9, 12, 15, 18, 21, 24});
// 24 cut fields, 3 cut fields for each feature (column).
cmat.SetValues({0.30f, 0.67f, 1.64f,
0.32f, 0.77f, 1.95f,
0.29f, 0.70f, 1.80f,
0.32f, 0.75f, 1.85f,
0.18f, 0.59f, 1.69f,
0.25f, 0.74f, 2.00f,
0.26f, 0.74f, 1.98f,
0.26f, 0.71f, 1.83f});
cmat.SetMins({0.1f, 0.2f, 0.3f, 0.1f, 0.2f, 0.3f, 0.2f, 0.2f});
bst_row_t row_stride = 0;
const auto &offset_vec = batch.offset.ConstHostVector();
for (size_t i = 1; i < offset_vec.size(); ++i) {
row_stride = std::max(row_stride, offset_vec[i] - offset_vec[i-1]);
}
auto page = std::unique_ptr<EllpackPageImpl>(
new EllpackPageImpl(0, cmat, batch, dmat->IsDense(), row_stride, {}));
return page;
}
#endif
} // namespace xgboost
| 31.62963 | 86 | 0.645785 |
e7adf3232bed3bb640a01561b8969e5529b899dd | 4,140 | kt | Kotlin | app/src/main/java/com/zoosumzoosum/zoosumx2/ConfirmOthersActivity.kt | tigowler/ZOOSUMX2_Android | 58960b7469b5ed9bac5f5a4816ef439df4856f35 | [
"MIT"
] | 3 | 2021-08-14T23:24:31.000Z | 2021-12-16T01:12:19.000Z | app/src/main/java/com/zoosumzoosum/zoosumx2/ConfirmOthersActivity.kt | tigowler/ZOOSUMX2_Android | 58960b7469b5ed9bac5f5a4816ef439df4856f35 | [
"MIT"
] | null | null | null | app/src/main/java/com/zoosumzoosum/zoosumx2/ConfirmOthersActivity.kt | tigowler/ZOOSUMX2_Android | 58960b7469b5ed9bac5f5a4816ef439df4856f35 | [
"MIT"
] | 2 | 2020-09-26T14:05:47.000Z | 2020-11-27T03:35:50.000Z | package com.zoosumzoosum.zoosumx2
import android.os.Bundle
import android.widget.ImageView
import androidx.appcompat.app.AppCompatActivity
import com.bumptech.glide.Glide
import com.zoosumzoosum.zoosumx2.dialog.ConfirmOthersApproveDialog
import com.zoosumzoosum.zoosumx2.dialog.ConfirmOthersRejectDialog
import com.google.firebase.auth.FirebaseAuth
import com.google.firebase.firestore.FirebaseFirestore
import com.google.firebase.ktx.Firebase
import com.google.firebase.storage.ktx.storage
import kotlinx.android.synthetic.main.activity_confirm_others.*
import kotlinx.android.synthetic.main.activity_confirm_recycle.*
class ConfirmOthersActivity : AppCompatActivity() {
var fbAuth: FirebaseAuth? = null
var fbFirestore: FirebaseFirestore? = null
private var senderUID: String? = null
// 백 버튼 금지
override fun onBackPressed() {
}
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_confirm_others)
fbAuth = FirebaseAuth.getInstance()
fbFirestore = FirebaseFirestore.getInstance()
val storageRef = Firebase.storage.reference
val imageView = findViewById<ImageView>(R.id.photo_here)
//현재 로그인한 사용자의 isReceivedRecycle 필드에 저장되어 있는 보낸 사용자의 uid 가져오기
fbFirestore?.collection("users")?.document(fbAuth?.uid.toString())
?.collection("mission")?.document(fbAuth?.uid.toString())
?.addSnapshotListener{documentSnapshot, firebaseFirestoreException ->
if(documentSnapshot == null) return@addSnapshotListener
senderUID = documentSnapshot.data?.get("isReceivedRecycle").toString()
//보낸 사용자의 uid를 통해 보낸 사용자의 photo값에 있는 사진 이름 가져오기
fbFirestore?.collection("users")?.document(senderUID!!)
?.collection("mission")?.document(senderUID!!)
?.collection("missionDetail")?.document("recycle")
?.addSnapshotListener { documentSnapshot2, firebaseFirestoreException2 ->
//if(documentSnapshot == null) return@addSnapshotListener
val photoTitle: String = documentSnapshot2?.data?.get("photo").toString()
//가져온 사진을 imageView에 출력
val photoRef = storageRef.child("images/${photoTitle}")
photoRef.downloadUrl.addOnSuccessListener { result ->
Glide.with(this).load(result).into(imageView)
}
// .addOnFailureListener { exception ->
// Log.d("pull trash image", "failure", exception)
// }
}
}
fbFirestore?.collection("RecycleSteps")?.whereEqualTo("new", true)
?.addSnapshotListener{documentSnapshot, firebaseFirestoreException ->
if(documentSnapshot == null) return@addSnapshotListener
for (snapshot in documentSnapshot) {
confirm_title.text =
snapshot.getString("missionTitle").toString().replace("bb", "\n")
confirm_others_step1?.text =
snapshot.getString("missionStep1").toString().replace("bb", " ")
.replace("Step1", "")
confirm_others_step2?.text =
snapshot.getString("missionStep2").toString().replace("bb", " ")
.replace("Step1", "")
confirm_others_step3?.text =
snapshot.getString("missionStep3").toString().replace("bb", " ")
.replace("Step1", "")
}
}
confirm_others_approve?.setOnClickListener {
//다이얼로그 호출
val dlg = ConfirmOthersApproveDialog(this, senderUID!!)
dlg.start(this)
}
confirm_others_reject?.setOnClickListener {
//다이얼로그 호출
val dlg = ConfirmOthersRejectDialog(this, senderUID!!)
dlg.start(this)
}
}
} | 43.125 | 97 | 0.605556 |
f54e6d963863d66b659b37f509afe91e79394479 | 205 | ps1 | PowerShell | packages/ollydbg2.ollydumpex.vm/tools/chocolateyuninstall.ps1 | MalwareMechanic/VM-Packages | 829c64aa0b81a3c119f5d60c69f084f09d048afb | [
"Apache-2.0"
] | 12 | 2021-12-16T15:27:00.000Z | 2022-03-18T18:35:35.000Z | packages/ollydbg2.ollydumpex.vm/tools/chocolateyuninstall.ps1 | MalwareMechanic/VM-Packages | 829c64aa0b81a3c119f5d60c69f084f09d048afb | [
"Apache-2.0"
] | 26 | 2021-12-16T15:04:20.000Z | 2022-03-22T12:55:05.000Z | packages/ollydbg2.ollydumpex.vm/tools/chocolateyuninstall.ps1 | MalwareMechanic/VM-Packages | 829c64aa0b81a3c119f5d60c69f084f09d048afb | [
"Apache-2.0"
] | 9 | 2021-12-16T14:59:19.000Z | 2022-03-31T11:27:10.000Z | $ErrorActionPreference = 'Continue'
$toolDir = Join-Path ${Env:RAW_TOOLS_DIR} 'OllyDbg2' -Resolve
$pluginPath = Join-Path $toolDir 'OllyDumpEx_Od20.dll' -Resolve
Remove-Item $pluginPath -Force -ea 0
| 34.166667 | 64 | 0.746341 |
9091c80998f897e5054b9a7b96e0a4b19a600528 | 5,590 | py | Python | pyroapi/dispatch.py | rohankumardubey/pyro-api | 1984c5d9b8590224f8aeb7e09cefac4d815e379c | [
"Apache-2.0"
] | 13 | 2019-10-08T22:36:02.000Z | 2021-07-04T23:27:33.000Z | pyroapi/dispatch.py | rohankumardubey/pyro-api | 1984c5d9b8590224f8aeb7e09cefac4d815e379c | [
"Apache-2.0"
] | 10 | 2019-10-08T21:40:54.000Z | 2022-02-13T21:43:49.000Z | pyroapi/dispatch.py | rohankumardubey/pyro-api | 1984c5d9b8590224f8aeb7e09cefac4d815e379c | [
"Apache-2.0"
] | 4 | 2020-01-09T20:41:24.000Z | 2021-03-04T18:08:00.000Z | # Copyright Contributors to the Pyro project.
# SPDX-License-Identifier: Apache-2.0
"""
Dispatching allows you to dynamically set a backend using :func:`pyro_backend`
and to register new backends using :func:`register_backend` . It's easiest to
see how to use these by example:
.. code-block:: python
from pyroapi import distributions as dist
from pyroapi import infer, ops, optim, pyro, pyro_backend
# These model and guide are backend-agnostic.
def model():
locs = pyro.param("locs", ops.tensor([0.2, 0.3, 0.5]))
p = ops.tensor([0.2, 0.3, 0.5])
with pyro.plate("plate", len(data), dim=-1):
x = pyro.sample("x", dist.Categorical(p))
pyro.sample("obs", dist.Normal(locs[x], 1.), obs=data)
def guide():
p = pyro.param("p", ops.tensor([0.5, 0.3, 0.2]))
with pyro.plate("plate", len(data), dim=-1):
pyro.sample("x", dist.Categorical(p))
# We can now set a backend at inference time.
with pyro_backend("numpyro"):
elbo = infer.Trace_ELBO(ignore_jit_warnings=True)
adam = optim.Adam({"lr": 1e-6})
inference = infer.SVI(model, guide, adam, elbo)
for step in range(10):
loss = inference.step(*args, **kwargs)
print("step {} loss = {}".format(step, loss))
"""
import importlib
from contextlib import contextmanager
DEFAULT_RNG_SEED = 1
_ALIASES = {}
class GenericModule(object):
"""
Wrapper for a module that can be dynamically routed to a custom backend.
"""
current_backend = {}
_modules = {}
def __init__(self, name, default_backend):
assert isinstance(name, str)
assert isinstance(default_backend, str)
self._name = name
GenericModule.current_backend[name] = default_backend
def __getattribute__(self, name):
module_name = super(GenericModule, self).__getattribute__('_name')
backend = GenericModule.current_backend[module_name]
try:
module = GenericModule._modules[backend]
except KeyError:
module = importlib.import_module(backend)
GenericModule._modules[backend] = module
if name.startswith('__'):
return getattr(module, name) # allow magic attributes to return AttributeError
try:
return getattr(module, name)
except AttributeError:
raise NotImplementedError('This Pyro backend does not implement {}.{}'
.format(module_name, name))
@contextmanager
def pyro_backend(*aliases, **new_backends):
"""
Context manager to set a custom backend for Pyro models.
Backends can be specified either by name (for standard backends or backends
registered through :func:`register_backend` ) or by providing kwargs
mapping module name to backend module name. Standard backends include:
pyro, minipyro, funsor, and numpy.
"""
if aliases:
assert len(aliases) == 1
assert not new_backends
new_backends = _ALIASES[aliases[0]]
old_backends = {}
for name, new_backend in new_backends.items():
old_backends[name] = GenericModule.current_backend[name]
GenericModule.current_backend[name] = new_backend
try:
with handlers.seed(rng_seed=DEFAULT_RNG_SEED):
yield
finally:
for name, old_backend in old_backends.items():
GenericModule.current_backend[name] = old_backend
def register_backend(alias, new_backends):
"""
Register a new backend alias. For example::
register_backend("minipyro", {
"infer": "pyro.contrib.minipyro",
"optim": "pyro.contrib.minipyro",
"pyro": "pyro.contrib.minipyro",
})
:param str alias: The name of the new backend.
:param dict new_backends: A dict mapping standard module name (str) to new
module name (str). This needs to include only nonstandard backends
(e.g. if your backend uses torch ops, you need not override ``ops``)
"""
assert isinstance(new_backends, dict)
assert all(isinstance(key, str) for key in new_backends.keys())
assert all(isinstance(value, str) for value in new_backends.values())
_ALIASES[alias] = new_backends.copy()
# These modules can be overridden.
pyro = GenericModule('pyro', 'pyro')
distributions = GenericModule('distributions', 'pyro.distributions')
handlers = GenericModule('handlers', 'pyro.poutine')
infer = GenericModule('infer', 'pyro.infer')
optim = GenericModule('optim', 'pyro.optim')
ops = GenericModule('ops', 'torch')
# These are standard backends.
register_backend('pyro', {
'distributions': 'pyro.distributions',
'handlers': 'pyro.poutine',
'infer': 'pyro.infer',
'ops': 'torch',
'optim': 'pyro.optim',
'pyro': 'pyro',
})
register_backend('minipyro', {
'distributions': 'pyro.distributions',
'handlers': 'pyro.poutine',
'infer': 'pyro.contrib.minipyro',
'ops': 'torch',
'optim': 'pyro.contrib.minipyro',
'pyro': 'pyro.contrib.minipyro',
})
register_backend('funsor', {
'distributions': 'funsor.torch.distributions',
'handlers': 'funsor.minipyro',
'infer': 'funsor.minipyro',
'ops': 'funsor.compat.ops',
'optim': 'funsor.minipyro',
'pyro': 'funsor.minipyro',
})
register_backend('numpy', {
'distributions': 'numpyro.compat.distributions',
'handlers': 'numpyro.compat.handlers',
'infer': 'numpyro.compat.infer',
'ops': 'numpyro.compat.ops',
'optim': 'numpyro.compat.optim',
'pyro': 'numpyro.compat.pyro',
})
| 34.085366 | 91 | 0.648122 |
74450c110384dead3e791527460eb85e7d51f82c | 4,462 | html | HTML | pa1-skeleton/pa1-data/6/vaden.stanford.edu_caps_SubtanceAbuseReferrals.html | yzhong94/cs276-spring-2019 | a4780a9f88b8c535146040fe11bb513c91c5693b | [
"MIT"
] | null | null | null | pa1-skeleton/pa1-data/6/vaden.stanford.edu_caps_SubtanceAbuseReferrals.html | yzhong94/cs276-spring-2019 | a4780a9f88b8c535146040fe11bb513c91c5693b | [
"MIT"
] | null | null | null | pa1-skeleton/pa1-data/6/vaden.stanford.edu_caps_SubtanceAbuseReferrals.html | yzhong94/cs276-spring-2019 | a4780a9f88b8c535146040fe11bb513c91c5693b | [
"MIT"
] | null | null | null | subtance abuse referrals stanford home search vaden skip to content home emergencies and urgent situations helping a distressed student who may use vaden new students entrance requirements insurance decisions our services medical care physical therapy counseling and psychological services caps wellness and health promotion services hps pharmacy travel clinic online services insurance health insurance overview faqs for new students cardinal care student health plan using your own health insurance health insurance for your dependents dental and vision care coverage fees campus health service fee fee schedules about vaden contact us hours & location vaden staff accreditation privacy rights substance abuse referrals criteria for caps caps provides substance abuse assessments brief individual and group therapies and referrals for all students who are concerned about their substance use our goal is to provide a collaborative and non judgmental environment for those who are interested to openly explore their alcohol and or other drug use using the principles of motivational interviewing caps therapists emphasize partnerships that respect the expertise values perspectives and intrinsic motivation of all our clients services are designed to meet individualized needs however caps does not provide court mandated therapy as with all mental health services caps substance abuse services are strictly confidential students who are concerned about whether or not they have a substance abuse problem may use an acronym called cage to ask themselves the following questions have you ever tried to cut down on your substance use do you get angry when people suggest you might have a problem with substances do you ever feel guilty after a night of drinking or using do you ever drink to cure a hangover eye opener if you answer yes to one or more of these questions you might have a problem the following is a list of signs and symptoms that might indicate the presence of a substance abuse or other mental health problem change in physical appearance personality attitude or behavior changes in appetite unexplained weight loss or gain poor physical coordination slowed or staggering walk red watery eyes blank stare cold or sweaty palms trembling hands puffy face blushing or paleness smell of substance on breath body or clothes extreme hyperactivity excessive talkativeness runny nose hacking cough needle marks on lower arms or legs nausea vomiting or excessive sweating tremors or shaking of hands feet or head irregular heartbeat change in overall personality with no identifiable cause sudden avoidance of old friends new friends are known substance users drop in grades missing classes loss of interest in friends and family difficulty paying attention forgetfulness lack of motivation energy and self esteem sudden oversensitivity or temper tantrums moodiness irritability or nervousness giddiness paranoia excessive need for privacy unreachable secretive or suspicious behavior accidents car or bike falling chronic dishonesty unexplained need for money stealing change in personal grooming habits possession of drug paraphernalia some students who have concerns about their drinking may have attended educational sessions conducted by the substance abuse prevention program in health promotion services these meetings are not mandatory for caps assessments if you have not attended the educational sessions we highly recommend that students contact the substance abuse prevention program to learn more about problem drinking on college campuses they can be reached by contacting health promotion services at 723 0821 all students interested in receiving a substance abuse evaluation at caps should complete an on line self assessment questionnaire called the e chug at http interwork sdsu edu echug2 stanford the e chug is strictly confidential and after completing it students should print the results to bring to their first appointment at caps interested students should contact caps at 650 723 3785 for further information appointments contact us 24 hour access 650 723 3785 appointments caps hours caps confidentiality caps staff related resources apa accredited internship in professional psychology postdoctoral psychology fellowship vaden virtual health library depression eating problems grief more articles division of vice provost for student affairs copyright board of trustees of leland stanford junior university site by wired moon
| 2,231 | 4,461 | 0.849843 |
17ee4d1afe4813bb4bc8ef31b1242beb20485eaa | 1,478 | cs | C# | src/AloysAdjustments.Common/Utility/Async.cs | AkiniKites/AloysAdjustments | 976a0ceca154c5e683536ae3c978c076d40b84ab | [
"MIT"
] | 43 | 2021-01-25T15:51:50.000Z | 2022-03-28T06:02:01.000Z | src/AloysAdjustments.Common/Utility/Async.cs | AkiniKites/AloysAdjustments | 976a0ceca154c5e683536ae3c978c076d40b84ab | [
"MIT"
] | 36 | 2021-01-23T15:24:55.000Z | 2022-02-16T10:00:47.000Z | src/AloysAdjustments.Common/Utility/Async.cs | AkiniKites/AloysAdjustments | 976a0ceca154c5e683536ae3c978c076d40b84ab | [
"MIT"
] | 9 | 2021-02-20T05:12:29.000Z | 2022-02-26T23:53:55.000Z | using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace AloysAdjustments.Utility
{
public static class Async
{
public static async Task Run(Action action, CancellationToken cancellationToken = default)
{
try
{
await Task.Run(action, cancellationToken);
}
catch(Exception ex)
{
throw new AsyncException(ex);
}
}
public static async Task<T> Run<T>(Func<T> action, CancellationToken cancellationToken = default)
{
try
{
return await Task.Run(action, cancellationToken);
}
catch (Exception ex)
{
throw new AsyncException(ex);
}
}
public static async void Forget(this Task action)
{
try
{
await action;
}
catch (Exception ex)
{
throw new AsyncException(ex);
}
}
public static void RunSync(this Func<Task> task)
{
Task.Factory.StartNew(task).Unwrap().GetAwaiter().GetResult();
}
public static TResult RunSync<TResult>(this Func<Task<TResult>> task)
{
return Task.Factory.StartNew(task).Unwrap().GetAwaiter().GetResult();
}
}
}
| 25.482759 | 105 | 0.516238 |
9c4e247d8dab1ea097ebb287e37b84bcd12db820 | 6,904 | js | JavaScript | client/src/components/pages/qtls-gwas/qtls-gwas-results/locus-quantification.js | CBIIT/nci-webtools-dceg-vQTL | 1085e3abe44f0b9ccaa8fe55ea452a75318b7322 | [
"MIT"
] | 3 | 2018-08-23T14:50:11.000Z | 2020-09-15T16:15:52.000Z | client/src/components/pages/qtls-gwas/qtls-gwas-results/locus-quantification.js | CBIIT/nci-webtools-dceg-vQTL | 1085e3abe44f0b9ccaa8fe55ea452a75318b7322 | [
"MIT"
] | 2 | 2021-08-17T16:04:03.000Z | 2021-09-01T00:47:54.000Z | client/src/components/pages/qtls-gwas/qtls-gwas-results/locus-quantification.js | CBIIT/nci-webtools-dceg-vQTL | 1085e3abe44f0b9ccaa8fe55ea452a75318b7322 | [
"MIT"
] | 1 | 2021-06-01T01:56:27.000Z | 2021-06-01T01:56:27.000Z | import React, { useState, useEffect } from 'react';
import { useDispatch, useSelector } from 'react-redux';
import { LoadingOverlay } from '../../../controls/loading-overlay/loading-overlay';
import { Form, Button } from 'react-bootstrap';
import ReactSelect, { createFilter } from 'react-select';
import Zoom from '../../../controls/zoom/zoom';
import {
updateQTLsGWAS,
qtlsGWASCalculateQuantification,
} from '../../../../services/actions';
export function LocusQuantifiation() {
const {
quantificationFile,
genotypeFile,
traitID,
genotypeID,
log2,
submitted,
request,
isLoadingQuantification,
} = useSelector((state) => state.qtlsGWAS);
const [_log2, setLog2] = useState({ value: false, label: 'False' });
useEffect(() => {
if (log2) setLog2({ value: true, label: 'True' });
else setLog2({ value: false, label: 'False' });
}, []);
const dispatch = useDispatch();
async function handleRecalculate() {
dispatch(updateQTLsGWAS({ log2: _log2.value }));
dispatch(
qtlsGWASCalculateQuantification({
request: request,
exprFile: quantificationFile,
genoFile: genotypeFile,
traitID: traitID,
genotypeID: genotypeID,
log2: _log2.value,
})
);
}
return (
<div className="px-3 py-2" style={{ minHeight: '500px' }}>
{request && genotypeFile && quantificationFile && (
<div>
<Zoom
plotURL={`api/results/${request}/quantification_cor.svg`}
plotId="1"
className="border rounded p-3 mb-2"
maxHeight="800px"
descAbove={
<p>
The following asymmetric heatmap shows the pairwise correlation
among all the traits based on the quantification values. Both
Pearson and Spearman correlation coefficients were calculated as
upper and lower triangles in the heatmap, respectively.
</p>
}
/>
<br />
<Zoom
plotURL={`api/results/${request}/quantification_dis.svg`}
plotId="2"
className="border rounded p-3 mb-2"
maxHeight="800px"
descAbove={
<p>
The ridgeline density plot below indicates the distribution of
quantification for all of the traits and is sorted by the median
quantification value.
</p>
}
/>
<br />
<p>
A typical QTL boxplot is shown below with statistical tests in the
subtitles. This plot is created by the ggbetweenstats function from
ggstatsplot package. Check the original ggstatsplot for the details
of the statistical tests. You could use the residuals as the
quantification value after regressing on the covariables if your
original QTL study has any covariables.
</p>
<p>
Choose trait ID (e.g. ENSG00000183486.8) and Genotype ID (e.g.
21:42743496:C:T) for boxplot of the specific QTL association.
</p>
<Form className="row justify-content-between">
<>
<div className="col-md-9">
<Form.Group className="row">
<Form.Group className="col-md-4">
<Form.Label
id="quantification-trait"
className="mb-0 mr-auto"
>
Trait ID
</Form.Label>
<Form.Control
type="text"
aria-labelledby="quantification-trait"
id="qtls-quantification-trait"
placeholder="None"
disabled={!submitted}
value={traitID}
onChange={(e) => {
dispatch(updateQTLsGWAS({ traitID: e.target.value }));
}}
/>
</Form.Group>
<Form.Group className="col-md-4">
<Form.Label
id="quantification-genotype"
className="mb-0 mr-auto"
>
Genotype ID
</Form.Label>
<Form.Control
type="text"
aria-labelledby="quantification-genotype"
id="qtls-quantification-genotype"
placeholder="None"
disabled={!submitted}
value={genotypeID}
onChange={(e) => {
dispatch(
updateQTLsGWAS({ genotypeID: e.target.value })
);
}}
/>
</Form.Group>
<div className="col-md-4">
<Form.Label id="quantification-log" className="mb-0">
log<sub>2</sub>
</Form.Label>
<ReactSelect
isDisabled={!submitted}
aria-labelledby="quantification-log"
inputId="qtls-results-quantification-log2"
value={_log2}
onChange={(option) => {
setLog2(option);
}}
options={[
{ value: true, label: 'True' },
{ value: false, label: 'False' },
]}
styles={{
menuPortal: (base) => ({ ...base, zIndex: 9999 }),
}}
menuPortalTarget={document.body}
filterOption={createFilter({ ignoreAccents: false })}
/>
</div>
</Form.Group>
</div>
<div className="col-md-auto mt-4">
<Button
disabled={!submitted || isLoadingQuantification}
className="d-block"
variant="primary"
type="button"
onClick={() => handleRecalculate()}
>
Recalculate
</Button>
</div>
</>
</Form>
<div style={{ minHeight: '800px' }} className="border rounded">
<LoadingOverlay active={isLoadingQuantification} />
{!isLoadingQuantification && (
<Zoom
plotURL={`api/results/${request}/quantification_qtl.svg`}
plotId="3"
className="p-3 mb-2"
maxHeight="800px"
/>
)}
</div>
</div>
)}
</div>
);
}
| 35.772021 | 83 | 0.468859 |
68a0aabb0d3e19d533249495cafc195772d13a5c | 1,569 | asm | Assembly | docs/asm/tst-noinit.asm | lugovskovp/TrafficLight13 | 0e76ec82a16038ea1775f1b477437f05f5416bf0 | [
"MIT"
] | 10 | 2019-03-06T18:39:02.000Z | 2021-10-07T23:52:52.000Z | TrafficLight13/Release/_old/tst-noinit.asm | lugovskovp/TrafficLight13 | 0e76ec82a16038ea1775f1b477437f05f5416bf0 | [
"MIT"
] | 1 | 2019-03-05T18:18:09.000Z | 2019-03-10T16:36:40.000Z | docs/asm/tst-noinit.asm | lugovskovp/TrafficLight13 | 0e76ec82a16038ea1775f1b477437f05f5416bf0 | [
"MIT"
] | 2 | 2020-08-09T20:44:46.000Z | 2020-09-23T03:28:04.000Z |
./Release/tst-noinit.elf: file format elf32-avr
Disassembly of section .text:
00000000 <__vectors>:
0: 09 c0 rjmp .+18 ; 0x14 <__ctors_end>
2: 0e c0 rjmp .+28 ; 0x20 <__bad_interrupt>
4: 0d c0 rjmp .+26 ; 0x20 <__bad_interrupt>
6: 0c c0 rjmp .+24 ; 0x20 <__bad_interrupt>
8: 0b c0 rjmp .+22 ; 0x20 <__bad_interrupt>
a: 0a c0 rjmp .+20 ; 0x20 <__bad_interrupt>
c: 09 c0 rjmp .+18 ; 0x20 <__bad_interrupt>
e: 08 c0 rjmp .+16 ; 0x20 <__bad_interrupt>
10: 07 c0 rjmp .+14 ; 0x20 <__bad_interrupt>
12: 06 c0 rjmp .+12 ; 0x20 <__bad_interrupt>
00000014 <__ctors_end>:
14: 11 24 eor r1, r1
16: 1f be out 0x3f, r1 ; 63
18: cf e9 ldi r28, 0x9F ; 159
1a: cd bf out 0x3d, r28 ; 61
1c: 02 d0 rcall .+4 ; 0x22 <main>
1e: 0d c0 rjmp .+26 ; 0x3a <_exit>
00000020 <__bad_interrupt>:
20: ef cf rjmp .-34 ; 0x0 <__vectors>
00000022 <main>:
22: cf 93 push r28
24: df 93 push r29
26: cd b7 in r28, 0x3d ; 61
28: dd 27 eor r29, r29
2a: 10 92 60 00 sts 0x0060, r1 ; 0x800060 <_edata>
2e: 80 91 60 00 lds r24, 0x0060 ; 0x800060 <_edata>
32: 8f 5f subi r24, 0xFF ; 255
34: 80 93 60 00 sts 0x0060, r24 ; 0x800060 <_edata>
38: fa cf rjmp .-12 ; 0x2e <main+0xc>
0000003a <_exit>:
3a: f8 94 cli
0000003c <__stop_program>:
3c: ff cf rjmp .-2 ; 0x3c <__stop_program>
| 34.108696 | 58 | 0.537285 |
3352b76a746ef15cc852051b173cbfc3263a69f1 | 1,975 | swift | Swift | Sources/Services/SHA256.swift | v-x2/dgca-app-core-ios | 4433ff8afcfcc33ab5e1289fd52182069bcf9ed2 | [
"Apache-2.0"
] | null | null | null | Sources/Services/SHA256.swift | v-x2/dgca-app-core-ios | 4433ff8afcfcc33ab5e1289fd52182069bcf9ed2 | [
"Apache-2.0"
] | null | null | null | Sources/Services/SHA256.swift | v-x2/dgca-app-core-ios | 4433ff8afcfcc33ab5e1289fd52182069bcf9ed2 | [
"Apache-2.0"
] | 1 | 2021-09-16T13:48:34.000Z | 2021-09-16T13:48:34.000Z | //
/*-
* ---license-start
* eu-digital-green-certificates / dgca-app-core-ios
* ---
* Copyright (C) 2021 T-Systems International GmbH and all other contributors
* ---
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ---license-end
*/
//
// SHA256.swift
//
//
// Created by Yannick Spreen on 4/22/21.
//
// https://stackoverflow.com/a/38788437/2585092
//
import Foundation
import CommonCrypto
public struct SHA256 {
public static func digest(input: NSData) -> Data {
if #available(iOS 13.0, *) {
return iOS13Digest(input: input)
}
return iOS12Digest(input: input)
}
public static func iOS12Digest(input: NSData) -> Data {
let input = input as Data
var digest = [UInt8](repeating: 0, count: Int(CC_SHA256_DIGEST_LENGTH))
_ = input.withUnsafeBytes { bytes in
CC_SHA256(bytes.baseAddress, CC_LONG(input.count), &digest)
}
return Data(digest)
}
public static func iOS13Digest(input: NSData) -> Data {
let digestLength = Int(CC_SHA256_DIGEST_LENGTH)
var hash = [UInt8](repeating: 0, count: digestLength)
CC_SHA256(input.bytes, UInt32(input.length), &hash)
return Data(NSData(bytes: hash, length: digestLength))
}
public static func stringDigest(input: Data) -> String {
return digest(input: input as NSData).base64EncodedString()
}
private func hexString(_ iterator: Array<UInt8>.Iterator) -> String {
return iterator.map { String(format: "%02x", $0) }.joined()
}
}
| 29.477612 | 77 | 0.695696 |
afb336ded9507dd438c0e9a3267ff748a4486801 | 89,868 | html | HTML | data/refugees_migration/kritisches_netzwerk/html/59.html | andreeaiana/renewrs_corpus_extraction | b077f94ea80eb2c3aa25477f2ef48f2d6e8825e7 | [
"MIT"
] | 2 | 2020-11-19T19:14:57.000Z | 2020-11-24T23:33:08.000Z | data/refugees_migration/kritisches_netzwerk/html/59.html | andreeaiana/renewrs_corpus_extraction | b077f94ea80eb2c3aa25477f2ef48f2d6e8825e7 | [
"MIT"
] | null | null | null | data/refugees_migration/kritisches_netzwerk/html/59.html | andreeaiana/renewrs_corpus_extraction | b077f94ea80eb2c3aa25477f2ef48f2d6e8825e7 | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<html lang="de" dir="ltr" prefix="og: http://ogp.me/ns# content: http://purl.org/rss/1.0/modules/content/ dc: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ rdfs: http://www.w3.org/2000/01/rdf-schema# sioc: http://rdfs.org/sioc/ns# sioct: http://rdfs.org/sioc/types# skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema#">
<head>
<link rel="profile" href="http://www.w3.org/1999/xhtml/vocab" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="alternate" type="application/rss+xml" title="Comments for "Götz Kubitschek und das Institut für Staatspolitik"" href="https://kritisches-netzwerk.de/crss/node/8125" />
<link rel="shortcut icon" href="https://kritisches-netzwerk.de/sites/default/files/favicon.ico" type="image/vnd.microsoft.icon" />
<meta name="description" content="Götz Kubitschek und das Institut für Staatspolitik Der Flügel und das rechte Netzwerk der AfD – Teil 1" />
<link rel="canonical" href="https://kritisches-netzwerk.de/forum/goetz-kubitschek-und-das-institut-fuer-staatspolitik" />
<link rel="shortlink" href="https://kritisches-netzwerk.de/node/8125" />
<meta property="og:site_name" content="KRITISCHES NETZWERK" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://kritisches-netzwerk.de/forum/goetz-kubitschek-und-das-institut-fuer-staatspolitik" />
<meta property="og:title" content="Götz Kubitschek und das Institut für Staatspolitik" />
<meta property="og:description" content="Götz Kubitschek und das Institut für Staatspolitik Der Flügel und das rechte Netzwerk der AfD – Teil 1" />
<meta property="og:updated_time" content="2019-12-04T13:28:04+01:00" />
<meta property="og:image" content="https://kritisches-netzwerk.de/sites/default/files/u17/afd-bjoern-hoecke-fluegel-thueringen-rechtskonservatismus-kritisches-netzwerk-rechtsradikalismus-volksverhetzung-voelkische-ideologie-patriotismus-ethnopluralismus-deutschtum.jpg" />
<meta property="article:published_time" content="2019-08-12T11:13:38+02:00" />
<meta property="article:modified_time" content="2019-12-04T13:28:04+01:00" />
<meta name="dcterms.title" content="Götz Kubitschek und das Institut für Staatspolitik" />
<meta name="dcterms.creator" content="Christian Jakob" />
<meta name="dcterms.description" content="Götz Kubitschek und das Institut für Staatspolitik Der Flügel und das rechte Netzwerk der AfD – Teil 1" />
<meta name="dcterms.date" content="2019-08-12T11:13+02:00" />
<meta name="dcterms.type" content="Text" />
<meta name="dcterms.format" content="text/html" />
<meta name="dcterms.identifier" content="https://kritisches-netzwerk.de/forum/goetz-kubitschek-und-das-institut-fuer-staatspolitik" />
<meta name="dcterms.language" content="de" />
<title>Götz Kubitschek und das Institut für Staatspolitik | KRITISCHES NETZWERK</title>
<link type="text/css" rel="stylesheet" href="https://kritisches-netzwerk.de/sites/default/files/css/css_lQaZfjVpwP_oGNqdtWCSpJT1EMqXdMiU84ekLLxQnc4.css" media="all" />
<link type="text/css" rel="stylesheet" href="https://kritisches-netzwerk.de/sites/default/files/css/css_FhcYz9XOcdc2nzCtx6djPjINb50M_Zrzx2wd7514nTo.css" media="all" />
<link type="text/css" rel="stylesheet" href="https://kritisches-netzwerk.de/sites/default/files/css/css_R0FB7biGmaiYxJ3ppuDF_mljap7fHItYzAfxrZnKO28.css" media="all" />
<link type="text/css" rel="stylesheet" href="https://kritisches-netzwerk.de/sites/default/files/css/css_06uSS1mYzj5KhiFHVfoSMorMQBdW5HsieE4y-W1SA-Q.css" media="all" />
<link type="text/css" rel="stylesheet" href="https://kritisches-netzwerk.de/sites/default/files/css/css_gRJL3AORRON98LG7IYCzzeW8ggNlhbYI4x0Y7vOO_Ug.css" media="print" />
<!-- HTML5 element support for IE6-8 -->
<!--[if lt IE 9]>
<script src="https://cdn.jsdelivr.net/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
<script src="https://kritisches-netzwerk.de/sites/default/files/js/js_bHixdNqIm_fGV7c3IlqVJl-OQXz4T0rdcigI0kCjuGg.js"></script>
<script src="https://kritisches-netzwerk.de/sites/default/files/js/js_MvjQvajne3mYUENn5-7hxKk4gW-Y_BMqu00iL1O2aWg.js"></script>
<script>var _paq = _paq || [];(function(){var u=(("https:" == document.location.protocol) ? "https://kritisches-netzwerk.de/piwik/" : "http://kritisches-netzwerk.de/piwik/");_paq.push(["setSiteId", "1"]);_paq.push(["setTrackerUrl", u+"piwik.php"]);_paq.push(["setDoNotTrack", 1]);_paq.push(["disableCookies"]);_paq.push(["trackPageView"]);_paq.push(["setIgnoreClasses", ["no-tracking","colorbox"]]);_paq.push(["enableLinkTracking"]);var d=document,g=d.createElement("script"),s=d.getElementsByTagName("script")[0];g.type="text/javascript";g.defer=true;g.async=true;g.src=u+"piwik.js";s.parentNode.insertBefore(g,s);})();</script>
<script src="https://kritisches-netzwerk.de/sites/default/files/js/js_GEE3Xc1apd_iTF6o33hcGBwlDqoxby5G72sl7vtUJ8k.js"></script>
<script src="https://kritisches-netzwerk.de/sites/default/files/js/js_DzqesLsGDWZQm-7B5wHcxXyK7cp7ovpzDt9-bVKaecA.js"></script>
<script>jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","ajaxPageState":{"theme":"kritischesnetzwerk","theme_token":"_KlfSUybs4yiJMTvZAcWOmAJKrKc5wtqkFQKxmwm-NU","js":{"sites\/all\/libraries\/shariff\/build\/shariff.min.js":1,"sites\/all\/themes\/bootstrap\/js\/bootstrap.js":1,"sites\/all\/modules\/jquery_update\/replace\/jquery\/1.10\/jquery.min.js":1,"misc\/jquery-extend-3.4.0.js":1,"misc\/jquery-html-prefilter-3.5.0-backport.js":1,"misc\/jquery.once.js":1,"misc\/drupal.js":1,"public:\/\/languages\/de_9KL7cY1DZr5-2aXfL_FiocBw6BysTqt5kr1oRDe6Y9I.js":1,"sites\/all\/modules\/quote\/quote.js":1,"sites\/all\/modules\/matomo\/matomo.js":1,"0":1,"misc\/tableheader.js":1,"sites\/all\/modules\/extlink\/js\/extlink.js":1,"sites\/all\/themes\/kritischesnetzwerk\/bootstrap\/js\/affix.js":1,"sites\/all\/themes\/kritischesnetzwerk\/bootstrap\/js\/alert.js":1,"sites\/all\/themes\/kritischesnetzwerk\/bootstrap\/js\/button.js":1,"sites\/all\/themes\/kritischesnetzwerk\/bootstrap\/js\/carousel.js":1,"sites\/all\/themes\/kritischesnetzwerk\/bootstrap\/js\/collapse.js":1,"sites\/all\/themes\/kritischesnetzwerk\/bootstrap\/js\/dropdown.js":1,"sites\/all\/themes\/kritischesnetzwerk\/bootstrap\/js\/modal.js":1,"sites\/all\/themes\/kritischesnetzwerk\/bootstrap\/js\/tooltip.js":1,"sites\/all\/themes\/kritischesnetzwerk\/bootstrap\/js\/popover.js":1,"sites\/all\/themes\/kritischesnetzwerk\/bootstrap\/js\/scrollspy.js":1,"sites\/all\/themes\/kritischesnetzwerk\/bootstrap\/js\/tab.js":1,"sites\/all\/themes\/kritischesnetzwerk\/bootstrap\/js\/transition.js":1},"css":{"modules\/system\/system.base.css":1,"modules\/field\/theme\/field.css":1,"modules\/node\/node.css":1,"sites\/all\/modules\/extlink\/css\/extlink.css":1,"sites\/all\/modules\/views\/css\/views.css":1,"sites\/all\/modules\/ckeditor\/css\/ckeditor.css":1,"sites\/all\/modules\/ctools\/css\/ctools.css":1,"sites\/all\/modules\/quote\/quote.css":1,"sites\/all\/modules\/advanced_forum\/styles\/naked\/advanced-forum.naked.structure.css":1,"sites\/all\/modules\/advanced_forum\/styles\/naked_stacked\/advanced-forum.naked_stacked.structure.css":1,"sites\/all\/modules\/advanced_forum\/styles\/silver_bells\/advanced-forum.silver_bells.style.css":1,"sites\/all\/modules\/advanced_forum\/styles\/naked\/advanced-forum.naked.images.css":1,"sites\/all\/modules\/advanced_forum\/styles\/silver_bells\/advanced-forum.silver_bells.images.css":1,"sites\/all\/modules\/print\/print_ui\/css\/print_ui.theme.css":1,"sites\/all\/libraries\/shariff\/build\/shariff.complete.css":1,"sites\/all\/themes\/kritischesnetzwerk\/css\/style.css":1,"sites\/all\/themes\/kritischesnetzwerk\/css\/print.css":1}},"quote_nest":"2","matomo":{"trackMailto":1},"urlIsAjaxTrusted":{"\/forum\/goetz-kubitschek-und-das-institut-fuer-staatspolitik":true},"extlink":{"extTarget":"_blank","extClass":"ext","extLabel":"(Link ist extern)","extImgClass":0,"extIconPlacement":"append","extSubdomains":1,"extExclude":"","extInclude":"","extCssExclude":"","extCssExplicit":"","extAlert":0,"extAlertText":"This link will take you to an external web site. We are not responsible for their content.","mailtoClass":"mailto","mailtoLabel":"(Link sendet E-Mail)","extUseFontAwesome":false},"bootstrap":{"anchorsFix":"0","anchorsSmoothScrolling":"0","formHasError":1,"popoverEnabled":1,"popoverOptions":{"animation":1,"html":0,"placement":"right","selector":"","trigger":"click","triggerAutoclose":1,"title":"","content":"","delay":0,"container":"body"},"tooltipEnabled":1,"tooltipOptions":{"animation":1,"html":0,"placement":"auto left","selector":"","trigger":"hover focus","delay":0,"container":"body"}}});</script>
</head>
<body class="html not-front not-logged-in no-sidebars page-node page-node- page-node-8125 node-type-forum">
<div id="skip-link">
<a href="#main-content" class="element-invisible element-focusable">Direkt zum Inhalt</a>
</div>
<div class="header-wrapper">
<header id="navbar" role="banner" class="navbar container navbar-default">
<div class="container">
<div class="navbar-header">
<a class="logo navbar-btn" href="/" title="Startseite">
<img src="https://kritisches-netzwerk.de/sites/all/themes/kritischesnetzwerk/logo.png" alt="Startseite" />
<span class="lead">Subversiv gegen Ausbeutung, Desinformation, Neoliberalismus, Sozialdarwinismus, Faschos, Imperialismus, NATO, Überwachungsstaat </span>
</a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="header-right">
<div class="region region-header-right">
<section id="block-search-form" class="block block-search clearfix">
<form class="form-search content-search" action="/forum/goetz-kubitschek-und-das-institut-fuer-staatspolitik" method="post" id="search-block-form" accept-charset="UTF-8"><div><div>
<h2 class="element-invisible">Suchformular</h2>
<div class="input-group"><input title="Die Begriffe eingeben, nach denen gesucht werden soll." placeholder="Suche" class="input-sm form-control form-text" type="text" id="edit-search-block-form--2" name="search_block_form" value="" size="15" maxlength="128" /><span class="input-group-btn"><button type="submit" class="btn btn-sm btn-default"><span class="icon glyphicon glyphicon-search" aria-hidden="true"></span>
</button></span></div><div class="form-actions form-wrapper form-group" id="edit-actions"><button class="element-invisible btn btn-sm btn-default form-submit" type="submit" id="edit-submit" name="op" value="Suche">Suche</button>
</div><input type="hidden" name="form_build_id" value="form-yOgErnMS_Lh-SHSup0UCXdBId4UFAQAbUKHyNLIfhWU" />
<input type="hidden" name="form_id" value="search_block_form" />
</div>
</div></form>
</section>
</div>
<a class="rss-icon" title="Zum Newsfeed von Kritisches Netzwerk" href="/rss.xml">
<svg version="1.1" id="rss" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 455.731 455.731" style="enable-background:new 0 0 455.731 455.731;" xml:space="preserve">
<g>
<rect x="0" y="0" style="fill:#F78422;" width="455.731" height="455.731"/>
<g>
<path style="fill:#FFFFFF;" d="M296.208,159.16C234.445,97.397,152.266,63.382,64.81,63.382v64.348
c70.268,0,136.288,27.321,185.898,76.931c49.609,49.61,76.931,115.63,76.931,185.898h64.348
C391.986,303.103,357.971,220.923,296.208,159.16z"/>
<path style="fill:#FFFFFF;" d="M64.143,172.273v64.348c84.881,0,153.938,69.056,153.938,153.939h64.348
C282.429,270.196,184.507,172.273,64.143,172.273z"/>
<circle style="fill:#FFFFFF;" cx="109.833" cy="346.26" r="46.088"/>
</g>
</g>
</svg>
</a>
</div>
<div class="navbar-collapse collapse" id="navbar-collapse">
<nav role="navigation">
<ul class="menu nav navbar-nav"><li class="first leaf"><a href="/" title="Startseite">START</a></li>
<li class="leaf"><a href="/forum" title="">Themenübersicht</a></li>
<li class="leaf"><a href="/content/kritisches-netzwerk-ueber-uns" title="Über uns">Wir über uns</a></li>
<li class="leaf"><a href="/content/nutzungsbedingungen" title="Nutzungsbedingungen">Nutzungsbedingungen</a></li>
<li class="leaf"><a href="/content/datenschutzerklaerung" title="Datenschutzerklärung">Datenschutzerklärung</a></li>
<li class="leaf"><a href="/user" title="">Anmeldung</a></li>
<li class="last leaf"><a href="/content/impressum" title="Impressum">Impressum</a></li>
</ul> </nav>
</div>
</div>
</header>
</div>
<div class="main-wrapper container">
<div class="main-container container">
<header role="banner" id="page-header">
<div class="region region-header">
<section id="block-block-8" class="block block-block clearfix">
<p>«Glaubst du nicht, daß du dadurch, daß du dich diesem System verweigerst, letztlich auch das System veränderst, indem du es untergräbst?"»(–Hans A. Pestalozzi).</p>
</section>
</div>
</header> <!-- /#page-header -->
<div class="row">
<section class="col-sm-12">
<ol class="breadcrumb"><li><a href="/">Startseite</a></li>
<li><a href="/forum">Forum</a></li>
<li><a href="/forum/1-aktuelle-themen-und-schlagzeilen-veranstaltungstipps-mediathek">1. Aktuelle Themen und Schlagzeilen + Veranstaltungstipps + Mediathek</a></li>
<li><a href="/forum/deutschland">Deutschland</a></li>
</ol> <a id="main-content"></a>
<h1 class="page-header">Götz Kubitschek und das Institut für Staatspolitik</h1>
<div class="region region-content">
<section id="block-system-main" class="block block-system clearfix">
<div id="forum-topic-header" class="forum-topic-header clearfix">
<div class="topic-post-count">
2 Beiträge / 0 neu </div>
<div class="topic-reply-link">
Zum Verfassen von Kommentaren bitte <a href="/user/login?destination=comment/reply/8125%23comment-form">Anmelden</a> oder <a href="/user/register?destination=comment/reply/8125%23comment-form">Registrieren</a>. </div>
<div class="last-post-link">
<a href="/forum/goetz-kubitschek-und-das-institut-fuer-staatspolitik#comment-2223" class="af-button-large active"><span>Letzter Beitrag</span></a> </div>
<a id="forum-topic-top"></a>
</div>
<div id="post-8125" class="forum-post clearfix de posted-by-1884" about="/forum/goetz-kubitschek-und-das-institut-fuer-staatspolitik" typeof="sioc:Post sioct:BoardPost">
<div class="forum-post-info clearfix">
<div class="forum-posted-on">
<span property="dc:date dc:created" content="2019-08-12T11:13:38+02:00" datatype="xsd:dateTime">12. August 2019 - 11:13</span>
</div>
<span class="forum-post-number"><a href="/forum/goetz-kubitschek-und-das-institut-fuer-staatspolitik" class="active">#1</a></span>
</div>
<div class="forum-post-wrapper">
<div class="forum-post-panel-sub">
<div class="author-pane clearfix">
<div class="author-pane-inner">
<div class="picture">
<img typeof="foaf:Image" class="img-responsive" src="https://kritisches-netzwerk.de/sites/default/files/pictures/picture-1884-1487537348.jpg" alt="Bild des Benutzers Christian Jakob" title="Bild des Benutzers Christian Jakob" /> </div>
<div class="author-pane-section author-pane-section-1">
<div class="author-pane-line author-name">
<span class="username" xml:lang="" about="/users/christian-jakob" typeof="sioc:UserAccount" property="foaf:name" datatype="">Christian Jakob</span> </div>
<div class="author-pane-line author-offline">
Offline </div>
</div>
<div class="author-pane-section author-pane-section-2">
<div class="author-pane-line author-joined">
<span class="author-pane-label">Beigetreten:</span> 18.02.2017 - 20:24 </div>
</div>
<div class="author-pane-section author-pane-contact">
</div>
<div class="author-pane-section author-pane-admin">
</div>
</div>
</div>
</div>
<div class="forum-post-panel-main clearfix">
<div class="forum-post-title">
Götz Kubitschek und das Institut für Staatspolitik </div>
<div class="forum-post-content">
<span class="print-link"><span class="print_html"><a href="https://kritisches-netzwerk.de/print/8125" title="Druckoptimierte Version dieser Seite anzeigen." class="print-page" onclick="window.open(this.href); return false" rel="nofollow"><img class="print-icon img-responsive" typeof="foaf:Image" src="https://kritisches-netzwerk.de/sites/all/modules/print/icons/print_icon.png" width="16px" height="16px" alt="Druckversion" title="Druckversion" /></a></span><span class="print_pdf"><a href="https://kritisches-netzwerk.de/printpdf/8125" title="Eine PDF-Version dieser Seite anzeigen." class="print-pdf" onclick="window.open(this.href); return false" rel="nofollow"><img class="print-icon img-responsive" typeof="foaf:Image" src="https://kritisches-netzwerk.de/sites/all/modules/print/print_pdf/icons/pdf_icon.png" width="16px" height="16px" alt="PDF version" title="PDF version" /></a></span></span><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p class="rtecenter"><span style="color:#990000"><span style="font-size:28px"><strong>Götz Kubitschek und das Institut für Staatspolitik</strong></span></span></p>
<p class="rtecenter"><span style="color:#990000"><span style="font-size:20px"><strong>Der Flügel und das rechte Netzwerk der AfD – Teil 1</strong></span></span></p>
<p class="rtejustify">Die Alternative für Deutschland (AfD) hat sich seit ihrer Gründungszeit 2013 zu einer deutschlandweit verbreiteten Partei entwickelt. Anfänglich noch als wirtschaftsliberal verlacht, wetterte die Partei zunächst vehement gegen den Euro, reformierte sich später durch zahlreiche innere Kämpfe der Funktionäre immer weiter zu einem Sammelbecken rechts-konservativer Vertreter mit Hang zur Austeritätspolitik, sprachlichen wie physischer Gewalt, zum Nationalismus, Fremdenhass und rassistischer Gesinnung. Die Ablehnung von illegaler, gesetzwidriger Einwanderung sollte allerdings nicht mit Rassismus gleichgesetzt werden.</p>
<p class="rtecenter"><img alt="Braune-Katze-Gesinnung-Fellfarbe-AfD-Alternative-fuer-Deutschland-Bjoern-Hoecke-Alexander-Gauland-Rechtsextremismus-Kritisches-Netzwerk-Goetz-Kubitschek-Fremdenhass-Andreas Kalbitz" src="/sites/default/files/u17/afd-braune-katze-gesinnung-fellfarbe-alternative-fuer-deutschland-bjoern-hoecke-alexander-gauland-rechtsextremismus-kritisches-netzwerk-goetz-kubitschek-fremdenhass-andreas_kalbitz.jpg" style="height:882px; width:1280px" /></p>
<p class="rtejustify">Ein facettenreicher Schmelztiegel aus Abgehängten oder Vergessenen, die nach der Wiedervereinigung, der Agenda 2010 und der neoliberalen Präkarisierung (Deregulierung, Lohndumping, Marktradikalismus, Repressionen, Entwürdigung, Sozialabbau u.v.m.), auf der Strecke geblieben waren. Es wäre jedoch falsch, in ihnen nur "Modernisierungsverlierer" zu sehen. Im Pool finden sich ebenso radikale Merkel-Gegner und -Hasser, homophobe, antisemitische und fremdenfeindliche Anhänger, bis hin zu ehemaligen gemäßigt konservativen Überläufern aus den etablierten Volksparteien CDU/CSU, FDP und SPD, die sich in der Politik ihrer alten Partei nicht mehr verstanden fühlten.</p>
<p class="rtejustify">Gerade die Flüchtlingskrise 2015 gab der AfD den Nährboden den sie brauchte, um sich all dieser Abgehängten, Besorgten und Wutbürgern zu bedienen, auch wenn diese sich selbst nicht zwangsläufig als "Rechte" verstehen. Gerne bedient man sich dem Stilmittel verbaler Brandstiftung und nimmt die zunehmende Spaltung der Gesellschaft billigend in Kauf, wie man es bereits aus den USA unter Trump kennt. Das vielfältige, offen wie subtil aber stets zielgerichtete, methodische Spiel mit der Angst hebelt die Grenzen der Vernunft auf. Es ist die Wut, es ist der Protest gegen "die da oben" und gegen alles Fremde und das Neue. Die AfD kanalisiert diese Empfindungen und nutzt diese zweckentfremdet für ihr Streben nach Macht und dem Umbau der Gesellschaft. In einem solchen Sammelsurium fand auch ein rechter Block seine Heimat, der sich unweigerlich so weit in der Gesamtheit der Partei ausbreitet und etabliert hat, und die alten, gemäßigt konservativen Restbestände in der AfD vor sich her treibt – der Flügel.</p>
<p class="rtejustify">Die Landesvorstände aus Sachsen-Anhalt und Thüringen bauten um den charismatischen [sic!], rhetorisch begabten Anführer <a href="https://de.wikipedia.org/wiki/Bj%C3%B6rn_H%C3%B6cke" target="_blank">Björn Höcke</a> ein Netzwerk auf, mit dem inhaltlichen Ziel, der AfD endgültig ihren rechtsextremen Stempel aufzudrücken. Die Verbindungen des „Flügel“ reichen dabei über die rechtsextrem eingestufte Kleinpartei „<a href="https://de.wikipedia.org/wiki/B%C3%BCrgerrechtspartei_f%C3%BCr_mehr_Freiheit_und_Demokratie_%E2%80%93_Die_Freiheit" target="_blank">Die Freiheit</a>“, gehen weiter über die seit Juli 2019 vom Bundesverfassungsschutz beobachtete und ebenfalls als rechtsextrem eingestufte „<a href="https://de.wikipedia.org/wiki/Identit%C3%A4re_Bewegung" target="_blank">Identitäre Bewegung</a>“, weiter bis in die Nationalistische Partei Deutschland (<a href="https://de.wikipedia.org/wiki/Nationaldemokratische_Partei_Deutschlands" target="_blank">NPD</a>), die im Nov. 2017 per Beschluss aufgelöste rechtsextreme Bürgerbewegung <a href="https://de.wikipedia.org/wiki/B%C3%BCrgerbewegung_pro_Deutschland" target="_blank">Pro Deutschland</a> (ihre Mitglieder wurden aufgefordert, zur AfD zu wechseln) oder der Verein "Ein Prozent für unser Land" (auch <a href="https://de.wikipedia.org/wiki/Ein_Prozent_f%C3%BCr_unser_Land" target="_blank"><em>Ein Prozent</em></a>), der Sammelbewegungen Pegida und Legida, als auch diversen rechtsextremen Zeitschriften wie Compact, Junge Freiheit oder die Preußische Allgemeine Zeitung (<a href="https://de.wikipedia.org/wiki/Preu%C3%9Fische_Allgemeine_Zeitung" target="_blank">PAZ</a>), den Online-Blogs Journalistenwatch, Sezession oder PI-News, als auch dem Jugend- und Schülermagazin Blaue Narzisse (<a href="https://de.wikipedia.org/wiki/Blaue_Narzisse" target="_blank">BN</a>).</p>
<p class="rtecenter"><img alt="AfD-braune-Zukunft-Goetz-Kubitschek-Institut-fuer-Staatspolitik-Andreas-Kalbitz-Bjoern-Hoecke-Fluegel-Kritisches-Netzwerk-Geschichtsrevisionismus-Rechtsextremismus-Identitaere" src="/sites/default/files/u17/afd-braune-zukunft-goetz-kubitschek-institut-fuer-staatspolitik-andreas-kalbitz-bjoern-hoecke-fluegel-kritisches-netzwerk-geschichtsrevisionismus-rechtsextremismus-identit.jpg" style="height:900px; width:1260px" /></p>
<p class="rtejustify">Auch ins Ausland pflegt dieses Netzwerk Kontakte und regelmäßige Zusammenarbeit. Gezielte Schulungen, Seminare, Akademien oder Informationsabende führten seit fast 20 Jahren zu einem gezielten Nachwuchsaufbau. Gespickt mit Intellektuellen und Publizisten aus dem internationalen Sektor der Neuen Rechten, mit historischen Aufarbeitungen und vermeintlich geglaubten Richtigstellungen und Interpretationen der Geschichte des Nationalsozialismus (Geschichtsrevisionismus). Der Flügel ist nicht nur gefährlich, er besitzt auch Macht und Einfluss. Und er steht kurz davor die AfD in ihrer Gänze zu vereinnahmen und zu übernehmen.</p>
<p class="rtejustify">Diese Artikelreihe befasst sich mit dem Netzwerk der <a href="https://www.bpb.de/politik/extremismus/rechtsextremismus/284268/was-die-neue-rechte-ist-und-was-nicht" target="_blank">Neuen Rechten</a>, den Personen, Lenkern und Denkern im Hintergrund, den Verbindungen und Überschneidungen diverser nationaler und internationaler Vereinigungen, und beleuchtet die jeweiligen Querverbindungen in höchste Kreise der AfD-Funktionäre als auch zu ausländischen Regierungsvertretern und Organisationen. Der Flügel und das rechte Netzwerk der AfD in 3 Teilen.</p>
<p class="rtejustify"><span style="font-size:18px"><strong>► Der Macher aus der hinteren Reihe</strong></span></p>
<p class="rtejustify">Die zentrale Denkfabrik und Herzstück des Flügels ist das Institut für Staatspolitik (<a href="https://de.wikipedia.org/wiki/Institut_f%C3%BCr_Staatspolitik" target="_blank">IfS</a>). Die im Jahr 2000 gegründete private Einrichtung wurde im hessischen Bad Vilbel von <a href="https://de.wikipedia.org/wiki/G%C3%B6tz_Kubitschek" target="_blank">Götz Kubitschek</a>, seiner Lebensgefährtin <a href="https://de.wikipedia.org/wiki/Ellen_Kositza" target="_blank">Ellen Kositza</a> und des Philosophen Dr. <a href="https://de.wikipedia.org/wiki/Karlheinz_Wei%C3%9Fmann" target="_blank">Karlheinz Weißmann</a> ins Leben gerufen. Ziel dieser Einrichtung sollte sein, Jugendlichen auf akademische Weise den <a href="https://de.wikipedia.org/wiki/Konservatismus_in_Deutschland" target="_blank">Konservatismus</a> näher zu bringen und zu vermitteln. Dabei verfolgt diese rechts-intellektuelle Gedankenwelt drei Grundsätze und bedient sich der Elemente aus anti-liberalem Denken, der Liberalismus als klare Feindbestimmung und die Auseinandersetzung mit dem Islam. So kann man mit dieser gedanklichen Ausrichtung auch nicht pauschal behaupten, das Kubitschek (Foto unten) und sein IfS nazistisch ist.</p>
<p class="rtecenter"><img alt="Goetz-Kubitschek-Verlag-Antaios-Sezession-Ellen-Kositza-Rittergut-Schnellroda-Sachsen-Anhalt-AfD-Alternative-fuer-Deutschland-Kritisches-Netzwerk-Neue-Rechte-Intellektualisierung" src="/sites/default/files/u17/goetz-kubitschek-verlag-antaios-sezession-ellen-kositza-rittergut-schnellroda-sachsen-anhalt-afd-alternative-fuer-deutschland-kritisches-netzwerk-neue-rechte-intellektualisierung.jpg" style="height:748px; width:1280px" /></p>
<p class="rtejustify">Die Ideen aus diesem Thinktank werden zwar gerne von Neonazis rezipiert, jedoch orientiert sich das IfS nach Traditionslinien der sogenannten konservativen Revolution der Weimarer Republik [1]. So kamen über die Anfangsjahre zu den mehrmals jährlich stattfindenden Sommer- und Winterakademien, Tagungen, Vorlesungen und Projekten bis heute diverse Interessenten aus dem In- und Ausland. Parteimitglieder der AfD und <a href="https://de.wikipedia.org/wiki/Nationaldemokratische_Partei_Deutschlands" target="_blank">NPD</a>, den ehemaligen Parteien der Deutschen Volksunion (<a href="https://de.wikipedia.org/wiki/Deutsche_Volksunion" target="_blank">DVU</a>) [DVU <a href="https://web.archive.org/web/20101215010232/http://www.tagesschau.de/inland/npdvu102.html" target="_blank">fusioniert 2011</a> mit der NPD] und <a href="https://de.wikipedia.org/wiki/B%C3%BCrgerrechtspartei_f%C3%BCr_mehr_Freiheit_und_Demokratie_%E2%80%93_Die_Freiheit" target="_blank">Die Freiheit</a>, Anhänger und Mitglieder der <a href="http://www.bpb.de/politik/extremismus/rechtsextremismus/241438/die-identitaeren-mehr-als-nur-ein-internet-phaenomen" target="_blank">Identitären Bewegung</a> Deutschlands (IBD), Österreichs (<a href="https://de.wikipedia.org/wiki/Identit%C3%A4re_Bewegung_%C3%96sterreich" target="_blank">IBÖ</a>) und Frankreichs (<a href="https://de.wikipedia.org/wiki/Les_Identitaires" target="_blank">Le Bloc identitaire</a>), Neofaschisten der CasaPound Italia (<a href="https://de.wikipedia.org/wiki/CasaPound_Italia" target="_blank">CPI</a>) oder Mitglieder der Junge Alternative (<a href="https://de.wikipedia.org/wiki/Junge_Alternative_f%C3%BCr_Deutschland" target="_blank">JA</a>), der Jugendorganisation der AfD und dem deutschen <a href="https://de.wikipedia.org/wiki/Freibund" target="_blank">Freibund</a>.</p>
<p class="rtejustify">Das Institut muss man als Thinktank der Neuen Rechten betrachten, dessen Ziel es ist, krudes völkisch-nationalistisches Gedankengut zu vermitteln und Deutschtum (auch Ethnopolitik genannt) unter seinen Anhängern neu zu beleben und zu verbreiten. Mit dem IfS und seinen Mitteln sollen Angehörige einer kommenden politischen Elite für den Ernstfall geschult und konditioniert werden, um für einen grundlegenden politischen Umbruch vorbereitet zu sein. Die Themenfelder der Kongresse und Seminare reichen von "<span style="color:#006600">Staat und Gesellschaft</span>", "<span style="color:#006600">Zuwanderung und Integration</span>", "<span style="color:#006600">Politik und Identität</span>" und gehen weiter bis hin zu "<span style="color:#006600">Erziehung und Bildung</span>", „<span style="color:#006600">Ökonomie und Ökologie</span>“ und "<span style="color:#006600">Krieg und Krise</span>" [> Inhaltliche <a href="https://kritisches-netzwerk.de/sites/default/files/ifs_-_inhaltliche_themenfelder_und_arbeitsgebiete_des_instituts_fuer_staatspolitik.pdf" target="_blank">Themenfelder und Arbeitsgebiete</a> des IfS].</p>
<p class="rtejustify">Ebenso werden in regelmäßigen Abständen Instituts-eigene Studien veröffentlicht. Unter zweideutigen Titeln bekommt der Besucher die Möglichkeit, sich noch tiefer mit der rechten Materie zu befassen, was einer neuen Bezeichnung von alten Begriffen gleichkommt. Die Neuen Rechten umschreiben alte Formulierungen und verstecken gekonnt ihre Absichten und Aussagen hinter rhetorisch neu besetzten Wortformulierungen. Aus Nationalisten werden Patrioten, aus Musliminnen werden Kopftuchmädchen, aus Tätern werden Opfer.</p>
<p class="rtejustify"><img alt="Enno-Stahl-Die-Sprache-der-Neuen-Rechten-Populistische-Rhetorik-und-Strategien-Kritisches-Netzwerk-Aggressivitaet-Rechtsextremismus-Rechtpopulismus-Volksverhetzung" src="/sites/default/files/u17/enno-stahl-die-sprache-der-neuen-rechten-populistische-rhetorik-und-strategien-kritisches-netzwerk-aggressivitaet-rechtsextremismus-rechtpopulismus-volksverhetzung.jpg" style="float:right; height:409px; padding-bottom:5px; padding-left:15px; padding-top:5px; width:260px" /> Enno Stahl beleuchtet mit seinem im Alfred Kröner Verlag Mitte Sept. 2019 erscheinenden Buch „<span style="color:#006600">Die Sprache der Neuen Rechten. Populistische Rhetorik und Strategien</span>“ die neuen Formulierungen und rhetorischen Mittel [> <a href="https://www.kroener-verlag.de/details/product/die-sprache-der-neuen-rechten/" target="_blank">Buchinfo</a>]. Die Mehrheit der Besucher sieht sich selbst allerdings bei den bürgerlichen Konservativen und zählt sich nicht zu den Rechtsextremisten. Welch perfide und mangelhafte Selbsteinschätzung. Besonderes Augenmerk legt die IfS dabei auf jüngere Teilnehmer. Die Anmeldevoraussetzungen zu den jeweiligen Veranstaltungen richten sich größtenteils an Interessenten, die jünger als 35 Jahre sind [2]. Hier erklärt sich auch die enge Zusammenarbeit mit Burschenschaften und Jugendorganisationen.</p>
<p class="rtejustify">Im Jahr 2003 siedelte das IfS ins sachsen-anhaltinische <a href="https://de.wikipedia.org/wiki/Schnellroda" target="_blank">Schnellroda</a> in ein altes Rittergut im neo-barocken Stil um. (> s. <a href="https://www.spiegel.de/spiegel/goetz-kubitschek-der-wichtigste-intellektuelle-der-neuen-rechten-a-1126581.html" target="_blank">SPIEGEL ONLINE-Artikel</a> "<span style="color:#006600">Rechtes Denken: Der dunkle Ritter Götz</span>"). <a href="https://www.zeit.de/gesellschaft/2017-02/schnellroda-sachsen-anhalt-afd-goetz-kubitschek" target="_blank">Das kleine 200- Seelen-Dorf</a>, eingemeindet nach Steigra in der Verbandsgemeinde Weida-Land, liegt abgelegen und ruhig im <a href="https://de.wikipedia.org/wiki/Unstruttal" target="_blank">Unstruttal</a> zwischen Halle und Erfurt im Saalekreis. Es bietet viel Platz und Räumlichkeiten für die akademischen und literarischen Arbeiten Kubitscheks. Was von außen hochoffiziell anmutet, ist formaljuristisch nur ein selbstfinanzierter Verein aus Spendengeldern. Seit 2008 ist Dr. <a href="https://de.wikipedia.org/wiki/Erik_Lehnert" target="_blank">Erik Lehnert</a> Geschäftsführer des IfS und gleichzeitig vertrauter Mitarbeiter für den AfD- Bundestagsabgeordneten <a href="https://de.wikipedia.org/wiki/Harald_Weyel" target="_blank">Harald Weyel</a> [3].</p>
<p class="rtejustify">Kubitschek räumte seinen Platz als Geschäftsführer für Lehnert, um sich mehr den Aktionen der Konservativen-Subversiven-Aktion (KSA) [4] zu widmen. Seiner Auffassung nach vertrage sich Wissenschaftlichkeit mit Polemik nicht [5]. In den Gemäuern des ehemaligen Ritterguts erarbeitete Kubitschek die sogenannte <a href="https://de.wikipedia.org/wiki/Alternative_f%C3%BCr_Deutschland#%E2%80%9EErfurter_Resolution%E2%80%9C_und_%E2%80%9EWeckruf_2015%E2%80%9C" target="_blank">Erfurter Resolution</a> [> <a href="https://kritisches-netzwerk.de/sites/default/files/afd_-_die_erfurter_resolution_-_wortlaut_und_erstunterzeichner_-_maerz_2015.pdf" target="_blank">Wortlaut und Erstunterzeichner</a>], da er mit der Parteiführung der AfD unzufrieden war und diese mit aller Macht umkehren wollte. Sein Partner Dr. Karlheinz Weißmann hingegen war jedoch Befürworter von leiseren Tönen und langsameren Vorgehensweisen und so kam es im Jahr 2009 zum ersten Bruch der beiden Gründer des IfS, was die zukünftige Ausrichtung anging. Inhaltlich standen und stehen sich noch heute Weißmann und Kubitschek sehr nahe. Unter der damaligen Parteiführung von <a href="https://de.wikipedia.org/wiki/Bernd_Lucke" target="_blank">Bernd Lucke</a> und <a href="https://de.wikipedia.org/wiki/Hans-Olaf_Henkel" target="_blank">Hans-Olaf Henkel</a> sahen einige Mitglieder als auch Kubitschek sich der Gefahr ausgesetzt, das anfänglich entgegengebrachte Vertrauen der Wähler zu verspielen, weil sich die Partei immer weiter in die politische Mitte begeben würde.</p>
<p class="rtejustify">Weißmanns Loslösung von Kubitschek und dem IfS begann 2012, als er als Mitherausgeber und als Redakteur der Sezession zurücktrat. Er gab nach immer größeren Streitigkeiten und Zerwürfnissen mit Kubitschek im April 2014 die Leitung des IfS ab, da ihm die schnelle und aggressive Vorgehensweise Kubitscheks nicht mehr zusagte. Nach außen hin wurde diese Trennung als notwendige Erneuerung kolportiert. Intern jedoch zeigen viele Aussagen und Kommentare in der Sezession ein anderes Bild auf. Somit war der Weg für Kubitschek frei, mit der Erfurter Resolution im Gepäck, den Umbruch der AfD im März 2015 einzuleiten. Diese Unterschriftensammlung führte letzten Endes zur ersten inneren und inhaltlichen Spaltung und Reformation der AfD, zum Austritt mehrerer Funktionäre aus der Parteispitze und ca. 3.000 Mitgliedern [7], als auch zur Gründung des rechten Flügels mit Björn Höcke und <a href="https://de.wikipedia.org/wiki/Andr%C3%A9_Poggenburg" target="_blank">André Poggenburg</a> an der Spitze. Seit diesem Schulterschluss und dem offenem Bekenntnis zu Höcke ist Kubitschek enger Vertrauter und begleitet ihn regelmäßig bei seinen Auftritten auf Kundgebungen.</p>
<p class="rtecenter"><img alt="Bjoern-Hoecke-Fluegel-AfD-Thueringen-Rechtskonservatismus-Kritisches-Netzwerk-Rechtsradikalismus-Volksverhetzung-voelkische-Ideologie-Patriotismus-Ethnopluralismus-Deutschtum" src="/sites/default/files/u17/afd-bjoern-hoecke-fluegel-thueringen-rechtskonservatismus-kritisches-netzwerk-rechtsradikalismus-volksverhetzung-voelkische-ideologie-patriotismus-ethnopluralismus-deutschtum.jpg" style="height:854px; width:1280px" /></p>
<p class="rtejustify">Immer wieder verfolgte das IfS in Berlin und anderen Städten eine Art Expansion, um das steigende Interesse von Besuchern befriedigen zu können. Während die Sommer- und Winterakademien überwiegend im heimatlichen Schnellroda nach diversen Um- und Ausbauarbeiten mit ca. 150 Besuchern durchgeführt wurden, kamen die neuen Konzepte mit Titeln wie „<span style="color:#006600">Berliner Kolleg</span>“ [8] (ab 2003) oder „<span style="color:#006600">Staatspolitischer Salon</span>“ [9] (ab 2017) auf bis zu 700 Besucher. Ein weiteres Konzept mit dem Veranstaltungsnamen „<span style="color:#006600">Zwischentag</span>“ [10], eine Art Buchmesse für rechte Literatur, wurde in den Räumlichkeiten einzelner Burschenschaften in ganz Deutschland und Österreich abgehalten. Dazu bediente sich das IfS regelmäßig Örtlichkeiten und Einrichtungen des Jugendverbandes „<a href="https://de.wikipedia.org/wiki/Freibund" target="_blank">Freibund</a>“ [11] mit Sitz in Göttingen, oder den Vereinsheimen und Verbindungshäusern von Burschenschaften wie die der Grazer Akademischen Bruderschaft Arminia [12] oder der Berliner Burschenschaft Gothia [13].</p>
<p class="rtejustify">Durch regelmäßige Protestaktionen der Antifa im Berliner Raum und durch teilweise kurzfristig zurück genommene Mietverträge durch die Inhaber diverser Einrichtungen war das IfS immer wieder gezwungen, neue Räumlichkeiten aufzusuchen, in denen man dennoch die geplanten Themenabende und Informationsreihen abhalten konnte. Aufgrund dieser logistischen Probleme sollten planbare, beständige Alternativen gesucht werden und man wurde 2011 mit einer festen Anlaufadresse, dem Logenhaus in Berlin-Wilmersdorf, fündig. Dieses wird noch bis heute angemietet und für das Berliner Kolleg genutzt wird [14].</p>
<p class="rtejustify"><img alt="AfD-Wahlplakat-Waelt-mich-Hundehaeufchen-Kritisches-Netzwerk-Kubitschek-Hoecke-Rechtskonservatismus-voelkische-Ideologie-voelkischer-Nationalismus-Neue-Rechte-Rechtsaussenpartei" src="/sites/default/files/u17/afd-wahlplakat-waelt-mich-hundehaeufchen-kritisches-netzwerk-kubitschek-hoecke-rechtskonservatismus-voelkische-ideologie-voelkischer-nationalismus-neue-rechte.jpg" style="float:right; height:354px; padding-bottom:5px; padding-left:15px; padding-top:5px; width:260px" />Ebenso wurde man für internationale Verbindungen in der Steiermark fündig. Bücherlesungen von Autoren, Informationsabende oder gemeinschaftliche Projekte fanden seit 2003 im Rahmen des „Berliner Kolleg“ statt. Zwischen 2016 und 2018 fanden im österreichischen <a href="https://de.wikipedia.org/wiki/Semriach" target="_blank">Semriach</a> (bei Graz) aufgrund steigender Nachfrage jährlich die ersten „Herbstakademien“ statt [15]. Schirmherr und Eigentümer der Einrichtung ist der FPÖ-Politiker und Grazer Gemeinderat Heinrich Sickl. Im sogenannten „Hackher-Zentrum“ (benannt nach Major Franz Xaver Hackher zur Hart, 19. Jahrhundert) sind in denselben Räumlichkeiten die rechtsextreme und völkisch-nationalistische identitäre Bewegung Österreich (<a href="https://de.wikipedia.org/wiki/Identit%C3%A4re_Bewegung_%C3%96sterreich" target="_blank">IBÖ</a>) [16] untergebracht, die sich bei den Seminaren neben dem freiheitlichen Akademikerverband (FAV) [17] als Veranstalter zeichnen [18].</p>
<p class="rtejustify">Aufgrund von innerpolitischen Problemen und der eingeforderten Distanzierung Sickls zu der rechtsextremen Vereinigung, war Sickl gezwungen, den Mietvertrag mit der IBÖ aufzulösen [19]. Diese zog dann ins 50km entfernte <a href="https://de.wikipedia.org/wiki/Eichk%C3%B6gl" target="_blank">Eichkögl</a> (bei Gleisdorf) in ein altes Gehöft um, was ihnen zu einem Obolus von 1 Euro pro Monat vom Besitzer und Gönner überlassen wurde. Die Eröffnungsfeier des neuen IBÖ-Hauptquartier fand am 28.07.2019 statt [20]. Es ist davon auszugehen, dass die 4. Herbstakademie der IfS in den neuen Räumlichkeiten, veranstaltet von FAV und IBÖ, stattfinden wird.</p>
<p class="rtejustify">Im zweiten Teil dieser Artikelreihe, der hier in Kürze veröffentlicht wird, geht es um die IfS-interne und hauseigene Zeitschrift Sezession und um den hauseigenen Antaios Verlag, Verbindungen und Kooperationen zu anderen Medien und Verlagen, als auch zu den Verflechtungen der Verlage und Medien in Europa.</p>
<p class="rtejustify"><span style="font-size:16px"><strong>Christian Jakob</strong></span></p>
<p class="rtejustify"><img alt="pin_green.gif" src="/sites/default/files/u17/pin_green.gif" style="height:28px; width:28px" /><span style="font-size:18px"><strong>Anmerkungen / Fußnoten / Lesetipps:</strong></span></p>
<p class="rtejustify">[1] David Begrich, Leiter der Arbeitsstelle Rechtsextremismus beim Verein Miteinander in Magdeburg, unterscheidet zwischen Neonazis und Intellektuellen, die völkisch-nationales Gedankengut mit elitäraristokratischem Habitus verbinden. (Deutschlandfunk, vom 19.11.2015 – Die Denkfabrik der Neuen Rechten) >> <a href="https://www.deutschlandfunk.de/institut-fuer-staatspolitik-die-denkfabrik-der-neuen-rechten.862.de.html?dram:article_id=337403" target="_blank">weiter</a>.</p>
<p class="rtejustify">[2] Anmeldeformular und Programmablauf für die 20. Sommerakademie vom 20. - 22.09.2019 im Institut für Staatspolitik in Schnellroda (Webpräsenz des Institut für Staatspolitik) >> <a href="https://kritisches-netzwerk.de/sites/default/files/ifs_-_anmeldeformular_und_programmablauf_fuer_die_20_sommerakademie_2019_im_institut_fuer_staatspolitik_in_schnellroda.pdf" target="_blank">weiter</a>.</p>
<p class="rtejustify">[3] AfD im Bundestag - Keine Bedenken bei rechten Gedanken. Der Geschäftsführer des rechten Think Tanks „Institut für Staatspolitik“ hat einen neuen Job: als Mitarbeiter der AfD-Fraktion. (<em>taz</em>, vom 11.01.2018) >> <a href="https://taz.de/AfD-im-Bundestag/!5476603/" target="_blank">weiter</a>.</p>
<p class="rtejustify">[4] Die Konservative-subversive Aktion (KSA) adaptiert traditionell linke Strategien der 68er Bewegung.<br />
(Wikipedia) >> <a href="https://de.wikipedia.org/wiki/Benutzer:%C3%9Cber-Blick/Konservativ-Subversiven_Aktion" target="_blank">weiter</a>.</p>
<p class="rtejustify">[5] Begründung von Götz Kubitschek über den Wechsel der Leitung des IfS als Kommentar in der hauseigenen Zeitschrift Sezession (Heft 26, Oktober 2008, Seite 56) >> <a href="https://kritisches-netzwerk.de/sites/default/files/ifs_-_goetz_kubitschek_ueber_den_wechsel_der_leitung_des_ifs_als_kommentar_in_der_hauseigenen_zeitschrift_sezession_-_heft_26_-_oktober_2008_-_seite_56.pdf" target="_blank">weiter</a>.</p>
<p class="rtejustify">[6] Erfurter Resolution (Wortlaut und Erstunterzeichner), vom 14.03.2015 >> <a href="https://www.derfluegel.de/2015/03/14/die-erfurter-resolution-wortlaut-und-erstunterzeichner/" target="_blank">weiter</a>.</p>
<p class="rtejustify"><img alt="AfD-GEGEN-Institut-fuer-Staatspolitik-Goetz-Kubitschek-Bjoern-Hoecke-Fremdenhass-Kritisches-Netzwerk-Rassismus-voelkischer-Nationalismus-Gauland-Volksverhetzung-Enno-Stahl" src="/sites/default/files/u17/afd-gegen-institut-fuer-staatspolitik-goetz-kubitschek-bjoern-hoecke-fremdenhass-kritisches-netzwerk-rassismus-voelkischer-nationalismus-gauland-volksverhetzung-enno-stahl.jpg" style="float:right; height:260px; padding-bottom:5px; padding-left:15px; padding-top:5px; width:260px" />[7] Petry spricht von Sabotage. Klassischer Fall von Nachtreten: Frauke Petry macht Vorgänger Lucke schwere Vorwürfe. (ZEIT-Online, vom 10.07.2015) >> <a href="https://www.zeit.de/politik/deutschland/2015-07/frauke-petry-bernd-lucke-afd-austritte" target="_blank">weiter</a>.</p>
<p class="rtejustify">[8] 19. Berliner Kolleg, vom 26.11.2011 im AVZ Logenhaus, Emser Straße 12-13 in Berlin-Wilmersdorf. Thema: „Ein Jahr nach Sarrazin – Meinungsfreiheit in Deutschland“ (Sezession vom 01.11.2011) >> <a href="https://sezession.de/28601/19-berliner-kolleg-ein-jahr-nach-sarrazin-meinungsfreiheit-in-deutschland" target="_blank">weiter</a>.</p>
<p class="rtejustify">[9] 1. Staatspolitischer Salon, am 14. Dezember 2017 in Halle (Webpräsenz des IfS) >> <a href="https://staatspolitik.de/25-staatspolitischer-salon-am-14-dezember-in-halle-saale-russlands-weg-im-21-jahrhundert-mit-alexander-markovics/" target="_blank">weiter</a>.</p>
<p class="rtejustify">[10] 1. Freie Messe Berlin – „Zwischentag“ – am 6. Oktober 2012 im AVZ Logenhaus in Berlin-Wilmersdorf. Zugleich Jubiläumsfeier Heft Nr. 50 der IfS-internen Sezession (Sezession, Heft 49 aus August 2012) >> <a href="https://sezession.de/wp-content/uploads/2012/07/Sez49.pdf" target="_blank">weiter</a>.</p>
<p class="rtejustify">[11] Freibund – Bund Heimattreuer Jugend und Deutsche Gildenschaft besuchen regelmäßig die Jugendburg Ludwigstein und nutzen die Einrichtungen für eigene Veranstaltungen (ZEIT-Online Blog „Störungsmelder“ vom 23.10.2013) >> <a href="https://blog.zeit.de/stoerungsmelder/2013/10/23/eklat-um-rechte-umtriebe-auf-burg-ludwigstein_14239" target="_blank">weiter</a>.</p>
<p class="rtejustify">[12] 15. Staatspolitischer Salon, am 29.6.2016 im Verbindungshaus der Akademischen Burschenschaft Arminia in Graz, Sparbersbachgasse 51 in Graz. Buchvorstellung und Lesung von Akif Princci aus seinem Buch „Umvolkung“ (Sezession Blog, vom 23.06.2016, Nils Wegner) >> <a href="https://sezession.de/54492/15-staatspolitischer-salon-dutschke-und-die-deutsche-frage" target="_blank">weiter</a>.</p>
<p class="rtejustify">[13] Berliner Burschenschaft Gothia als Veranstaltungsort im Artikel „Es geht um Einfluss in die Köpfe – Das Institut für Staatspolitik“ (Bundeszentrale für politische Bildung, Fußnote 12) >> <a href="https://www.bpb.de/politik/extremismus/rechtsextremismus/230002/es-geht-um-einfluss-auf-die-koepfe-dasinstitut-fuer-staatspolitik" target="_blank">weiter</a>.</p>
<p class="rtejustify">[14] Tagungsfolge Berliner Kolleg des Institut für Staatspolitik im AVZ Logenhaus, Emser Str. 12-13 in Berlin-Wilmersdorf als feste Veranstaltungsadresse ab 2011 (ab 19. Berliner Kolleg) – Original Flyer >> weiter.</p>
<p class="rtejustify">[15] Herbstakademie des Institut für Staatspolitik in den Räumen der Identitären Bewegung Österreich im Hackher-Zentrum Semriach. >> <a href="https://recherchegraz.noblogs.org/post/2016/10/15/heinrich-sickl/" target="_blank">weiter</a>.</p>
<p class="rtejustify">[16] Rechtsextremismus – Identitäre Verstrickungen (Wiener Zeitung, vom 27.03.2019) >> <a href="https://www.wienerzeitung.at/nachrichten/politik/oesterreich/2002494-Identitaere-Verstrickungen.html?em_cnt_page=2" target="_blank">weiter</a>.</p>
<p class="rtejustify">[17] Freiheitlicher Akademikerverband Österreich FAV (Webpräsenz des FAV) >> <a href="http://www.akademikerverband.at/arbeitsgemeinschaft-freiheitlicher-akademikerverbaende-oesterreichs/" target="_blank">weiter</a>.</p>
<p class="rtejustify">[18] Das große Dossier – Alles, was es über die „Identitäre Bewegung“ zu wissen gibt. Beweisfoto zur Veranstaltung „Sturm auf Europa“ in Kooperation mit dem Institut für Staatspolitik (Kontrast, Artikel vom 29.03.2019) >> <a href="https://kontrast.at/identitaere-bewegung/" target="_blank">weiter</a>.</p>
<p class="rtejustify">[19] Rechtsextremismus – Identitäre fliegen aus ihrem Hauptquartier. Das Mietverhältnis der Rechtsextremen mit dem mit einem Grazer FPÖ-Gemeinderat in Ende Juni passé (Wiener Zeitung, vom 21.06.2019) >> <a href="https://www.wienerzeitung.at/nachrichten/politik/oesterreich/2015047-Identitaere-fliegen-aus-ihrem-Hauptquartier.html?em_no_split=1" target="_blank">weiter</a>.</p>
<p class="rtejustify">[20] Identitäre eröffnen neues Zentrum in der Oststeiermark (Die Presse, Artikel vom 30.07.2019) >> <a href="https://diepresse.com/home/panorama/5667162/Identitaere-eroeffnen-neues-Zentrum-in-der-Oststeiermark" target="_blank">weiter</a>.</p>
<hr /><p><span style="font-size:18px"><strong><img alt="" src="/sites/default/files/u17/pin_green.gif" style="height:28px; width:28px" /> Lesetipps:</strong></span></p>
<p class="rtejustify">"<span style="color:#006600"><strong>AfD-Parteitag stärkt völkischen Flügel</strong></span>" von Peter Schwarz, 3. Dezember 2019 >> <a href="https://kritisches-netzwerk.de/forum/afd-parteitag-staerkt-voelkischen-fluegel" target="_blank"><strong>weiter</strong></a>.</p>
<p class="rtejustify">"<span style="color:#006600"><strong>Rechtsradikale Netzwerke im Staatsapparat</strong></span>" von Peter Schwarz, 12. Oktober 2019 >> <a href="https://kritisches-netzwerk.de/forum/rechtsradikale-netzwerke-im-staatsapparat" target="_blank"><strong>weiter</strong></a>.</p>
<p class="rtejustify">"<span style="color:#006600"><strong>Warum der derzeitige Einsatz von V-Personen durch die Polizei illegal ist</strong></span>" von Dr. Anna Luise Decker, 28. Sep. 2019 >> <a href="https://kritisches-netzwerk.de/forum/warum-der-derzeitige-einsatz-von-v-personen-durch-die-polizei-illegal-ist" target="_blank"><strong>weiter</strong></a>.</p>
<p class="rtejustify">"<span style="color:#006600"><strong>Sezession: neurechte Theoriezeitschrift mit Netz-Tagebuch und der Buchverlag Antaios</strong>. Der Flügel und das rechte Netzwerk der AfD</span>" von Christian Jakob, 26.08.2019 >> <a href="https://kritisches-netzwerk.de/forum/sezession-neurechte-theoriezeitschrift-mit-weblog-und-der-buchverlag-antaios" target="_blank"><strong>weiter</strong></a>.</p>
<p class="rtejustify">"<span style="color:#006600"><strong>Enno Stahl: Die Sprache der Neuen Rechten. Populistische Rhetorik und Strategien</strong></span>" von Christian Jakob inkl. zur Veröffentlichung freigegebene Leseprobe, 19.08.2019 >> <strong><a href="https://kritisches-netzwerk.de/forum/enno-stahl-die-sprache-der-neuen-rechten-populistische-rhetorik-und-strategien" target="_blank">weiter</a></strong>.</p>
<p class="rtejustify">"<span style="color:#006600"><strong>Götz Kubitschek und das Institut für Staatspolitik: Der Flügel und das rechte Netzwerk der AfD</strong></span>" von Christian Jakob, 12.08.2019 >> <strong><a href="https://kritisches-netzwerk.de/forum/goetz-kubitschek-und-das-institut-fuer-staatspolitik" target="_blank">weiter</a></strong>.</p>
<p class="rtejustify">"<span style="color:#006600"><strong>Funktionärs-Rochade: Die heimliche Unterwanderung der AfD durch Rechtsextreme</strong></span>" von Christian Jakob, 03.08.2019 >> <a href="https://kritisches-netzwerk.de/forum/funktionaers-rochade-die-heimliche-unterwanderung-der-afd-durch-rechtsextreme" target="_blank"><strong>weiter</strong></a>.</p>
<p class="rtejustify">"<span style="color:#006600"><strong>Der Weg in alte Muster: Will die AfD zurück ins Dritte Reich?</strong></span>" von Christian Jakob, 29.07.2019 >> <a href="https://kritisches-netzwerk.de/forum/der-weg-alte-muster-will-die-afd-zurueck-ins-dritte-reich" target="_blank"><strong>weiter</strong></a>.</p>
<p class="rtejustify">"<span style="color:#006600"><strong>Die Nationalisierung der Massen</strong>. Wo Nationalismus zur Ersatzreligion aufgebaut wird, sind auch Faschismus, Gewalt und Krieg nicht weit.</span>" von Wolfram Rost, 25.07.2019 >> <a href="https://kritisches-netzwerk.de/forum/die-nationalisierung-der-massen-wo-nationalismus-zur-ersatzreligion-aufgebaut-wird" target="_blank"><strong>weiter</strong></a>. - Erstveröffentlichung am 19.07.2019 bei RUBIKON >> <a href="https://www.rubikon.news/artikel/die-nationalisierung-der-massen" target="_blank"><strong>weiter</strong></a>.</p>
<p class="rtejustify">"<span style="color:#006600"><strong>Die Kriegs-Alternative: Ein Fake namens AfD: asozial & militaristisch</strong></span>" von Ulrich Gellermann, 24.07.2019 >> <strong><a href="https://kritisches-netzwerk.de/forum/die-kriegs-alternative-ein-fake-namens-afd-asozial-militaristisch" target="_blank">weiter</a></strong>.</p>
<hr /><p class="rtejustify"><strong>ACHTUNG:</strong> Die Bilder und Grafiken im Artikel sind nicht Bestandteil des Artikels und wurden von KN-ADMIN Helmut Schnug eingefügt. Für sie gelten ggf. andere Lizenzen, s.u..</p>
<p><span style="font-size:16px"><strong>► Bild- und Grafikquellen:</strong></span></p>
<p class="rtejustify"><strong>1. Havana-Katze (Havana Brown)</strong>. Braune Fellfarbe: <strong><span style="color:#006600">JA.</span></strong> braune Gesinnung: <strong><span style="color:#ff0000">NEIN.</span></strong> So weit geht meine Liebe zu braun dann auch wieder nicht. <strong>Bildidee:</strong> Helmut Schnug. <strong>Bildbearbeitung:</strong> Wilfried Kahrs (WiKa).</p>
<p class="rtejustify"><img alt="Rechtspopulismus-Rechtsradikalismus-afd-alternative-fuer-deutschland-kritisches-netzwerk-Alexander-Gauland-Bjoern-Hoecke-Vogelschiss-Marine-Le-Pen-Mart-Helme-Rechtsruck-Rassemblement-National" src="/sites/default/files/u17/populismus_rechtspopulismus_rechtsradikalismus_afd_alternative_fuer_deutschland_fremdenhass_rassismus_pegida_nationalkonservatismus_voelkischer_nationalismus_kritisches_netzwerk.png" style="float:right; height:240px; padding-bottom:5px; padding-left:15px; padding-top:5px; width:240px" />Die Havana ist eine vom Menschen erzüchtete Katzenrasse. Sie gehört zu den Orientalisch-Kurzhaar-Katzen und wird bei den europäischen Katzenvereinen üblicherweise auch in dieser Kategorie geführt. Die Havana ist eine charmante, spielfreudige Katze mit einer weichen Stimme. Sie benutzen oft ihre Pfoten, um die Vorübergehenden auf sich aufmerksam zu machen oder um interessante Dinge zu untersuchen.</p>
<p class="rtejustify"><strong>2.</strong> <strong><span style="color:#663300">BRAUNE ZUKUNFT? NEIN - DANKE. Die Vergangenheit hat gereicht! </span></strong><strong><span style="color:#663300">NULL TOLERANZ FÜR BRAUNE HAUFEN! </span></strong>Faschismus und Nazi-Ideologie haben bisher keine Probleme gelöst. Im Gegenteil: Sie haben nur unsägliche Probleme verursacht! Kern der faschistischen Ideologie ist die Diskriminierung anderer und ihre Ausgrenzung. Diskriminierung und Ausgrenzung stiften Aggression und Gewalt. Aggression und Gewalt erzeugen Gegengewalt. Und das führt zu unzähligen Opfern und grenzenlosem Leid auf beiden Seiten! Wie uns die Geschichte gelehrt haben sollte. Ist das die Welt, in der wir leben wollen? <strong>Text</strong> und <strong>Grafik:</strong> Dr. Vincent Kluwe-Yorck, Berlin. <strong>Quelle:</strong> <a href="https://www.flickr.com/photos/48146833@N05/8643744925/" target="_blank">Flickr</a>. <strong>Verbreitung</strong> mit CC-Lizenz Namensnennung - Nicht-kommerziell - Keine Bearbeitung 2.0 Generic (<a href="https://creativecommons.org/licenses/by-nc-nd/2.0/deed.de" target="_blank">CC BY-NC-ND 2.0</a>).</p>
<p class="rtejustify"><strong>3. Götz Kubitschek</strong> (* 17. August 1970 in Ravensburg), las Homer im Original und diente als Leutnant in Sarajewo, aber beides ist lange her. Heute ist er Verleger (Verlag Antaios) und verantwortlicher Redakteur der einzigen rechtsintellektuellen Zeitschrift im deutschsprachigen Raum (Sezession). 2008 rief er die konservativ-subversive aktion (ksa) ins Leben, außerdem gehört er zu den Initiatoren der Bürgerinitiative EinProzent. Kubitschek lebt - obgleich in Oberschwaben geboren - seit 16 Jahren mit seiner Frau Ellen Kositza und seinen Kindern auf dem Rittergut Schnellroda in Sachsen-Anhalt und ist gottfroh, den Westen auch geistig hinter sich gelassen zu haben. (<strong>Text:</strong> sezession.de/author/<a href="https://sezession.de/author/goetz-kubitschek" target="_blank">goetz-kubitschek</a>)</p>
<p class="rtejustify"><u>Besuch bei Götz Kubitschek</u> >> FAZ-Artikel "<span style="color:#006600">Die rechten Fäden in der Hand</span>" von Justus Bender und Reinhard Bingener, Schnellroda - Aktualisiert am 16.04.2016 >> <a href="https://www.faz.net/aktuell/politik/inland/zu-besuch-bei-goetz-kubitschek-14180792.html?printPagedArticle=true#pageIndex_0" target="_blank">Artikel</a>.</p>
<p class="rtejustify"><u>Ellen Kositza</u>: "Nebenbei: knallrechts": Ellen Kositza lebt auf einem Rittergut, hat sieben Kinder und gilt als Frontfrau der Neuen Rechten. Sieht so ein nationalistischer Feminismus aus?" >> ZEIT ONLINE, von Mariam Lau, 30. Januar 2018 >> <a href="https://www.zeit.de/2018/05/ellen-kositza-neue-rechte-feminismus-rechte-frauenbewegung/komplettansicht" target="_blank">Artikel</a>.</p>
<p class="rtejustify"><u>Bildbeschreibung</u>: Der rechte Vordenker Götz Kubitschek stachelt seine Gesinnungsgenossen gern auf, so auch am 1.9.2018 in Chemnitz. Ein Freund der Presse ist er eher nicht. <strong>Foto:</strong> ? <strong>Quelle</strong>: Twitter-Account des Fachmagazins "DER RECHTE RAND", 30161 Hannover. Das Fachmagazin »der rechte rand« erscheint seit 1989. Mit journalistischer Sorgfalt berichten wir über die rechte Szene, antidemokratische Strömungen, Neonazis und Schnittstellen zum Konservatismus. Für unser Magazin schreiben aktive AntifaschistInnen, WissenschaftlerInnen und JournalistInnen. >> <a href="https://twitter.com/derrechterand/status/1037296936599072769" target="_blank">Twitter</a> >> <a href="https://www.der-rechte-rand.de/" target="_blank">Webseite</a>.</p>
<p class="rtejustify"><strong>weitere Quelle:</strong> <a href="https://www.flickr.com/photos/hinkelstone/29556186407" target="_blank">Flickr-Account</a> von Karl-Ludwig Poggemann. Dort ist das Foto unter der CC-Lizenz Namensnennung 2.0 Generic (<a href="https://creativecommons.org/licenses/by/2.0/deed.de" target="_blank">CC BY 2.0</a>) gestellt.</p>
<p class="rtejustify"><strong>4.</strong> <img alt="Enno-Stahl-Die-Sprache-der-Neuen-Rechten-Populistische-Rhetorik-und-Strategien-Kritisches-Netzwerk-Aggressivitaet-Rechtsextremismus-Rechtpopulismus-Volksverhetzung" src="/sites/default/files/u17/enno-stahl-die-sprache-der-neuen-rechten-populistische-rhetorik-und-strategien-kritisches-netzwerk-aggressivitaet-rechtsextremismus-rechtpopulismus-volksverhetzung.jpg" style="float:right; height:346px; padding-bottom:5px; padding-left:15px; padding-top:5px; width:220px" /><strong>Buchcover:</strong> "<span style="color:#006600"><strong>Die Sprache der Neuen Rechten. Populistische Rhetorik und Strategien</strong></span>" von Enno Stahl. Alfred Kröner Verlag, Stuttgart. 1. Auflage 2019, Kartonierter Einband (Broschur), 208 Seiten, ISBN 978-3-520-72101-3, Preis: 14,90 € [D]. Das Buch ist ab sofort erhältlich. Die ISBN des E-Books lautet 978-3-520-72191-4, der Preis beträgt 13,99 €. Es handelt sich um ein angereichtertes PDF.</p>
<p class="rtejustify">Eine bedenkliche Aggressivität im verbalen Umgang, eine Abstumpfung gegenüber Gewalt und dem tragischen Schicksal anderer treten immer deutlicher zu Tage – es sind dies Reflexe, die gerade die Politiker und Politikerinnen der Neuen Rechten gerne und ausgiebig bedienen. In Internetforen und sozialen Netzwerken, den »digitalen Stammtischen« von Facebook, Twitter und Co., nehmen die Menschen kein Blatt mehr vor den Mund; zunehmend sind hier brutale, menschenverachtende und volksverhetzende Sprachausfälle zu verzeichnen, die einen angst und bange werden lassen.</p>
<p class="rtejustify">Womöglich ist das rechte Lager bereits dabei, den Boden zu bereiten, auch wenn heute noch nicht so viel auf eine neuerliche Machtübernahme von rechts hinweist. Doch damit rechnete vor 86 Jahren auch niemand. Daher ist es wichtig, die Sprachbilder der Neuen Rechten und die dahinterstehenden Denktraditionen zu dokumentieren und zu durchleuchten. Komplexe Kausalzusammenhänge haben dazu geführt, dass es so weit hat kommen können.</p>
<p class="rtejustify">Dieser Essay möchte einige davon nennen und die Bedingungen analysieren, die diese Entwicklung begünstigten. Was man dagegen tun kann? Der Essay schließt mit einigen Hinweisen zur Strategie im Handeln gegen Rechts. (Klappentext)</p>
<p class="rtejustify">»<strong><span style="color:#006600">Worte können sein wie winzige Arsendosen: sie werden unbemerkt verschluckt, sie scheinen keine Wirkung zu tun, und nach einiger Zeit ist die Giftwirkung doch da.</span></strong>« (Victor Klemperer)</p>
<p class="rtejustify"><strong>5. Björn Höcke</strong>. Der rechtsextreme Flügel mit Björn Höcke an der Spitze versucht die Gemäßigten in den jeweiligen Landesvorständen durch ihm hörige Parteimitglieder und Funktionäre zu ersetzen, das ist mehr als offensichtlich. Auf dem <a class="ext" href="https://de.wikipedia.org/wiki/Der_Fl%C3%BCgel" rel="noopener noreferrer" target="_blank">Kyffhäusertreffen</a> am 06.07.2019 hielt Björn Höcke eine Podiumsrede und drohte offen dem Bundesvorstand der AfD: „<span style="color:#006600">Ich kann euch garantieren, das dieser Bundesvorstand in dieser Zusammensetzung nicht wieder gewählt wird</span>“ <strong>Bild </strong>ohne Namenszug und Logo: sik-life / Felix Lichtenfeld, Jever/Deutschland. <strong>Quelle</strong>: <a href="https://pixabay.com/" target="_blank">Pixabay</a>. Freie kommerzielle Nutzung. Kein Bildnachweis nötig. <a href="https://pixabay.com/de/service/license/" target="_blank">Pixabay Lizenz</a>. . >> <a href="https://pixabay.com/photos/halloween-horror-scary-creepy-2410865/" target="_blank">Bild</a>. <strong>Bildidee:</strong> Helmut Schnug. <strong>Bildbearbeitung:</strong> Wilfried Kahrs (WiKa).</p>
<p class="rtejustify"><strong>6.</strong> <strong>Wahlplakat: AfD - WÄHLT MICH</strong>. Ich verspreche Euch, auch nicht zu stinken!<strong> Grafik:</strong> Dr. Vincent Kluwe-Yorck, Berlin. <strong>Quelle:</strong> <a href="https://www.flickr.com/photos/48146833@N05/25691473041/" target="_blank">Flickr</a>. <strong>Verbreitung</strong> mit CC-Lizenz Namensnennung - Nicht-kommerziell - Keine Bearbeitung 2.0 Generic (<a href="https://creativecommons.org/licenses/by-nc-nd/2.0/deed.de" target="_blank">CC BY-NC-ND 2.0</a>).</p>
<p class="rtejustify"><strong>7. GEGEN die ALTERNATIVE FÜR DEUTSCHLAND. </strong>Libertè Ègalitè FckAfDè.</p>
<p class="rtejustify"><strong><span style="color:#663300">8. GEGEN #RECHTSPOPULISMUS.</span> Grafik: </strong>Wilfried Kahrs (WiKa).</p>
<p class="rtejustify"><strong>9.</strong> <strong>Buchcover:</strong> "<span style="color:#006600"><strong>Die Sprache der Neuen Rechten. Populistische Rhetorik und Strategien</strong></span>" von Enno Stahl. Alfred Kröner Verlag, Stuttgart. 1. Auflage 2019, Kartonierter Einband (Broschur), 208 Seiten, Erscheinungsdatum: 16.09.2019, ISBN 978-3-520-72101-3, Preis: 14,90 € [D]. Die ISBN des E-Books lautet 978-3-520-72191-4, der Preis beträgt 13,99 €. Es handelt sich um ein angereichtertes PDF.</p>
</div></div></div><div class="field field-name-upload field-type-file field-label-hidden"><div class="field-items"><div class="field-item even"><div class="table-responsive">
<table class="table table-hover table-striped sticky-enabled">
<thead><tr><th>Anhang</th><th>Größe</th> </tr></thead>
<tbody>
<tr><td><span class="file"><img class="file-icon" alt="PDF Icon" title="application/pdf" src="/modules/file/icons/application-pdf.png" /> <a href="https://kritisches-netzwerk.de/sites/default/files/ifs_-_inhaltliche_themenfelder_und_arbeitsgebiete_des_instituts_fuer_staatspolitik.pdf" type="application/pdf; length=375273" title="ifs_-_inhaltliche_themenfelder_und_arbeitsgebiete_des_instituts_fuer_staatspolitik.pdf">IfS - Inhaltliche Themenfelder und Arbeitsgebiete des Instituts für Staatspolitik</a></span></td><td>366.48 KB</td> </tr>
<tr><td><span class="file"><img class="file-icon" alt="PDF Icon" title="application/pdf" src="/modules/file/icons/application-pdf.png" /> <a href="https://kritisches-netzwerk.de/sites/default/files/afd_-_die_erfurter_resolution_-_wortlaut_und_erstunterzeichner_-_maerz_2015.pdf" type="application/pdf; length=64061" title="afd_-_die_erfurter_resolution_-_wortlaut_und_erstunterzeichner_-_maerz_2015.pdf">AfD - Die Erfurter Resolution - Wortlaut und Erstunterzeichner - März 2015</a></span></td><td>62.56 KB</td> </tr>
<tr><td><span class="file"><img class="file-icon" alt="PDF Icon" title="application/pdf" src="/modules/file/icons/application-pdf.png" /> <a href="https://kritisches-netzwerk.de/sites/default/files/ifs_-_anmeldeformular_und_programmablauf_fuer_die_20_sommerakademie_2019_im_institut_fuer_staatspolitik_in_schnellroda.pdf" type="application/pdf; length=1328717" title="ifs_-_anmeldeformular_und_programmablauf_fuer_die_20_sommerakademie_2019_im_institut_fuer_staatspolitik_in_schnellroda.pdf">IfS - Anmeldeformular und Programmablauf für die 20. Sommerakademie 2019 im Institut für Staatspolitik in Schnellroda</a></span></td><td>1.27 MB</td> </tr>
<tr><td><span class="file"><img class="file-icon" alt="PDF Icon" title="application/pdf" src="/modules/file/icons/application-pdf.png" /> <a href="https://kritisches-netzwerk.de/sites/default/files/ifs_-_goetz_kubitschek_ueber_den_wechsel_der_leitung_des_ifs_als_kommentar_in_der_hauseigenen_zeitschrift_sezession_-_heft_26_-_oktober_2008_-_seite_56.pdf" type="application/pdf; length=6328420" title="ifs_-_goetz_kubitschek_ueber_den_wechsel_der_leitung_des_ifs_als_kommentar_in_der_hauseigenen_zeitschrift_sezession_-_heft_26_-_oktober_2008_-_seite_56.pdf">Götz Kubitschek über den Wechsel der Leitung des IfS als Kommentar in der hauseig. Zeitschrift Sezession, Heft 26, 10/2008, S 56</a></span></td><td>6.04 MB</td> </tr>
<tr><td><span class="file"><img class="file-icon" alt="PDF Icon" title="application/pdf" src="/modules/file/icons/application-pdf.png" /> <a href="https://kritisches-netzwerk.de/sites/default/files/netzpolitik_org_-_verfassungsschutz-gutachten_zur_afd_-_januar_2019_2.pdf" type="application/pdf; length=3629656" title="netzpolitik_org_-_verfassungsschutz-gutachten_zur_afd_-_januar_2019.pdf">Netzpolitik org - Verfassungsschutz-Gutachten zur AfD - Januar 2019</a></span></td><td>3.46 MB</td> </tr>
</tbody>
</table>
</div>
</div></div></div><div class="field field-name-field-tags field-type-taxonomy-term-reference field-label-inline clearfix"><div class="field-label">Tags: </div><div class="field-items"><div class="field-item even"><a href="/tags/afd" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">AfD</a></div><div class="field-item odd"><a href="/tags/alternative-fur-deutschland" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Alternative für Deutschland</a></div><div class="field-item even"><a href="/tags/aufbruch-deutscher-patrioten" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Aufbruch deutscher Patrioten</a></div><div class="field-item odd"><a href="/tags/bjorn-hocke" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Björn Höcke</a></div><div class="field-item even"><a href="/tags/blaue-narzisse" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Blaue Narzisse</a></div><div class="field-item odd"><a href="/tags/burschenschaften" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Burschenschaften</a></div><div class="field-item even"><a href="/tags/casapound-italia" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">CasaPound Italia</a></div><div class="field-item odd"><a href="/tags/compact" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">COMPACT</a></div><div class="field-item even"><a href="/tags/deutsche-volksunion" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Deutsche Volksunion</a></div><div class="field-item odd"><a href="/tags/deutschtum" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Deutschtum</a></div><div class="field-item even"><a href="/tags/eichkogl" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Eichkögl</a></div><div class="field-item odd"><a href="/tags/ellen-kositza" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Ellen Kositza</a></div><div class="field-item even"><a href="/tags/enno-stahl" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Enno Stahl</a></div><div class="field-item odd"><a href="/tags/erfurter-resolution" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Erfurter Resolution</a></div><div class="field-item even"><a href="/tags/erik-lehnert" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Erik Lehnert</a></div><div class="field-item odd"><a href="/tags/ethnopluralismus" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Ethnopluralismus</a></div><div class="field-item even"><a href="/tags/freibund" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Freibund</a></div><div class="field-item odd"><a href="/tags/fremdenfeindlichkeit" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Fremdenfeindlichkeit</a></div><div class="field-item even"><a href="/tags/fremdenhass" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Fremdenhass</a></div><div class="field-item odd"><a href="/tags/gotz-kubitschek" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Götz Kubitschek</a></div><div class="field-item even"><a href="/tags/hackher-zentrum" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Hackher-Zentrum</a></div><div class="field-item odd"><a href="/tags/harald-weyel" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Harald Weyel</a></div><div class="field-item even"><a href="/tags/heinrich-sickl" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Heinrich Sickl</a></div><div class="field-item odd"><a href="/tags/herbstakademie" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Herbstakademie</a></div><div class="field-item even"><a href="/tags/hocke-flugel" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Höcke-Flügel</a></div><div class="field-item odd"><a href="/tags/identitare-bewegung" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Identitäre Bewegung</a></div><div class="field-item even"><a href="/tags/ideologie-und-strategiebildung" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Ideologie- und Strategiebildung</a></div><div class="field-item odd"><a href="/tags/ifs" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">IFS</a></div><div class="field-item even"><a href="/tags/institut-fur-staatspolitik" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Institut für Staatspolitik</a></div><div class="field-item odd"><a href="/tags/intellektualisierung" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Intellektualisierung</a></div><div class="field-item even"><a href="/tags/junge-alternative" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Junge Alternative</a></div><div class="field-item odd"><a href="/tags/junge-freiheit" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Junge Freiheit</a></div><div class="field-item even"><a href="/tags/kameradschaften" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Kameradschaften</a></div><div class="field-item odd"><a href="/tags/karlheinz-weissmann" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Karlheinz Weißmann</a></div><div class="field-item even"><a href="/tags/konditionierung" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Konditionierung</a></div><div class="field-item odd"><a href="/tags/konservativ-subversive-aktion" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Konservativ-Subversive Aktion</a></div><div class="field-item even"><a href="/tags/nazismus" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Nazismus</a></div><div class="field-item odd"><a href="/tags/neofaschisten" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Neofaschisten</a></div><div class="field-item even"><a href="/tags/neonazis" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Neonazis</a></div><div class="field-item odd"><a href="/tags/neonazismus" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Neonazismus</a></div><div class="field-item even"><a href="/tags/neue-rechte" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Neue Rechte</a></div><div class="field-item odd"><a href="/tags/neurechte-bildungsarbeit" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">neurechte Bildungsarbeit</a></div><div class="field-item even"><a href="/tags/npd" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">NPD</a></div><div class="field-item odd"><a href="/tags/patriotismus" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Patriotismus</a></div><div class="field-item even"><a href="/tags/pegida" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">PEGIDA</a></div><div class="field-item odd"><a href="/tags/politische-elite" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">politische Elite</a></div><div class="field-item even"><a href="/tags/preussische-allgemeine-zeitung" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Preußische Allgemeine Zeitung</a></div><div class="field-item odd"><a href="/tags/rechtsaussenpartei" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Rechtsaußenpartei</a></div><div class="field-item even"><a href="/tags/rechtsextremismus" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Rechtsextremismus</a></div><div class="field-item odd"><a href="/tags/rechtsextremisten" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Rechtsextremisten</a></div><div class="field-item even"><a href="/tags/rechtskonservatismus" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Rechtskonservatismus</a></div><div class="field-item odd"><a href="/tags/schnellroda" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Schnellroda</a></div><div class="field-item even"><a href="/tags/sezession" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Sezession</a></div><div class="field-item odd"><a href="/tags/steigra" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Steigra</a></div><div class="field-item even"><a href="/tags/verflechtungen" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Verflechtungen</a></div><div class="field-item odd"><a href="/tags/verlag-antaios" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Verlag Antaios</a></div><div class="field-item even"><a href="/tags/volkische-ideologie" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">völkische Ideologie</a></div><div class="field-item odd"><a href="/tags/volkischer-nationalismus" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Völkischer Nationalismus</a></div><div class="field-item even"><a href="/tags/volksbewusstsein" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Volksbewusstsein</a></div><div class="field-item odd"><a href="/tags/weimarer-republik" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Weimarer Republik</a></div></div></div> </div>
</div>
</div>
<div class="forum-post-footer clearfix">
<div class="forum-jump-links">
<a href="#forum-topic-top" title="Zum Seitenanfang springen" class="af-button-small"><span>Oben</span></a>
</div>
<div class="forum-post-links">
<ul class="links list-inline"><li class="print_html first"><a href="/print/8125" title="Druckoptimierte Version dieser Seite anzeigen." class="print-page" onclick="window.open(this.href); return false" rel="nofollow"><img class="print-icon img-responsive" typeof="foaf:Image" src="https://kritisches-netzwerk.de/sites/all/modules/print/icons/print_icon.png" width="16px" height="16px" alt="Druckversion" title="Druckversion" /></a></li>
<li class="print_pdf"><a href="/printpdf/8125" title="Eine PDF-Version dieser Seite anzeigen." class="print-pdf" onclick="window.open(this.href); return false" rel="nofollow"><img class="print-icon img-responsive" typeof="foaf:Image" src="https://kritisches-netzwerk.de/sites/all/modules/print/print_pdf/icons/pdf_icon.png" width="16px" height="16px" alt="PDF version" title="PDF version" /></a></li>
<li class="comment_forbidden last"><span>Zum Verfassen von Kommentaren bitte <a href="/user/login?destination=comment/reply/8125%23comment-form">Anmelden</a> oder <a href="/user/register?destination=comment/reply/8125%23comment-form">Registrieren</a>.</span></li>
</ul> </div>
</div>
</div>
<div id="forum-comments" class="comment-wrapper">
<a id="comment-2223"></a>
<div id="post-2223" class="forum-post clearfix de posted-by-4319" about="/comment/2223#comment-2223" typeof="sioc:Post sioct:Comment">
<div class="forum-post-info clearfix">
<div class="forum-posted-on">
12. August 2019 - 17:55
</div>
<span class="forum-post-number"><a href="/comment/2223#comment-2223" class="permalink" rel="bookmark">#2</a></span>
</div>
<div class="forum-post-wrapper">
<div class="forum-post-panel-sub">
<div class="author-pane clearfix">
<div class="author-pane-inner">
<div class="picture">
<img typeof="foaf:Image" class="img-responsive" src="https://kritisches-netzwerk.de/sites/default/files/pictures/picture-4319-1557229363.jpg" alt="Bild des Benutzers Pandora" title="Bild des Benutzers Pandora" /> </div>
<div class="author-pane-section author-pane-section-1">
<div class="author-pane-line author-name">
<span class="username" xml:lang="" about="/users/pandora" typeof="sioc:UserAccount" property="foaf:name" datatype="">Pandora</span> </div>
<div class="author-pane-line author-offline">
Offline </div>
</div>
<div class="author-pane-section author-pane-section-2">
<div class="author-pane-line author-joined">
<span class="author-pane-label">Beigetreten:</span> 07.05.2019 - 12:14 </div>
</div>
<div class="author-pane-section author-pane-contact">
</div>
<div class="author-pane-section author-pane-admin">
</div>
</div>
</div>
</div>
<div class="forum-post-panel-main clearfix">
<div class="forum-post-title">
Alternative für Ostdeutschland – brauchen wir neue Mauern? </div>
<div class="forum-post-content">
<span rel="sioc:reply_of" resource="/forum/goetz-kubitschek-und-das-institut-fuer-staatspolitik" class="rdf-meta element-hidden"></span><div class="field field-name-comment-body field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p class="rtecenter"><br /><span style="color:#990000"><span style="font-size:24px"><strong>Alternative für Ostdeutschland – brauchen wir neue Mauern?</strong></span></span></p>
<p class="rtejustify">Ostdeutschland und die Alternative für Deutschland (AfD) werden derzeit meist in einem Atemzug genannt. Die etablierten Parteien zittern förmlich vor einem Ergebnis, dass sie fürchten aber kaum noch verhindern können.</p>
<p class="rtejustify">In Sachsen, Brandenburg und Thüringen wird es einen heißen Herbst geben. Glaubt man den aktuellen Prognosen, so kann die AfD im Osten weiter zulegen und erreicht derzeit 24% der Stimmen, vor der CDU 22%, den Linken 16%, SPD 12%, Grüne 11% und der FDP 7%. (> <a href="https://www.welt.de/politik/deutschland/article198309855/Vor-Landtagswahlen-in-Sachsen-und-Brandenburg-AfD-legt-weiter-zu.html" target="_blank">WeLT-Artikel</a> v. 11.08.2019)</p>
<p class="rtejustify">In Sachsen und Brandenburg finden die Wahlen bereits am 01. September statt. Etwas später, am 27. Oktober wird in Thüringen gewählt.</p>
<p class="rtejustify">Warum sind gerade in Ostdeutschland die Sympathiewerte für die AfD so hoch? Viele Westdeutsche wünschen sich inzwischen die Mauer zurück und bezichtigen die Ostdeutschen nach 30 Jahren gar der Undankbarkeit. Die Polarisierung zwischen Ost und West war in den letzten Jahren wohl nie so groß, wie gerade jetzt. Andererseits haben sich viele Westdeutsche jahrelang gar nicht für das Schicksal ihrer Landsleute interessiert. Man bezahlt ja den Solidaritätszuschlag (übrigens auch die Ostdeutschen) und das muss reichen.</p>
<p class="rtejustify">Betrachten wir es erst einmal nüchtern. 76% der Ostdeutschen würden nach den Prognosen nicht die AfD wählen, also die übergroße Mehrheit. Pauschalisierungen sind also völlig fehl am Platz und die Mauer kann unten bleiben.</p>
<p class="rtejustify">Dennoch verbleibt fast ein Viertel der Wähler im Osten, die meist aus Protest, die AfD wählen.</p>
<p class="rtejustify">Machen wir uns doch einmal auf die Suche, nach den möglichen Ursachen. Hierbei hilft mir meine eigene Biografie, denn schließlich habe ich selbst 33 Jahre DDR erlebt.</p>
<p class="rtejustify">Anders, als in der „alten BRD“ gibt es immer noch keine gewachsene Parteien Bindung im Osten. Im Westen wuchs diese, mit Ausnahme zu den Grünen, bereits seit Ende der 1940iger Jahre stetig.</p>
<p class="rtejustify">So ist es im Osten eher normal, seine Stimme, je nach Stimmung, auch einer anderen Partei zu geben. Das Wahlrecht wird im Osten besonders damit verbunden, aus einer Vielfalt unterschiedlicher Parteien auswählen zu können. Bis 1989 hatten die DDR-Bürger nur die Wahl von Parteien im „Block“. Also eine vorgegebene Zusammensetzung der Parlamente, unter der festgeschriebenen Führung der Sozialistischen Einheitspartei Deutschlands (<a href="https://de.wikipedia.org/wiki/Sozialistische_Einheitspartei_Deutschlands" target="_blank">SED</a>). Die sogenannten Blockparteien, Christlich Demokratische Union (Ost-CDU oder auch <a href="https://de.wikipedia.org/wiki/Christlich-Demokratische_Union_Deutschlands_(DDR)" target="_blank">CDUD</a>), Liberal-Demokratische Partei Deutschlands (<a href="https://de.wikipedia.org/wiki/Liberal-Demokratische_Partei_Deutschlands" target="_blank">LDPD</a>), National-Demokratische Partei Deutschlands (<a href="https://de.wikipedia.org/wiki/National-Demokratische_Partei_Deutschlands" target="_blank">NDPD</a>) und Demokratische Bauernpartei Deutschlands (<a href="https://de.wikipedia.org/wiki/Demokratische_Bauernpartei_Deutschlands" target="_blank">DBD</a>) hatten sich längst der führenden Rolle der SED untergeordnet und waren quasi nur deren Erfüllungsgehilfen. Eine echte freie demokratische Wahl gab es also nicht.</p>
<p class="rtejustify">In Zeiten, wo sich die etablierten Parteien kaum noch voneinander unterscheiden, ist die Suche nach einer „Alternative“ schwer. Die CDU gibt sich sozialer, als die SPD und grüner, als die Grünen, die SPD flirtet mit der Linkspartei und die Grünen können selbst Kriegseinsätzen in der NATO Sympathien abgewinnen. Wenn Parteien sich nicht mehr klar voneinander abgrenzen, ist es schwierig eigene Präferenzen zu finden, die die Auswahl erleichtern. Inzwischen hat der Streit um Posten und Pöstchen und nicht mehr um die Sachpolitik, oftmals größere Priorität bei den Altparteien. Das fördert nicht gerade das Vertrauen in unsere Politiker.</p>
<p class="rtejustify">Nur die AfD greift offen die Regierungspolitik und die anderen etablierten Parteien an und steht für eine völlig andere Politik. Die Besinnung auf das „Nationale“, weckt im Osten eher positive Gefühle. 40 Jahre lang wurde den Ostdeutschen alles Nationale genommen, die DDR war eben nicht Deutschland, sie war der Vasallenstaat von Moskaus Gnaden, besetzt von Sowjetischen Truppen und einer aufgezwungenen Deutsch-Sowjetischen Freundschaft.</p>
<p class="rtejustify">In der Zeit der friedlichen Revolution 1989 wurde aus den Rufen „Wir sind das Volk“ schnell „Wir sind ein Volk“. Die meisten hatten schon immer das innere Gefühl der Zusammengehörigkeit unserer Nation und wollten diesen unnatürlichen Zustand endlich überwinden.</p>
<p class="rtejustify">Und ja, ganz klar, die Mehrheit hat bei der ersten freien Volkskammerwahl den Weg für eine Vereinigung freigemacht. Nichts geschah mehr gegen den Willen des Volkes.</p>
<p class="rtejustify">Der Freiheitsdrang, sich nicht mehr denen da „Oben“ beugen zu müssen, wurde im Osten zum bestimmenden Gefühl und erschwert bis heute die Bindung an nur eine Partei. Insofern ist der Drang nach Unabhängigkeit und Bewahrung konservativer Werte im Osten viel stärker, als im Westen.</p>
<p class="rtejustify">Mit dem Mauerfall veränderte sich in Ostdeutschland über Nacht alles. Nicht nur die alten Machthaber hatten nichts mehr zu sagen. Das gesamte politische, wirtschaftliche, kulturelle, Währungs- und Bündnissystem änderten sich in ganz kurzer Zeit. Die bisherigen Biografien wurden oft wertlos und erforderten einen großen Kraftakt, bei der Integration in die neue Bundesrepublik und ihre Ordnung. Dabei gab es wenige Gewinner aber viele Verlierer, die sich noch heute abgehängt fühlen und deshalb auf Distanz zu den Altparteien gehen.</p>
<p class="rtejustify">Von den Linken hatte man, nach 40 Jahren Sozialismus im Osten genug und die Bundesdeutschen Politik erfüllte oft nicht die Erwartungen. In dieser Stimmungslage haben es rechte Kräfte leicht, sich als Erlöser zu präsentieren. Es ist kein Zufall, dass die „alten Rechten“ Westdeutschlands, schnell in Ostdeutschland fruchtbaren Boden vorfanden. Die Landesvorsitzenden der AfD in Brandenburg, Andreas Kalbitz (* 17. November 1972 in München) und Thüringen, Björn Höcke (* 1. April 1972 in Lünen), sind ein gutes Beispiel dafür, wie die Unterwanderung der Ostdeutschen, durch Rechte aus dem Westen gelang. Gerade diese bilden heute den sogenannten „Flügel“ in der AfD und vertreten oft Rechtsextreme Positionen. Inzwischen ist ihre Macht innerhalb der AfD so stark, dass es nur noch eine Frage der Zeit ist, bis sie die gemäßigten konservativen Kräfte innerhalb der Partei verdrängt haben werden.</p>
<p class="rtejustify">Das erstarken rechter Kräfte ist also das gemeinsame Werk von Ost und West und nur gemeinsam kann man das Problem auch lösen. Dazu gehört vor allem auch, dass Parteien wieder voneinander zu unterscheiden sind. Die CDU muss die konservativen Wähler binden und die SPD ihre soziale Kompetenz in den Vordergrund stellen. Nur dann sind sie für den Wähler, in ihrer Unterschiedlichkeit wieder zu erkennen.</p>
<p class="rtejustify">Im Westen scheinen die Grünen die Rolle zu übernehmen, für eine andere Politik zu stehen. Auch der Populismus dieser Partei ist nicht viel anders, als der der AfD, nur dass der Flüchtling hier Klima heißt.</p>
<p class="rtejustify">Die Sozialisierungsprozesse im Osten, können nur von einer klugen gesamtdeutschen Politik positiv beeinflusst werden.</p>
<p class="rtejustify">Wir brauchen keine neuen Mauern, aber neue Ideen für Deutschland.</p>
<p class="rtejustify">Bernd Volkmer</p>
</div></div></div> </div>
<div class="author-signature">
<p>Der Kitt, der eine Gesellschaft zusammen hält, ist Identität, Sprache, Kultur, Freiheit, Werte, Gerechtigkeit und die Geschichte dieser Nation.</p>
</div>
</div>
</div>
<div class="forum-post-footer clearfix">
<div class="forum-jump-links">
<a href="#forum-topic-top" title="Zum Seitenanfang springen" class="af-button-small"><span>Oben</span></a>
</div>
<div class="forum-post-links">
<ul class="links list-inline"><li class="comment_forbidden first last"><span>Zum Verfassen von Kommentaren bitte <a href="/user/login?destination=comment/reply/8125%23comment-form">Anmelden</a> oder <a href="/user/register?destination=comment/reply/8125%23comment-form">Registrieren</a>.</span></li>
</ul> </div>
</div>
</div>
Zum Verfassen von Kommentaren bitte <a href="/user/login?destination=comment/reply/8125%23comment-form">Anmelden</a> oder <a href="/user/register?destination=comment/reply/8125%23comment-form">Registrieren</a>. </div>
</section>
</div>
</section>
</div>
</div>
<footer class="footer container">
<div class="region region-footer">
<section id="block-shariff-shariff-block" class="block block-shariff clearfix">
<div class="shariff" data-services="["twitter","facebook","pinterest","vk","whatsapp","tumblr","reddit","mail"]" data-theme="colored" data-orientation="horizontal" data-mail-url="mailto:" data-lang="de"></div>
</section>
<section id="block-user-online" class="block block-user clearfix">
<h2 class="block-title">Wer ist online</h2>
<p>Zurzeit sind 0 Benutzer online.</p>
</section>
</div>
</footer>
</div> <script src="https://kritisches-netzwerk.de/sites/default/files/js/js_L8uCISpdIalUqi4wNm3dCYgrtsmqrMyhwEK7F0rh8A0.js"></script>
<script src="https://kritisches-netzwerk.de/sites/default/files/js/js_MRdvkC2u4oGsp5wVxBG1pGV5NrCPW3mssHxIn6G9tGE.js"></script>
</body>
</html>
| 160.478571 | 9,605 | 0.759414 |
bd5eadb44427fcbd9e12fc599319e50db30babe2 | 592 | kt | Kotlin | _lifecycle-handler/lifecycle-handler-lint/src/test/java/io/androidalatan/lifecycle/handler/lint/TestUtils.kt | SeongUgJung/LifecycleComponents | c8859299738fd901d5e71cca2f96323b669eb3a2 | [
"MIT"
] | null | null | null | _lifecycle-handler/lifecycle-handler-lint/src/test/java/io/androidalatan/lifecycle/handler/lint/TestUtils.kt | SeongUgJung/LifecycleComponents | c8859299738fd901d5e71cca2f96323b669eb3a2 | [
"MIT"
] | null | null | null | _lifecycle-handler/lifecycle-handler-lint/src/test/java/io/androidalatan/lifecycle/handler/lint/TestUtils.kt | SeongUgJung/LifecycleComponents | c8859299738fd901d5e71cca2f96323b669eb3a2 | [
"MIT"
] | null | null | null | package io.androidalatan.lifecycle.handler.lint
object TestUtils {
fun annotationClass(): String {
return """
package io.androidalatan.lifecycle.handler.annotations.async
annotation class StartedToStop
"""
}
fun rxJavaInterface(): String {
return """
package io.reactivex.rxjava3.core
interface Observable<T>
"""
}
fun coroutineInterface(): String {
return """
package kotlinx.coroutines.flow
interface Flow<T>
"""
}
} | 20.413793 | 72 | 0.545608 |
f50c878958fe2fbb5e322093c065b534cdc0b119 | 394 | hpp | C++ | tools/manager/src/app_mode_installer.hpp | SleepKiller/shaderpatch | 4bda848df0273993c96f1d20a2cf79161088a77d | [
"MIT"
] | 13 | 2019-03-25T09:40:12.000Z | 2022-03-13T16:12:39.000Z | tools/manager/src/app_mode_installer.hpp | SleepKiller/shaderpatch | 4bda848df0273993c96f1d20a2cf79161088a77d | [
"MIT"
] | 110 | 2018-10-16T09:05:43.000Z | 2022-03-16T23:32:28.000Z | tools/manager/src/app_mode_installer.hpp | SleepKiller/swbfii-shaderpatch | b49ce3349d4dd09b19237ff4766652166ba1ffd4 | [
"MIT"
] | 1 | 2020-02-06T20:32:50.000Z | 2020-02-06T20:32:50.000Z | #pragma once
#include "framework.hpp"
#include "app_ui_mode.hpp"
auto make_app_mode_installer(winrt::Windows::UI::Xaml::Hosting::DesktopWindowXamlSource xaml_source)
-> std::unique_ptr<app_ui_mode>;
auto make_app_mode_installer_with_selected_path(
winrt::Windows::UI::Xaml::Hosting::DesktopWindowXamlSource xaml_source,
std::filesystem::path path) -> std::unique_ptr<app_ui_mode>;
| 30.307692 | 100 | 0.786802 |
2f043537e9be83e5a1bd3f1f11a16b50e172772a | 447 | java | Java | validator-core/src/test/java/com/github/microtweak/validator/conditional/bean/Product.java | microtweak/conditional-validator | 51d454c0ff3fc2d673bf76c4141f468e73c9c12a | [
"MIT"
] | 1 | 2021-11-11T21:35:41.000Z | 2021-11-11T21:35:41.000Z | validator-core/src/test/java/com/github/microtweak/validator/conditional/bean/Product.java | microtweak/conditional-validator | 51d454c0ff3fc2d673bf76c4141f468e73c9c12a | [
"MIT"
] | 2 | 2019-09-29T22:02:43.000Z | 2020-06-25T19:51:17.000Z | validator-core/src/test/java/com/github/microtweak/validator/conditional/bean/Product.java | microtweak/conditional-validator | 51d454c0ff3fc2d673bf76c4141f468e73c9c12a | [
"MIT"
] | 1 | 2021-11-12T13:02:36.000Z | 2021-11-12T13:02:36.000Z | package com.github.microtweak.validator.conditional.bean;
import com.github.microtweak.validator.conditional.core.ConditionalValidate;
import com.github.microtweak.validator.conditional.core.constraint.NotEmptyWhen;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
@ConditionalValidate
public class Product {
protected boolean applyValidation;
@NotEmptyWhen(expression = "applyValidation")
private String description;
} | 24.833333 | 80 | 0.818792 |
dbdd3ce9c249e144d52bd550e114bfb9b872ed9d | 248 | asm | Assembly | programs/oeis/317/A317095.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/317/A317095.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/317/A317095.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A317095: a(n) = 40*n.
; 0,40,80,120,160,200,240,280,320,360,400,440,480,520,560,600,640,680,720,760,800,840,880,920,960,1000,1040,1080,1120,1160,1200,1240,1280,1320,1360,1400,1440,1480,1520,1560,1600,1640,1680,1720,1760,1800,1840,1880
mul $0,40
| 49.6 | 212 | 0.729839 |
88ef4623f820ddd4cdb82fb5b5fbc3ee4ace413e | 2,152 | lua | Lua | build/generated/sources/zdoc/media/lua/shared/Library/MovableRecipe.lua | cocolabs/pz-liquid-overhaul | 54d0a0ee8e5ef84e0e3be2333b89221356a324b9 | [
"MIT"
] | null | null | null | build/generated/sources/zdoc/media/lua/shared/Library/MovableRecipe.lua | cocolabs/pz-liquid-overhaul | 54d0a0ee8e5ef84e0e3be2333b89221356a324b9 | [
"MIT"
] | 2 | 2021-07-07T20:55:51.000Z | 2021-07-09T04:31:12.000Z | build/generated/sources/zdoc/media/lua/shared/Library/MovableRecipe.lua | cocolabs/pz-liquid-overhaul | 54d0a0ee8e5ef84e0e3be2333b89221356a324b9 | [
"MIT"
] | null | null | null | ---@class MovableRecipe : zombie.scripting.objects.MovableRecipe
---@field private isValid boolean
---@field private worldSprite String
---@field private xpPerk PerkFactory.Perk
---@field private primaryTools Recipe.Source
---@field private secondaryTools Recipe.Source
MovableRecipe = {}
---@public
---@param arg0 boolean
---@return void
function MovableRecipe:setValid(arg0) end
---@public
---@param arg0 String
---@return void
function MovableRecipe:setProp1(arg0) end
---@public
---@return boolean
function MovableRecipe:isValid() end
---@public
---@return boolean
function MovableRecipe:hasXpPerk() end
---@public
---@param arg0 String
---@param arg1 int
---@return void
function MovableRecipe:setResult(arg0, arg1) end
---@public
---@param arg0 String
---@return void
function MovableRecipe:setOnCreate(arg0) end
---@public
---@param arg0 float
---@return void
function MovableRecipe:setTime(arg0) end
---@public
---@param arg0 String
---@return void
function MovableRecipe:setWorldSprite(arg0) end
---@public
---@param arg0 String
---@return void
function MovableRecipe:setName(arg0) end
---@public
---@param arg0 String
---@return void
function MovableRecipe:setOnXP(arg0) end
---@public
---@return String
function MovableRecipe:getWorldSprite() end
---@public
---@param arg0 String
---@return void
function MovableRecipe:setCategory(arg0) end
---@public
---@param arg0 String
---@return void
function MovableRecipe:setProp2(arg0) end
---@public
---@return PerkFactory.Perk
function MovableRecipe:getXpPerk() end
---@public
---@return Recipe.Source
function MovableRecipe:getPrimaryTools() end
---@public
---@return Recipe.Source
function MovableRecipe:getSecondaryTools() end
---@public
---@param arg0 PerkFactory.Perk
---@param arg1 int
---@return void
function MovableRecipe:setRequiredSkill(arg0, arg1) end
---@public
---@param arg0 String
---@return void
function MovableRecipe:setSource(arg0) end
---@public
---@param arg0 PerkFactory.Perk
---@return void
function MovableRecipe:setXpPerk(arg0) end
---@public
---@param arg0 String
---@param arg1 boolean
---@return void
function MovableRecipe:setTool(arg0, arg1) end
| 20.495238 | 64 | 0.743959 |
80dbb6b68c3bacf9e897866b00bc023ed4302494 | 1,026 | java | Java | Tugas/src/Tugas08DiskonBelanja/Tugas08DiskonBelanja.java | AdamArthurFaizal/Belajar-Java | ca16ba1f90e19f50d3993160d82338b18860149c | [
"Apache-2.0"
] | 4 | 2019-12-10T07:10:31.000Z | 2019-12-30T11:41:14.000Z | Tugas/src/Tugas08DiskonBelanja/Tugas08DiskonBelanja.java | AdamArthurF/Belajar-Java | ca16ba1f90e19f50d3993160d82338b18860149c | [
"Apache-2.0"
] | null | null | null | Tugas/src/Tugas08DiskonBelanja/Tugas08DiskonBelanja.java | AdamArthurF/Belajar-Java | ca16ba1f90e19f50d3993160d82338b18860149c | [
"Apache-2.0"
] | 1 | 2019-12-11T02:15:47.000Z | 2019-12-11T02:15:47.000Z | /*
* Copyright (c) 2020. Adam Arthur Faizal
*/
package Tugas08DiskonBelanja;
import java.util.*;
public class Tugas08DiskonBelanja {
public static void main(String[] MbahPutih) {
Scanner inputUser;
inputUser = new Scanner(System.in);
double diskon,belanja,bayar;
System.out.print("Belanja nya habis berapa? ");
belanja = inputUser.nextDouble();
if (belanja >= 100000){
diskon = 0.10;
System.out.println("Wah kamu dapet diskon 10%");
bayar = (belanja) - (belanja * diskon);
System.out.println("Jadi total pembayaran = " + bayar + " rupiah" );
} else if ((belanja >= 50000) && (belanja < 100000)){
diskon = 0.05;
System.out.println("Wah kamu dapet diskon 5%");
bayar = (belanja) - (belanja * diskon);
System.out.println("Jadi total pembayaran = " + bayar + " rupiah");
} else {
System.out.println("Wah kamu engga dapet diskon");
}
}
} | 33.096774 | 80 | 0.570175 |
0bcee4c7f1f02f774dd396ac95c346f6030edad2 | 406 | kt | Kotlin | grave/src/main/kotlin/com/tombspawn/models/slack/Confirm.kt | aman400/tombspawn | 1b32d6a24ddb397cc04ee2149ce00ab067262d5f | [
"Apache-2.0"
] | 1 | 2020-03-26T16:34:01.000Z | 2020-03-26T16:34:01.000Z | grave/src/main/kotlin/com/tombspawn/models/slack/Confirm.kt | aman400/tombspawn | 1b32d6a24ddb397cc04ee2149ce00ab067262d5f | [
"Apache-2.0"
] | 1 | 2020-02-18T05:52:14.000Z | 2020-02-18T05:52:14.000Z | grave/src/main/kotlin/com/tombspawn/models/slack/Confirm.kt | aman400/tombspawn | 1b32d6a24ddb397cc04ee2149ce00ab067262d5f | [
"Apache-2.0"
] | null | null | null | package com.tombspawn.models.slack
import com.google.gson.annotations.SerializedName
data class Confirm(
@SerializedName("text")
var text: String? = null,
@SerializedName("ok_text")
var okText: String? = null,
@SerializedName("dismiss_text")
var dismissText: String? = null,
@SerializedName("title")
var title: String? = null
)
fun confirm(block: Confirm.() -> Unit) = Confirm().apply(block) | 20.3 | 63 | 0.726601 |
0f385b356fe488c55651c8fe2175385a62965e4f | 5,916 | hh | C++ | server/modules/filter/cache/storage/storagemodule.hh | tut-blog/MaxScale | cabd6dba0665cb8025c694acf98cffaa68d10de0 | [
"MIT"
] | null | null | null | server/modules/filter/cache/storage/storagemodule.hh | tut-blog/MaxScale | cabd6dba0665cb8025c694acf98cffaa68d10de0 | [
"MIT"
] | 1 | 2019-07-02T09:59:27.000Z | 2019-07-02T09:59:49.000Z | server/modules/filter/cache/storage/storagemodule.hh | tut-blog/MaxScale | cabd6dba0665cb8025c694acf98cffaa68d10de0 | [
"MIT"
] | null | null | null | /*
* Copyright (c) 2018 MariaDB Corporation Ab
*
* Use of this software is governed by the Business Source License included
* in the LICENSE.TXT file and at www.mariadb.com/bsl11.
*
* Change Date: 2022-01-01
*
* On the date above, in accordance with the Business Source License, use
* of this software will be governed by version 2 or later of the General
* Public License.
*/
#pragma once
#include <maxscale/ccdefs.hh>
template<class StorageType>
class StorageModule
{
public:
static bool initialize(uint32_t* pCapabilities)
{
return StorageType::Initialize(pCapabilities);
}
static CACHE_STORAGE* createInstance(const char* zName,
const CACHE_STORAGE_CONFIG* pConfig,
int argc,
char* argv[])
{
mxb_assert(zName);
mxb_assert(pConfig);
StorageType* pStorage = NULL;
MXS_EXCEPTION_GUARD(pStorage = StorageType::Create_instance(zName, *pConfig, argc, argv));
return reinterpret_cast<CACHE_STORAGE*>(pStorage);
}
static void freeInstance(CACHE_STORAGE* pInstance)
{
MXS_EXCEPTION_GUARD(delete reinterpret_cast<StorageType*>(pInstance));
}
static void getConfig(CACHE_STORAGE* pCache_storage,
CACHE_STORAGE_CONFIG* pConfig)
{
mxb_assert(pCache_storage);
mxb_assert(pConfig);
StorageType* pStorage = reinterpret_cast<StorageType*>(pCache_storage);
MXS_EXCEPTION_GUARD(pStorage->get_config(pConfig));
}
static cache_result_t getInfo(CACHE_STORAGE* pCache_storage,
uint32_t what,
json_t** ppInfo)
{
mxb_assert(pCache_storage);
cache_result_t result = CACHE_RESULT_ERROR;
StorageType* pStorage = reinterpret_cast<StorageType*>(pCache_storage);
MXS_EXCEPTION_GUARD(result = pStorage->get_info(what, ppInfo));
return result;
}
static cache_result_t getValue(CACHE_STORAGE* pCache_storage,
const CACHE_KEY* pKey,
uint32_t flags,
uint32_t soft_ttl,
uint32_t hard_ttl,
GWBUF** ppResult)
{
mxb_assert(pCache_storage);
mxb_assert(pKey);
mxb_assert(ppResult);
cache_result_t result = CACHE_RESULT_ERROR;
StorageType* pStorage = reinterpret_cast<StorageType*>(pCache_storage);
MXS_EXCEPTION_GUARD(result = pStorage->get_value(*pKey, flags, soft_ttl, hard_ttl, ppResult));
return result;
}
static cache_result_t putValue(CACHE_STORAGE* pCache_storage,
const CACHE_KEY* pKey,
const GWBUF* pValue)
{
mxb_assert(pCache_storage);
mxb_assert(pKey);
mxb_assert(pValue);
cache_result_t result = CACHE_RESULT_ERROR;
StorageType* pStorage = reinterpret_cast<StorageType*>(pCache_storage);
MXS_EXCEPTION_GUARD(result = pStorage->put_value(*pKey, *pValue));
return result;
}
static cache_result_t delValue(CACHE_STORAGE* pCache_storage, const CACHE_KEY* pKey)
{
mxb_assert(pCache_storage);
mxb_assert(pKey);
cache_result_t result = CACHE_RESULT_ERROR;
StorageType* pStorage = reinterpret_cast<StorageType*>(pCache_storage);
MXS_EXCEPTION_GUARD(result = pStorage->del_value(*pKey));
return result;
}
static cache_result_t getHead(CACHE_STORAGE* pCache_storage,
CACHE_KEY* pKey,
GWBUF** ppHead)
{
mxb_assert(pCache_storage);
cache_result_t result = CACHE_RESULT_ERROR;
StorageType* pStorage = reinterpret_cast<StorageType*>(pCache_storage);
MXS_EXCEPTION_GUARD(result = pStorage->get_head(pKey, ppHead));
return result;
}
static cache_result_t getTail(CACHE_STORAGE* pCache_storage,
CACHE_KEY* pKey,
GWBUF** ppTail)
{
mxb_assert(pCache_storage);
cache_result_t result = CACHE_RESULT_ERROR;
StorageType* pStorage = reinterpret_cast<StorageType*>(pCache_storage);
MXS_EXCEPTION_GUARD(result = pStorage->get_tail(pKey, ppTail));
return result;
}
static cache_result_t getSize(CACHE_STORAGE* pCache_storage, uint64_t* pSize)
{
mxb_assert(pCache_storage);
cache_result_t result = CACHE_RESULT_ERROR;
StorageType* pStorage = reinterpret_cast<StorageType*>(pCache_storage);
MXS_EXCEPTION_GUARD(result = pStorage->get_size(pSize));
return result;
}
static cache_result_t getItems(CACHE_STORAGE* pCache_storage, uint64_t* pItems)
{
mxb_assert(pCache_storage);
cache_result_t result = CACHE_RESULT_ERROR;
StorageType* pStorage = reinterpret_cast<StorageType*>(pCache_storage);
MXS_EXCEPTION_GUARD(result = pStorage->get_items(pItems));
return result;
}
static CACHE_STORAGE_API s_api;
};
template<class StorageType>
CACHE_STORAGE_API StorageModule<StorageType>::s_api =
{
&StorageModule<StorageType>::initialize,
&StorageModule<StorageType>::createInstance,
&StorageModule<StorageType>::freeInstance,
&StorageModule<StorageType>::getConfig,
&StorageModule<StorageType>::getInfo,
&StorageModule<StorageType>::getValue,
&StorageModule<StorageType>::putValue,
&StorageModule<StorageType>::delValue,
&StorageModule<StorageType>::getHead,
&StorageModule<StorageType>::getTail,
&StorageModule<StorageType>::getSize,
&StorageModule<StorageType>::getItems
};
| 29.878788 | 102 | 0.63455 |
a3c4e1dec5264d691f03a0814bdc7cd89efb6b9f | 613 | swift | Swift | DrinkAndGoApp/Extesions/UIImageExtension.swift | VasiliyEgorov/DrinkAndGoApp | 4c669a4c39eba72621f0893553d0fa20257f682b | [
"MIT"
] | null | null | null | DrinkAndGoApp/Extesions/UIImageExtension.swift | VasiliyEgorov/DrinkAndGoApp | 4c669a4c39eba72621f0893553d0fa20257f682b | [
"MIT"
] | null | null | null | DrinkAndGoApp/Extesions/UIImageExtension.swift | VasiliyEgorov/DrinkAndGoApp | 4c669a4c39eba72621f0893553d0fa20257f682b | [
"MIT"
] | null | null | null | //
// UIImageExtension.swift
// DrinkAndGoApp
//
// Created by Vasiliy Egorov on 18.01.2018.
// Copyright © 2018 VasiliyEgorov. All rights reserved.
//
import UIKit
extension UIImage {
class func mergeLayer(andView view: UIView) -> UIImage? {
let imgSize = CGSize(width: view.bounds.size.width, height: view.bounds.size.height)
UIGraphicsBeginImageContextWithOptions(imgSize, false, 0.0)
view.layer.render(in: UIGraphicsGetCurrentContext()!)
let result = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return result
}
}
| 26.652174 | 92 | 0.698206 |
6628be96503aaab232ba14c50d3d3e7f91edbfda | 1,076 | dart | Dart | lib/src/models/entrymodel.dart | contentstack/contentstack-dart | 081db2722935952485006f73609b4f9086203ce2 | [
"MIT"
] | 2 | 2020-05-13T06:40:54.000Z | 2021-01-12T06:35:27.000Z | lib/src/models/entrymodel.dart | contentstack/contentstack-dart | 081db2722935952485006f73609b4f9086203ce2 | [
"MIT"
] | null | null | null | lib/src/models/entrymodel.dart | contentstack/contentstack-dart | 081db2722935952485006f73609b4f9086203ce2 | [
"MIT"
] | 2 | 2020-05-22T09:15:53.000Z | 2021-04-15T19:31:37.000Z | // https://flutter.dev/docs/development/data-and-backend/json#serializing-json-inside-model-classes
import 'package:json_annotation/json_annotation.dart';
part 'entrymodel.g.dart';
/// EntryModel refers to the generic class for entry result
@JsonSerializable(createFactory: true)
class EntryModel {
String locale;
String title;
String url;
String description;
List categories;
List tags;
String uid;
@JsonKey(name: 'created_by')
String createdBy;
@JsonKey(name: 'updated_by')
String updatedBy;
@JsonKey(name: 'created_at')
String createdAt;
@JsonKey(name: 'updated_at')
String updatedAt;
@JsonKey(name: '_version')
int version;
EntryModel(
this.locale,
this.title,
this.url,
this.description,
this.categories,
this.tags,
this.uid,
this.createdBy,
this.updatedBy,
this.createdAt,
this.updatedAt,
this.version);
factory EntryModel.fromJson(Map<String, dynamic> json) =>
_$EntryModelFromJson(json);
Map<String, dynamic> toJson() => _$EntryModelToJson(this);
}
| 25.619048 | 99 | 0.696097 |
acc68eff1eb3aa76aebdc2c13218cb83332308c3 | 523 | cpp | C++ | 2021-11-07-Homework5/2021-11-03-01/Source.cpp | charukhinvsevolod/Homework_IT_SPBU_CHV | db2fba9acdd42681c941f7b6ac19f29ffcbaf280 | [
"Apache-2.0"
] | null | null | null | 2021-11-07-Homework5/2021-11-03-01/Source.cpp | charukhinvsevolod/Homework_IT_SPBU_CHV | db2fba9acdd42681c941f7b6ac19f29ffcbaf280 | [
"Apache-2.0"
] | null | null | null | 2021-11-07-Homework5/2021-11-03-01/Source.cpp | charukhinvsevolod/Homework_IT_SPBU_CHV | db2fba9acdd42681c941f7b6ac19f29ffcbaf280 | [
"Apache-2.0"
] | null | null | null | #include<iostream>
using namespace std;
int main(int argc, char* argv[])
{
unsigned int x = 0;
unsigned int x_n = 0;
unsigned int x_m = 0;
unsigned int n = 0;
unsigned int m = 0;
cin >> x >> n >> m;
x_m = x_n = x;
x_n = x >> n - 1;
x_m = x >> m - 1;
x_n = x_n & 1;
x_m = x_m & 1;
x_n = x_n << n - 1;
x_m = x_m << m - 1;
x = x ^ x_n;
x = x ^ x_m;
x_n = x_n >> n - 1;
x_m = x_m >> m - 1;
x_n = x_n << m - 1;
x_m = x_m << n - 1;
x = x | x_n;
x = x | x_m;
cout << x << endl;
return EXIT_SUCCESS;
} | 15.382353 | 32 | 0.491396 |
83eb4a611b53d244140bbd06829f36413bc6a110 | 11,534 | java | Java | sdk/eventgrid/azure-messaging-eventgrid/src/main/java/com/azure/messaging/eventgrid/EventGridEvent.java | SDKAutoUP/azure-sdk-for-java | 459eb6745890931d33a750b4cb39dafcf0b1ceb5 | [
"MIT"
] | null | null | null | sdk/eventgrid/azure-messaging-eventgrid/src/main/java/com/azure/messaging/eventgrid/EventGridEvent.java | SDKAutoUP/azure-sdk-for-java | 459eb6745890931d33a750b4cb39dafcf0b1ceb5 | [
"MIT"
] | null | null | null | sdk/eventgrid/azure-messaging-eventgrid/src/main/java/com/azure/messaging/eventgrid/EventGridEvent.java | SDKAutoUP/azure-sdk-for-java | 459eb6745890931d33a750b4cb39dafcf0b1ceb5 | [
"MIT"
] | null | null | null | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.messaging.eventgrid;
import com.azure.core.annotation.Fluent;
import com.azure.core.serializer.json.jackson.JacksonJsonSerializerBuilder;
import com.azure.core.util.CoreUtils;
import com.azure.core.util.FluxUtil;
import com.azure.core.util.logging.ClientLogger;
import com.azure.core.util.serializer.JacksonAdapter;
import com.azure.core.util.serializer.JsonSerializer;
import com.azure.core.util.serializer.TypeReference;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.nio.charset.StandardCharsets;
import java.time.OffsetDateTime;
import java.util.List;
import java.util.UUID;
/**
* The EventGridEvent model. This represents events in the EventGrid schema to be used with the EventGrid service.
* @see EventGridPublisherAsyncClient
* @see EventGridPublisherClient
**/
@Fluent
public final class EventGridEvent {
private final com.azure.messaging.eventgrid.implementation.models.EventGridEvent event;
private static final ClientLogger logger = new ClientLogger(EventGridEvent.class);
private boolean parsed = false;
private static final JsonSerializer deserializer = new JacksonJsonSerializerBuilder()
.serializer(new JacksonAdapter().serializer() // this is a workaround to get the FlatteningDeserializer
.registerModule(new JavaTimeModule())) // probably also change this to DateTimeDeserializer when/if it
.build(); // becomes public in core
/**
* Create a new instance of the EventGridEvent, with the given required fields.
* @param subject the subject of the event.
* @param eventType the type of the event, e.g. "Contoso.Items.ItemReceived".
* @param dataVersion the version of the data sent along with the event.
*/
public EventGridEvent(String subject, String eventType, String dataVersion) {
if (CoreUtils.isNullOrEmpty(subject)) {
throw logger.logExceptionAsError(new IllegalArgumentException("subject cannot be null or empty"));
} else if (CoreUtils.isNullOrEmpty(eventType)) {
throw logger.logExceptionAsError(new IllegalArgumentException("event type cannot be null or empty"));
} else if (CoreUtils.isNullOrEmpty(dataVersion)) {
throw logger.logExceptionAsError(new IllegalArgumentException("data version cannot be null or empty"));
}
this.event = new com.azure.messaging.eventgrid.implementation.models.EventGridEvent()
.setEventTime(OffsetDateTime.now())
.setId(UUID.randomUUID().toString())
.setSubject(subject)
.setEventType(eventType)
.setDataVersion(dataVersion);
}
/**
* Parse the EventGrid Event from a JSON string. This can be used to interpret the event at the event destination
* from raw JSON into rich event(s).
* @param json the JSON payload containing one or more events.
*
* @return all of the events in the payload parsed as CloudEvents.
*/
public static List<EventGridEvent> parse(String json) {
return Flux.fromArray(deserializer
.deserialize(new ByteArrayInputStream(json.getBytes(StandardCharsets.UTF_8)),
TypeReference.createInstance(com.azure.messaging.eventgrid.implementation.models.EventGridEvent[].class))
)
.map(event1 -> {
if (event1.getData() == null) {
return new EventGridEvent(event1);
}
ByteArrayOutputStream stream = new ByteArrayOutputStream();
deserializer.serialize(stream, event1.getData());
return new EventGridEvent(event1).setData(stream.toByteArray()); // use BinaryData instead?
})
.collectList()
.block();
}
/**
* Get the unique id associated with this event.
* @return the id.
*/
public String getId() {
return this.event.getId();
}
/**
* Set the unique id of the event. Note that a random id has already been set by default.
* @param id the unique id to set.
*
* @return the event itself.
*/
public EventGridEvent setId(String id) {
if (CoreUtils.isNullOrEmpty(id)) {
throw logger.logExceptionAsError(new IllegalArgumentException("id cannot be null or empty"));
}
this.event.setId(id);
return this;
}
/**
* Get the topic associated with this event if it is associated with a domain.
* @return the topic, or null if the topic is not set (i.e. the event came from or is going to a domain).
*/
public String getTopic() {
return this.event.getTopic();
}
/**
* Set the topic associated with this event. Used to route events from domain endpoints.
* @param topic the topic to set.
*
* @return the event itself.
*/
public EventGridEvent setTopic(String topic) {
this.event.setTopic(topic);
return this;
}
/**
* Get the subject associated with this event.
* @return the subject.
*/
public String getSubject() {
return this.event.getSubject();
}
/**
* Get the data associated with this event. For use in a parsed event only.
* @return If the event was parsed from a Json, this method will return the rich
* system event data if it is a system event, and a {@code byte[]} otherwise, such as in the case of custom event
* data.
* @throws IllegalStateException If the event was not created through {@link EventGridEvent#parse(String)}.
*/
public Object getData() {
if (!parsed) {
// data was set instead of parsed, throw error
throw logger.logExceptionAsError(new IllegalStateException(
"This method should only be called on events created through the parse method"));
}
String eventType = SystemEventMappings.canonicalizeEventType(event.getEventType());
if (SystemEventMappings.getSystemEventMappings().containsKey(eventType)) {
// system event
return deserializer.deserialize(new ByteArrayInputStream((byte[]) this.event.getData()),
TypeReference.createInstance(SystemEventMappings.getSystemEventMappings().get(eventType)));
}
return event.getData();
}
/**
* Get the deserialized data property from the parsed event. The behavior is undefined if this method is called
* on an event that was not created through the parse method.
* @param clazz the class of the type to deserialize the data into.
* @param <T> the type to deserialize the data into.
*
* @return the data deserialized into the given type using a default deserializer.
* @throws IllegalStateException If the event was not created through {@link EventGridEvent#parse(String)}.
*/
public <T> T getData(Class<T> clazz) {
return getDataAsync(clazz, deserializer).block();
}
/**
* Get the deserialized data property from the parsed event.
* @param clazz the class of the type to deserialize the data into.
* @param <T> the type to deserialize the data into.
*
* @return the data deserialized into the given type using a default deserializer, delivered asynchronously through
* a {@link Mono}.
* @throws IllegalStateException If the event was not created through {@link EventGridEvent#parse(String)}.
*/
public <T> Mono<T> getDataAsync(Class<T> clazz) {
return getDataAsync(clazz, deserializer);
}
/**
* Get the deserialized data property from the parsed event.
* @param clazz the class of the type to deserialize the data into.
* @param dataDeserializer the deserializer to use.
* @param <T> the type to deserialize the data into.
*
* @return the data deserialized into the given type using the given deserializer.
* @throws IllegalStateException If the event was not created through {@link EventGridEvent#parse(String)}.
*/
public <T> T getData(Class<T> clazz, JsonSerializer dataDeserializer) {
return getDataAsync(clazz, dataDeserializer).block();
}
/**
* Get the deserialized data property from the parsed event.
* @param clazz the class of the type to deserialize the data into.
* @param dataDeserializer the deserializer to use.
* @param <T> the type to deserialize the data into.
*
* @return the data deserialized into the given type using the given deserializer, delivered asynchronously through
* a {@link Mono}.
* @throws IllegalStateException If the event was not created through {@link EventGridEvent#parse(String)}.
*/
public <T> Mono<T> getDataAsync(Class<T> clazz, JsonSerializer dataDeserializer) {
if (!parsed) {
// data was set instead of parsed, throw exception because we don't know how the data relates to clazz
return FluxUtil.monoError(logger, new IllegalStateException(
"This method should only be called on events created through the parse method"));
}
return dataDeserializer.deserializeAsync(new ByteArrayInputStream((byte[]) this.event.getData()),
TypeReference.createInstance(clazz));
}
/**
* Set the data associated with this event. It will be serialized into Json format using a default Json serializer
* when the event is sent from the publisher.
* @param data the data to set.
*
* @return the event itself.
*/
public EventGridEvent setData(Object data) {
this.event.setData(data);
return this;
}
/**
* Get the type of this event.
* @return the event type.
*/
public String getEventType() {
return this.event.getEventType();
}
/**
* Get the time associated with the occurrence of this event.
* @return the event time.
*/
public OffsetDateTime getEventTime() {
return this.event.getEventTime();
}
/**
* Set the time associated with the event. Note that a default time has already been set when the event was
* constructed.
* @param time the time to set.
*
* @return the event itself.
*/
public EventGridEvent setEventTime(OffsetDateTime time) {
this.event.setEventTime(time);
return this;
}
/**
* Get the version of the data in the event. This can be used to specify versioning of event data schemas over time.
* @return the version of the event data.
*/
public String getDataVersion() {
return this.event.getDataVersion();
}
/**
* Get the metadata version of this event. Note that metadata version is a read-only property set by the service.
* @return the metadata version of this event.
*/
public String getMetadataVersion() {
return this.event.getMetadataVersion();
}
private EventGridEvent(com.azure.messaging.eventgrid.implementation.models.EventGridEvent impl) {
this.event = impl;
parsed = true;
}
com.azure.messaging.eventgrid.implementation.models.EventGridEvent toImpl() {
return this.event;
}
}
| 39.772414 | 121 | 0.668285 |
145d86104451596a9115febcc14e865ef528f26a | 794 | asm | Assembly | Assembler/TwoOperand.asm | ahmedx3/Pipelined-Processor | 62adecc52f8c77533b2491b8c7710ea55a5f81a8 | [
"MIT"
] | null | null | null | Assembler/TwoOperand.asm | ahmedx3/Pipelined-Processor | 62adecc52f8c77533b2491b8c7710ea55a5f81a8 | [
"MIT"
] | null | null | null | Assembler/TwoOperand.asm | ahmedx3/Pipelined-Processor | 62adecc52f8c77533b2491b8c7710ea55a5f81a8 | [
"MIT"
] | null | null | null | # all numbers in hex format
# we always start by reset signal
#this is a commented line
.ORG 0 #this means the the following line would be at address 0 , and this is the reset address
10
#you should ignore empty lines
.ORG 2 #this is the interrupt address
100
.ORG 10
in R1 #add 5 in R1
in R2 #add 19 in R2
in R3 #FFFFFFFF
in R4 #FFFFF320
MoV R3,R5 #R5 = FFFFFFFF , flags no change
ADD R1,R4 #R4= FFFFF325 , C-->0, N-->1, Z-->0
SUB R5,R4 #R4= 00000CDA , C-->1, N-->0,Z-->0
AND R6,R4 #R4= 00000000 , C-->no change, N-->0, Z-->1
OR R2,R1 #R1=1D , C--> no change, N-->0, Z--> 0
SHL R2,2 #R2=64 , C--> 0, N -->0 , Z -->0
SHR R2,3 #R2=0C , C -->1, N-->0 , Z-->0
IADD R2,FFFF #R2= 0001000B (C,N,Z= 0)
ADD R1,R2 #R2= 00010028 (C,N,Z= 0)
| 31.76 | 98 | 0.578086 |
7f293387084dd616cf35fbe9ceeab3f6004f9adb | 40,713 | rs | Rust | bridge/parity-ethereum/secret-store/src/key_server_cluster/jobs/consensus_session.rs | altice-io/Daqiao | 28a61939fc1aab2d8a104853105a1a0e889a830d | [
"Unlicense"
] | null | null | null | bridge/parity-ethereum/secret-store/src/key_server_cluster/jobs/consensus_session.rs | altice-io/Daqiao | 28a61939fc1aab2d8a104853105a1a0e889a830d | [
"Unlicense"
] | null | null | null | bridge/parity-ethereum/secret-store/src/key_server_cluster/jobs/consensus_session.rs | altice-io/Daqiao | 28a61939fc1aab2d8a104853105a1a0e889a830d | [
"Unlicense"
] | 1 | 2019-09-11T12:07:35.000Z | 2019-09-11T12:07:35.000Z | // Copyright 2015-2019 Parity Technologies (UK) Ltd.
// This file is part of Parity Ethereum.
// Parity Ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Parity Ethereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
use std::collections::BTreeSet;
use key_server_cluster::{Error, NodeId, SessionMeta, Requester};
use key_server_cluster::message::ConsensusMessage;
use key_server_cluster::jobs::job_session::{JobSession, JobSessionState, JobTransport, JobExecutor, JobPartialRequestAction};
/// Consensus session state.
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum ConsensusSessionState {
/// Every node starts in this state.
WaitingForInitialization,
/// Consensus group is establishing.
EstablishingConsensus,
/// Consensus group is established.
/// Master node can start jobs dissemination.
/// Slave node waits for partial job requests.
ConsensusEstablished,
/// Master node waits for partial jobs responses.
WaitingForPartialResults,
/// Consensus session is completed successfully.
/// Master node can call result() to get computation result.
Finished,
/// Consensus session has failed with error.
Failed,
}
/// Consensus session consists of following states:
/// 1) consensus group is established
/// 2) master node sends partial job requests to every member of consensus group
/// 3) slave nodes are computing partial responses
/// 4) master node computes result from partial responses
pub struct ConsensusSession<ConsensusExecutor: JobExecutor<PartialJobResponse=bool>,
ConsensusTransport: JobTransport<PartialJobRequest=ConsensusExecutor::PartialJobRequest, PartialJobResponse=ConsensusExecutor::PartialJobResponse>,
ComputationExecutor: JobExecutor,
ComputationTransport: JobTransport<PartialJobRequest=ComputationExecutor::PartialJobRequest, PartialJobResponse=ComputationExecutor::PartialJobResponse>
> {
/// Current session state.
state: ConsensusSessionState,
/// Session metadata.
meta: SessionMeta,
/// Consensus establish job.
consensus_job: JobSession<ConsensusExecutor, ConsensusTransport>,
/// Consensus group.
consensus_group: BTreeSet<NodeId>,
/// Computation job.
computation_job: Option<JobSession<ComputationExecutor, ComputationTransport>>,
}
/// Consensus session creation parameters.
pub struct ConsensusSessionParams<ConsensusExecutor: JobExecutor<PartialJobResponse=bool>,
ConsensusTransport: JobTransport<PartialJobRequest=ConsensusExecutor::PartialJobRequest, PartialJobResponse=ConsensusExecutor::PartialJobResponse>
> {
/// Session metadata.
pub meta: SessionMeta,
/// ACL storage for access check.
pub consensus_executor: ConsensusExecutor,
/// Transport for consensus establish job.
pub consensus_transport: ConsensusTransport,
}
impl<ConsensusExecutor, ConsensusTransport, ComputationExecutor, ComputationTransport> ConsensusSession<ConsensusExecutor, ConsensusTransport, ComputationExecutor, ComputationTransport>
where ConsensusExecutor: JobExecutor<PartialJobResponse=bool, JobResponse=BTreeSet<NodeId>>,
ConsensusTransport: JobTransport<PartialJobRequest=ConsensusExecutor::PartialJobRequest, PartialJobResponse=ConsensusExecutor::PartialJobResponse>,
ComputationExecutor: JobExecutor,
ComputationTransport: JobTransport<PartialJobRequest=ComputationExecutor::PartialJobRequest, PartialJobResponse=ComputationExecutor::PartialJobResponse> {
/// Create new consensus session.
pub fn new(params: ConsensusSessionParams<ConsensusExecutor, ConsensusTransport>) -> Result<Self, Error> {
let consensus_job = JobSession::new(params.meta.clone(), params.consensus_executor, params.consensus_transport);
debug_assert!(consensus_job.state() == JobSessionState::Inactive);
Ok(ConsensusSession {
state: ConsensusSessionState::WaitingForInitialization,
meta: params.meta,
consensus_job: consensus_job,
consensus_group: BTreeSet::new(),
computation_job: None,
})
}
/// Get consensus job reference.
pub fn consensus_job(&self) -> &JobSession<ConsensusExecutor, ConsensusTransport> {
&self.consensus_job
}
/// Get mutable consensus job reference.
pub fn consensus_job_mut(&mut self) -> &mut JobSession<ConsensusExecutor, ConsensusTransport> {
&mut self.consensus_job
}
/// Get all nodes, which has not rejected consensus request.
pub fn consensus_non_rejected_nodes(&self) -> BTreeSet<NodeId> {
self.consensus_job.responses().iter()
.filter(|r| *r.1)
.map(|r| r.0)
.chain(self.consensus_job.requests())
.filter(|n| **n != self.meta.self_node_id)
.cloned()
.collect()
}
/// Get computation job reference.
pub fn computation_job(&self) -> &JobSession<ComputationExecutor, ComputationTransport> {
self.computation_job.as_ref()
.expect("computation_job must only be called on master nodes")
}
/// Get consensus session state.
pub fn state(&self) -> ConsensusSessionState {
self.state
}
/// Get computation result.
pub fn result(&self) -> Result<ComputationExecutor::JobResponse, Error> {
debug_assert!(self.meta.self_node_id == self.meta.master_node_id);
if self.state != ConsensusSessionState::Finished {
return Err(Error::InvalidStateForRequest);
}
self.computation_job.as_ref()
.expect("we are on master node in finished state; computation_job is set on master node during initialization; qed")
.result()
}
/// Initialize session on master node.
pub fn initialize(&mut self, nodes: BTreeSet<NodeId>) -> Result<(), Error> {
debug_assert!(self.meta.self_node_id == self.meta.master_node_id);
let initialization_result = self.consensus_job.initialize(nodes, None, false);
self.state = ConsensusSessionState::EstablishingConsensus;
self.process_result(initialization_result.map(|_| ()))
}
/// Process consensus request message.
pub fn on_consensus_partial_request(&mut self, sender: &NodeId, request: ConsensusExecutor::PartialJobRequest) -> Result<(), Error> {
let consensus_result = self.consensus_job.on_partial_request(sender, request);
self.process_result(consensus_result.map(|_| ()))
}
/// Process consensus message response.
pub fn on_consensus_partial_response(&mut self, sender: &NodeId, response: bool) -> Result<(), Error> {
let consensus_result = self.consensus_job.on_partial_response(sender, response);
self.process_result(consensus_result)
}
/// Select nodes for processing partial requests.
pub fn select_consensus_group(&mut self) -> Result<&BTreeSet<NodeId>, Error> {
debug_assert!(self.meta.self_node_id == self.meta.master_node_id);
if self.state != ConsensusSessionState::ConsensusEstablished {
return Err(Error::InvalidStateForRequest);
}
if self.consensus_group.is_empty() {
let consensus_group = self.consensus_job.result()?;
let is_self_in_consensus = consensus_group.contains(&self.meta.self_node_id);
self.consensus_group = consensus_group.into_iter().take(self.meta.threshold + 1).collect();
if is_self_in_consensus {
self.consensus_group.remove(&self.meta.master_node_id);
self.consensus_group.insert(self.meta.master_node_id.clone());
}
}
Ok(&self.consensus_group)
}
/// Disseminate jobs from master node.
pub fn disseminate_jobs(&mut self, executor: ComputationExecutor, transport: ComputationTransport, broadcast_self_response: bool) -> Result<Option<ComputationExecutor::PartialJobResponse>, Error> {
let consensus_group = self.select_consensus_group()?.clone();
self.consensus_group.clear();
let mut computation_job = JobSession::new(self.meta.clone(), executor, transport);
let computation_result = computation_job.initialize(consensus_group, None, broadcast_self_response);
self.computation_job = Some(computation_job);
self.state = ConsensusSessionState::WaitingForPartialResults;
match computation_result {
Ok(computation_result) => self.process_result(Ok(())).map(|_| computation_result),
Err(error) => Err(self.process_result(Err(error)).unwrap_err()),
}
}
/// Process job request on slave node.
pub fn on_job_request(&mut self, node: &NodeId, request: ComputationExecutor::PartialJobRequest, executor: ComputationExecutor, transport: ComputationTransport) -> Result<JobPartialRequestAction<ComputationExecutor::PartialJobResponse>, Error> {
if &self.meta.master_node_id != node {
return Err(Error::InvalidMessage);
}
if self.state != ConsensusSessionState::ConsensusEstablished {
return Err(Error::InvalidStateForRequest);
}
JobSession::new(self.meta.clone(), executor, transport).on_partial_request(node, request)
}
/// Process job response on slave node.
pub fn on_job_response(&mut self, node: &NodeId, response: ComputationExecutor::PartialJobResponse) -> Result<(), Error> {
if self.state != ConsensusSessionState::WaitingForPartialResults {
return Err(Error::InvalidStateForRequest);
}
let computation_result = self.computation_job.as_mut()
.expect("WaitingForPartialResults is only set when computation_job is created; qed")
.on_partial_response(node, response);
self.process_result(computation_result)
}
/// When session is completed on slave node.
pub fn on_session_completed(&mut self, node: &NodeId) -> Result<(), Error> {
if node != &self.meta.master_node_id {
return Err(Error::InvalidMessage);
}
if self.state != ConsensusSessionState::ConsensusEstablished {
return Err(Error::InvalidStateForRequest);
}
self.state = ConsensusSessionState::Finished;
Ok(())
}
/// When error is received from node.
pub fn on_node_error(&mut self, node: &NodeId, error: Error) -> Result<bool, Error> {
let is_self_master = self.meta.master_node_id == self.meta.self_node_id;
let is_node_master = self.meta.master_node_id == *node;
let (is_restart_needed, timeout_result) = match self.state {
ConsensusSessionState::WaitingForInitialization if is_self_master => {
// it is strange to receive error before session is initialized && slave doesn't know access_key
// => unreachable
self.state = ConsensusSessionState::Failed;
(false, Err(Error::ConsensusUnreachable))
}
ConsensusSessionState::WaitingForInitialization if is_node_master => {
// error from master node before establishing consensus
// => unreachable
self.state = ConsensusSessionState::Failed;
(false, Err(if !error.is_non_fatal() {
Error::ConsensusUnreachable
} else {
Error::ConsensusTemporaryUnreachable
}))
},
ConsensusSessionState::EstablishingConsensus => {
debug_assert!(is_self_master);
// consensus still can be established
// => try to live without this node
(false, self.consensus_job.on_node_error(node, error))
},
ConsensusSessionState::ConsensusEstablished => {
// we could try to continue without this node, if enough nodes left
(false, self.consensus_job.on_node_error(node, error))
},
ConsensusSessionState::WaitingForPartialResults => {
// check if *current* computation job can continue without this node
let is_computation_node = self.computation_job.as_mut()
.expect("WaitingForPartialResults state is only set when computation_job is created; qed")
.on_node_error(node, error.clone())
.is_err();
if !is_computation_node {
// it is not used by current computation job
// => no restart required
(false, Ok(()))
} else {
// it is used by current computation job
// => restart is required if there are still enough nodes
self.consensus_group.clear();
self.state = ConsensusSessionState::EstablishingConsensus;
let consensus_result = self.consensus_job.on_node_error(node, error);
let is_consensus_established = self.consensus_job.state() == JobSessionState::Finished;
(is_consensus_established, consensus_result)
}
},
// in all other cases - just ignore error
ConsensusSessionState::WaitingForInitialization | ConsensusSessionState::Failed | ConsensusSessionState::Finished => (false, Ok(())),
};
self.process_result(timeout_result)?;
Ok(is_restart_needed)
}
/// When session is timeouted.
pub fn on_session_timeout(&mut self) -> Result<bool, Error> {
match self.state {
// if we are waiting for results from slaves, there is a chance to send request to other nodes subset => fall through
ConsensusSessionState::WaitingForPartialResults => (),
// in some states this error is fatal
ConsensusSessionState::WaitingForInitialization | ConsensusSessionState::EstablishingConsensus | ConsensusSessionState::ConsensusEstablished => {
let _ = self.consensus_job.on_session_timeout();
self.consensus_group.clear();
self.state = ConsensusSessionState::EstablishingConsensus;
return self.process_result(Err(Error::ConsensusTemporaryUnreachable)).map(|_| unreachable!());
},
// in all other cases - just ignore error
ConsensusSessionState::Finished | ConsensusSessionState::Failed => return Ok(false),
};
let timeouted_nodes = self.computation_job.as_ref()
.expect("WaitingForPartialResults state is only set when computation_job is created; qed")
.requests()
.clone();
assert!(!timeouted_nodes.is_empty()); // timeout should not ever happen if no requests are active && we are waiting for responses
self.consensus_group.clear();
for timeouted_node in timeouted_nodes {
let timeout_result = self.consensus_job.on_node_error(&timeouted_node, Error::NodeDisconnected);
self.state = ConsensusSessionState::EstablishingConsensus;
self.process_result(timeout_result)?;
}
Ok(self.state == ConsensusSessionState::ConsensusEstablished)
}
/// Process result of job.
fn process_result(&mut self, result: Result<(), Error>) -> Result<(), Error> {
match self.state {
ConsensusSessionState::WaitingForInitialization | ConsensusSessionState::EstablishingConsensus | ConsensusSessionState::ConsensusEstablished => match self.consensus_job.state() {
JobSessionState::Finished => self.state = ConsensusSessionState::ConsensusEstablished,
JobSessionState::Failed => self.state = ConsensusSessionState::Failed,
_ => (),
},
ConsensusSessionState::WaitingForPartialResults => match self.computation_job.as_ref()
.expect("WaitingForPartialResults state is only set when computation_job is created; qed")
.state() {
JobSessionState::Finished => self.state = ConsensusSessionState::Finished,
JobSessionState::Failed => self.state = ConsensusSessionState::Failed,
_ => (),
},
_ => (),
}
result
}
}
impl<ConsensusExecutor, ConsensusTransport, ComputationExecutor, ComputationTransport> ConsensusSession<ConsensusExecutor, ConsensusTransport, ComputationExecutor, ComputationTransport>
where ConsensusExecutor: JobExecutor<PartialJobRequest=Requester, PartialJobResponse=bool, JobResponse=BTreeSet<NodeId>>,
ConsensusTransport: JobTransport<PartialJobRequest=ConsensusExecutor::PartialJobRequest, PartialJobResponse=ConsensusExecutor::PartialJobResponse>,
ComputationExecutor: JobExecutor,
ComputationTransport: JobTransport<PartialJobRequest=ComputationExecutor::PartialJobRequest, PartialJobResponse=ComputationExecutor::PartialJobResponse> {
/// Process basic consensus message.
pub fn on_consensus_message(&mut self, sender: &NodeId, message: &ConsensusMessage) -> Result<(), Error> {
let consensus_result = match message {
&ConsensusMessage::InitializeConsensusSession(ref message) =>
self.consensus_job.on_partial_request(sender, message.requester.clone().into()).map(|_| ()),
&ConsensusMessage::ConfirmConsensusInitialization(ref message) =>
self.consensus_job.on_partial_response(sender, message.is_confirmed),
};
self.process_result(consensus_result)
}
}
#[cfg(test)]
mod tests {
use std::sync::Arc;
use ethkey::{KeyPair, Random, Generator, sign, public_to_address};
use key_server_cluster::{Error, NodeId, SessionId, Requester, DummyAclStorage};
use key_server_cluster::message::{ConsensusMessage, InitializeConsensusSession, ConfirmConsensusInitialization};
use key_server_cluster::jobs::job_session::tests::{make_master_session_meta, make_slave_session_meta, SquaredSumJobExecutor, DummyJobTransport};
use key_server_cluster::jobs::key_access_job::KeyAccessJob;
use super::{ConsensusSession, ConsensusSessionParams, ConsensusSessionState};
type SquaredSumConsensusSession = ConsensusSession<KeyAccessJob, DummyJobTransport<Requester, bool>, SquaredSumJobExecutor, DummyJobTransport<u32, u32>>;
fn make_master_consensus_session(threshold: usize, requester: Option<KeyPair>, acl_storage: Option<DummyAclStorage>) -> SquaredSumConsensusSession {
let secret = requester.map(|kp| kp.secret().clone()).unwrap_or(Random.generate().unwrap().secret().clone());
SquaredSumConsensusSession::new(ConsensusSessionParams {
meta: make_master_session_meta(threshold),
consensus_executor: KeyAccessJob::new_on_master(SessionId::default(), Arc::new(acl_storage.unwrap_or(DummyAclStorage::default())),
sign(&secret, &SessionId::default()).unwrap().into()),
consensus_transport: DummyJobTransport::default(),
}).unwrap()
}
fn make_slave_consensus_session(threshold: usize, acl_storage: Option<DummyAclStorage>) -> SquaredSumConsensusSession {
SquaredSumConsensusSession::new(ConsensusSessionParams {
meta: make_slave_session_meta(threshold),
consensus_executor: KeyAccessJob::new_on_slave(SessionId::default(), Arc::new(acl_storage.unwrap_or(DummyAclStorage::default()))),
consensus_transport: DummyJobTransport::default(),
}).unwrap()
}
#[test]
fn consensus_session_consensus_is_not_reached_when_initializes_with_non_zero_threshold() {
let mut session = make_master_consensus_session(1, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2)].into_iter().collect()).unwrap();
assert_eq!(session.state(), ConsensusSessionState::EstablishingConsensus);
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
}
#[test]
fn consensus_session_consensus_is_reached_when_initializes_with_zero_threshold() {
let mut session = make_master_consensus_session(0, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2)].into_iter().collect()).unwrap();
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
}
#[test]
fn consensus_session_consensus_is_not_reached_when_initializes_with_zero_threshold_and_master_rejects() {
let requester = Random.generate().unwrap();
let acl_storage = DummyAclStorage::default();
acl_storage.prohibit(public_to_address(requester.public()), SessionId::default());
let mut session = make_master_consensus_session(0, Some(requester), Some(acl_storage));
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2)].into_iter().collect()).unwrap();
assert_eq!(session.state(), ConsensusSessionState::EstablishingConsensus);
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
}
#[test]
fn consensus_session_consensus_is_failed_by_master_node() {
let requester = Random.generate().unwrap();
let acl_storage = DummyAclStorage::default();
acl_storage.prohibit(public_to_address(requester.public()), SessionId::default());
let mut session = make_master_consensus_session(1, Some(requester), Some(acl_storage));
assert_eq!(session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2)].into_iter().collect()).unwrap_err(), Error::ConsensusUnreachable);
assert_eq!(session.state(), ConsensusSessionState::Failed);
}
#[test]
fn consensus_session_consensus_is_failed_by_slave_node() {
let mut session = make_master_consensus_session(1, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2)].into_iter().collect()).unwrap();
assert_eq!(session.state(), ConsensusSessionState::EstablishingConsensus);
assert_eq!(session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: false,
})).unwrap_err(), Error::ConsensusUnreachable);
assert_eq!(session.state(), ConsensusSessionState::Failed);
}
#[test]
fn consensus_session_job_dissemination_fails_if_consensus_is_not_reached() {
let mut session = make_master_consensus_session(1, None, None);
assert_eq!(session.disseminate_jobs(SquaredSumJobExecutor, DummyJobTransport::default(), false).unwrap_err(), Error::InvalidStateForRequest);
}
#[test]
fn consensus_session_job_dissemination_selects_master_node_if_agreed() {
let mut session = make_master_consensus_session(0, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2)].into_iter().collect()).unwrap();
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
session.disseminate_jobs(SquaredSumJobExecutor, DummyJobTransport::default(), false).unwrap();
assert_eq!(session.state(), ConsensusSessionState::Finished);
assert!(session.computation_job().responses().contains_key(&NodeId::from_low_u64_be(1)));
}
#[test]
fn consensus_session_job_dissemination_does_not_select_master_node_if_rejected() {
let requester = Random.generate().unwrap();
let acl_storage = DummyAclStorage::default();
acl_storage.prohibit(public_to_address(requester.public()), SessionId::default());
let mut session = make_master_consensus_session(0, Some(requester), Some(acl_storage));
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2)].into_iter().collect()).unwrap();
assert_eq!(session.state(), ConsensusSessionState::EstablishingConsensus);
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
session.disseminate_jobs(SquaredSumJobExecutor, DummyJobTransport::default(), false).unwrap();
assert_eq!(session.state(), ConsensusSessionState::WaitingForPartialResults);
assert!(!session.computation_job().responses().contains_key(&NodeId::from_low_u64_be(1)));
}
#[test]
fn consensus_session_computation_request_is_rejected_when_received_by_master_node() {
let mut session = make_master_consensus_session(0, None, None);
assert_eq!(session.on_job_request(&NodeId::from_low_u64_be(2), 2, SquaredSumJobExecutor, DummyJobTransport::default()).unwrap_err(), Error::InvalidMessage);
}
#[test]
fn consensus_session_computation_request_is_rejected_when_received_before_consensus_is_established() {
let mut session = make_slave_consensus_session(0, None);
assert_eq!(session.on_job_request(&NodeId::from_low_u64_be(1), 2, SquaredSumJobExecutor, DummyJobTransport::default()).unwrap_err(), Error::InvalidStateForRequest);
}
#[test]
fn consensus_session_computation_request_is_ignored_when_wrong() {
let mut session = make_slave_consensus_session(0, None);
assert_eq!(session.state(), ConsensusSessionState::WaitingForInitialization);
session.on_consensus_message(&NodeId::from_low_u64_be(1), &ConsensusMessage::InitializeConsensusSession(InitializeConsensusSession {
requester: Requester::Signature(sign(Random.generate().unwrap().secret(), &SessionId::default()).unwrap()).into(),
version: Default::default(),
})).unwrap();
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
assert_eq!(session.on_job_request(&NodeId::from_low_u64_be(1), 20, SquaredSumJobExecutor, DummyJobTransport::default()).unwrap_err(), Error::InvalidMessage);
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
}
#[test]
fn consensus_session_computation_request_is_processed_when_correct() {
let mut session = make_slave_consensus_session(0, None);
assert_eq!(session.state(), ConsensusSessionState::WaitingForInitialization);
session.on_consensus_message(&NodeId::from_low_u64_be(1), &ConsensusMessage::InitializeConsensusSession(InitializeConsensusSession {
requester: Requester::Signature(sign(Random.generate().unwrap().secret(), &SessionId::default()).unwrap()).into(),
version: Default::default(),
})).unwrap();
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
session.on_job_request(&NodeId::from_low_u64_be(1), 2, SquaredSumJobExecutor, DummyJobTransport::default()).unwrap();
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
}
#[test]
fn consensus_session_computation_response_is_ignored_when_consensus_is_not_reached() {
let mut session = make_master_consensus_session(1, None, None);
assert_eq!(session.on_job_response(&NodeId::from_low_u64_be(2), 4).unwrap_err(), Error::InvalidStateForRequest);
}
#[test]
fn consessus_session_completion_is_ignored_when_received_from_non_master_node() {
let mut session = make_slave_consensus_session(0, None);
assert_eq!(session.on_session_completed(&NodeId::from_low_u64_be(3)).unwrap_err(), Error::InvalidMessage);
}
#[test]
fn consessus_session_completion_is_ignored_when_consensus_is_not_established() {
let mut session = make_slave_consensus_session(0, None);
assert_eq!(session.on_session_completed(&NodeId::from_low_u64_be(1)).unwrap_err(), Error::InvalidStateForRequest);
}
#[test]
fn consessus_session_completion_is_accepted() {
let mut session = make_slave_consensus_session(0, None);
session.on_consensus_message(&NodeId::from_low_u64_be(1), &ConsensusMessage::InitializeConsensusSession(InitializeConsensusSession {
requester: Requester::Signature(sign(Random.generate().unwrap().secret(), &SessionId::default()).unwrap()).into(),
version: Default::default(),
})).unwrap();
session.on_session_completed(&NodeId::from_low_u64_be(1)).unwrap();
assert_eq!(session.state(), ConsensusSessionState::Finished);
}
#[test]
fn consensus_session_fails_if_node_error_received_by_uninitialized_master() {
let mut session = make_master_consensus_session(0, None, None);
assert_eq!(session.on_node_error(&NodeId::from_low_u64_be(2), Error::AccessDenied), Err(Error::ConsensusUnreachable));
assert_eq!(session.state(), ConsensusSessionState::Failed);
}
#[test]
fn consensus_session_fails_if_node_error_received_by_uninitialized_slave_from_master() {
let mut session = make_slave_consensus_session(0, None);
assert_eq!(session.on_node_error(&NodeId::from_low_u64_be(1), Error::AccessDenied), Err(Error::ConsensusUnreachable));
assert_eq!(session.state(), ConsensusSessionState::Failed);
}
#[test]
fn consensus_sessions_fails_with_temp_error_if_node_error_received_by_uninitialized_slave_from_master() {
let mut session = make_slave_consensus_session(0, None);
assert_eq!(session.on_node_error(&NodeId::from_low_u64_be(1), Error::NodeDisconnected).unwrap_err(), Error::ConsensusTemporaryUnreachable);
}
#[test]
fn consensus_session_continues_if_node_error_received_by_master_during_establish_and_enough_nodes_left() {
let mut session = make_master_consensus_session(1, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2), NodeId::from_low_u64_be(3)].into_iter().collect()).unwrap();
assert_eq!(session.on_node_error(&NodeId::from_low_u64_be(2), Error::AccessDenied), Ok(false));
}
#[test]
fn consensus_session_fails_if_node_error_received_by_master_during_establish_and_not_enough_nodes_left() {
let mut session = make_master_consensus_session(1, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2)].into_iter().collect()).unwrap();
assert_eq!(session.on_node_error(&NodeId::from_low_u64_be(2), Error::AccessDenied), Err(Error::ConsensusUnreachable));
assert_eq!(session.state(), ConsensusSessionState::Failed);
}
#[test]
fn consensus_session_continues_if_node2_error_received_by_master_after_consensus_established_and_enough_nodes_left() {
let mut session = make_master_consensus_session(1, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2), NodeId::from_low_u64_be(3)].into_iter().collect()).unwrap();
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
assert_eq!(session.on_node_error(&NodeId::from_low_u64_be(2), Error::AccessDenied), Ok(false));
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
}
#[test]
fn consensus_session_continues_if_node3_error_received_by_master_after_consensus_established_and_enough_nodes_left() {
let mut session = make_master_consensus_session(1, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2), NodeId::from_low_u64_be(3)].into_iter().collect()).unwrap();
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
assert_eq!(session.on_node_error(&NodeId::from_low_u64_be(3), Error::AccessDenied), Ok(false));
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
}
#[test]
fn consensus_session_fails_if_node_error_received_by_master_after_consensus_established_and_not_enough_nodes_left() {
let mut session = make_master_consensus_session(1, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2)].into_iter().collect()).unwrap();
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
assert_eq!(session.on_node_error(&NodeId::from_low_u64_be(2), Error::AccessDenied), Err(Error::ConsensusUnreachable));
assert_eq!(session.state(), ConsensusSessionState::Failed);
}
#[test]
fn consensus_session_continues_if_node_error_received_from_slave_not_participating_in_computation() {
let mut session = make_master_consensus_session(1, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2), NodeId::from_low_u64_be(3), NodeId::from_low_u64_be(4)].into_iter().collect()).unwrap();
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
session.on_consensus_message(&NodeId::from_low_u64_be(3), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
session.disseminate_jobs(SquaredSumJobExecutor, DummyJobTransport::default(), false).unwrap();
assert_eq!(session.on_node_error(&NodeId::from_low_u64_be(3), Error::AccessDenied), Ok(false));
assert_eq!(session.on_node_error(&NodeId::from_low_u64_be(4), Error::AccessDenied), Ok(false));
assert_eq!(session.state(), ConsensusSessionState::WaitingForPartialResults);
}
#[test]
fn consensus_session_restarts_if_node_error_received_from_slave_participating_in_computation_and_enough_nodes_left() {
let mut session = make_master_consensus_session(1, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2), NodeId::from_low_u64_be(3), NodeId::from_low_u64_be(4)].into_iter().collect()).unwrap();
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
session.disseminate_jobs(SquaredSumJobExecutor, DummyJobTransport::default(), false).unwrap();
assert_eq!(session.state(), ConsensusSessionState::WaitingForPartialResults);
session.on_consensus_message(&NodeId::from_low_u64_be(3), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
assert_eq!(session.on_node_error(&NodeId::from_low_u64_be(2), Error::AccessDenied), Ok(true));
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
session.disseminate_jobs(SquaredSumJobExecutor, DummyJobTransport::default(), false).unwrap();
assert_eq!(session.state(), ConsensusSessionState::WaitingForPartialResults);
assert_eq!(session.on_node_error(&NodeId::from_low_u64_be(3), Error::AccessDenied), Ok(false));
assert_eq!(session.state(), ConsensusSessionState::EstablishingConsensus);
}
#[test]
fn consensus_session_fails_if_node_error_received_from_slave_participating_in_computation_and_not_enough_nodes_left() {
let mut session = make_master_consensus_session(1, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2)].into_iter().collect()).unwrap();
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
session.disseminate_jobs(SquaredSumJobExecutor, DummyJobTransport::default(), false).unwrap();
assert_eq!(session.on_node_error(&NodeId::from_low_u64_be(2), Error::AccessDenied), Err(Error::ConsensusUnreachable));
assert_eq!(session.state(), ConsensusSessionState::Failed);
}
#[test]
fn consensus_session_fails_if_uninitialized_session_timeouts() {
let mut session = make_master_consensus_session(1, None, None);
assert_eq!(session.on_session_timeout(), Err(Error::ConsensusTemporaryUnreachable));
}
#[test]
fn consensus_session_continues_if_session_timeouts_and_enough_nodes_left_for_computation() {
let mut session = make_master_consensus_session(1, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2), NodeId::from_low_u64_be(3), NodeId::from_low_u64_be(4)].into_iter().collect()).unwrap();
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
session.disseminate_jobs(SquaredSumJobExecutor, DummyJobTransport::default(), false).unwrap();
assert_eq!(session.state(), ConsensusSessionState::WaitingForPartialResults);
session.on_consensus_message(&NodeId::from_low_u64_be(3), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
assert_eq!(session.on_session_timeout(), Ok(true));
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
session.disseminate_jobs(SquaredSumJobExecutor, DummyJobTransport::default(), false).unwrap();
assert_eq!(session.state(), ConsensusSessionState::WaitingForPartialResults);
assert_eq!(session.on_session_timeout(), Ok(false));
assert_eq!(session.state(), ConsensusSessionState::EstablishingConsensus);
}
#[test]
fn consensus_session_continues_if_session_timeouts_and_not_enough_nodes_left_for_computation() {
let mut session = make_master_consensus_session(1, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2)].into_iter().collect()).unwrap();
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
session.disseminate_jobs(SquaredSumJobExecutor, DummyJobTransport::default(), false).unwrap();
assert_eq!(session.state(), ConsensusSessionState::WaitingForPartialResults);
assert_eq!(session.on_session_timeout(), Err(Error::ConsensusUnreachable));
assert_eq!(session.state(), ConsensusSessionState::Failed);
}
#[test]
fn same_consensus_group_returned_after_second_selection() {
let mut session = make_master_consensus_session(1, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2), NodeId::from_low_u64_be(3)].into_iter().collect()).unwrap();
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
session.on_consensus_message(&NodeId::from_low_u64_be(3), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
let consensus_group1 = session.select_consensus_group().unwrap().clone();
let consensus_group2 = session.select_consensus_group().unwrap().clone();
assert_eq!(consensus_group1, consensus_group2);
}
#[test]
fn consensus_session_complete_2_of_4() {
let mut session = make_master_consensus_session(1, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2), NodeId::from_low_u64_be(3), NodeId::from_low_u64_be(3)].into_iter().collect()).unwrap();
assert_eq!(session.state(), ConsensusSessionState::EstablishingConsensus);
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
session.disseminate_jobs(SquaredSumJobExecutor, DummyJobTransport::default(), false).unwrap();
assert_eq!(session.state(), ConsensusSessionState::WaitingForPartialResults);
session.on_job_response(&NodeId::from_low_u64_be(2), 16).unwrap();
assert_eq!(session.state(), ConsensusSessionState::Finished);
assert_eq!(session.result(), Ok(20));
}
#[test]
fn consensus_session_complete_2_of_4_after_restart() {
let mut session = make_master_consensus_session(1, None, None);
session.initialize(vec![NodeId::from_low_u64_be(1), NodeId::from_low_u64_be(2), NodeId::from_low_u64_be(3), NodeId::from_low_u64_be(4)].into_iter().collect()).unwrap();
assert_eq!(session.state(), ConsensusSessionState::EstablishingConsensus);
session.on_consensus_message(&NodeId::from_low_u64_be(2), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
session.disseminate_jobs(SquaredSumJobExecutor, DummyJobTransport::default(), false).unwrap();
assert_eq!(session.state(), ConsensusSessionState::WaitingForPartialResults);
session.on_consensus_message(&NodeId::from_low_u64_be(3), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
assert_eq!(session.on_node_error(&NodeId::from_low_u64_be(2), Error::AccessDenied).unwrap(), true);
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
session.disseminate_jobs(SquaredSumJobExecutor, DummyJobTransport::default(), false).unwrap();
assert_eq!(session.state(), ConsensusSessionState::WaitingForPartialResults);
assert_eq!(session.on_node_error(&NodeId::from_low_u64_be(3), Error::AccessDenied).unwrap(), false);
assert_eq!(session.state(), ConsensusSessionState::EstablishingConsensus);
session.on_consensus_message(&NodeId::from_low_u64_be(4), &ConsensusMessage::ConfirmConsensusInitialization(ConfirmConsensusInitialization {
is_confirmed: true,
})).unwrap();
assert_eq!(session.state(), ConsensusSessionState::ConsensusEstablished);
session.disseminate_jobs(SquaredSumJobExecutor, DummyJobTransport::default(), false).unwrap();
assert_eq!(session.state(), ConsensusSessionState::WaitingForPartialResults);
session.on_job_response(&NodeId::from_low_u64_be(4), 16).unwrap();
assert_eq!(session.state(), ConsensusSessionState::Finished);
assert_eq!(session.result(), Ok(20));
}
}
| 51.275819 | 246 | 0.783583 |
54bda3fe0bd1a7ab7a243e3d1d8784727b40a4eb | 558 | asm | Assembly | oeis/016/A016942.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/016/A016942.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/016/A016942.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A016942: a(n) = (6*n + 2)^10.
; 1024,1073741824,289254654976,10240000000000,141167095653376,1125899906842624,6278211847988224,27197360938418176,97656250000000000,303305489096114176,839299365868340224,2113922820157210624,4923990397355877376,10737418240000000000,22130157888803070976,43438845422363213824,81707280688754689024,148024428491834392576,259374246010000000000,441143507864991563776,730463141542791783424,1180591620717411303424,1866585911861003723776,2892546549760000000000,4400768849616443032576,6583182266716099969024
mul $0,6
add $0,2
pow $0,10
| 79.714286 | 496 | 0.894265 |
eab6221573bf8586208dc6d83421375fd530eda7 | 230 | sql | SQL | data/shapefile_schema/buffered_land.sql | rinnyB/vector-datasource | 024909ed8245a4ad4a25c908413ba3602de6c335 | [
"MIT"
] | 1 | 2018-01-03T21:26:27.000Z | 2018-01-03T21:26:27.000Z | data/shapefile_schema/buffered_land.sql | rinnyB/vector-datasource | 024909ed8245a4ad4a25c908413ba3602de6c335 | [
"MIT"
] | 2 | 2021-03-31T20:22:37.000Z | 2021-12-13T20:50:11.000Z | data/shapefile_schema/buffered_land.sql | rinnyB/vector-datasource | 024909ed8245a4ad4a25c908413ba3602de6c335 | [
"MIT"
] | 1 | 2019-06-19T19:14:42.000Z | 2019-06-19T19:14:42.000Z |
CREATE TABLE "buffered_land" (
gid serial,
"featurecla" varchar(32),
"scalerank" numeric);
ALTER TABLE "buffered_land" ADD PRIMARY KEY (gid);
SELECT AddGeometryColumn('','buffered_land','the_geom','3857','MULTIPOLYGON',2);
| 28.75 | 80 | 0.730435 |
7207bdc200ea5760dbdbed278c9343c10c86e6bc | 21,151 | dart | Dart | lib/widgets/http_list.dart | OkunaOrg/openbook-app | ce6040af5b9ed9a41ef304348f8c44a67935fd27 | [
"BSD-3-Clause",
"MIT"
] | 117 | 2019-03-15T17:48:07.000Z | 2019-07-28T21:10:05.000Z | lib/widgets/http_list.dart | OkunaOrg/openbook-app | ce6040af5b9ed9a41ef304348f8c44a67935fd27 | [
"BSD-3-Clause",
"MIT"
] | 161 | 2019-03-16T13:57:08.000Z | 2019-07-24T15:09:48.000Z | lib/widgets/http_list.dart | OkunaOrg/openbook-app | ce6040af5b9ed9a41ef304348f8c44a67935fd27 | [
"BSD-3-Clause",
"MIT"
] | 35 | 2019-03-16T17:30:22.000Z | 2019-07-27T07:04:44.000Z | import 'dart:async';
import 'package:Okuna/provider.dart';
import 'package:Okuna/services/httpie.dart';
import 'package:Okuna/services/localization.dart';
import 'package:Okuna/services/toast.dart';
import 'package:Okuna/widgets/alerts/button_alert.dart';
import 'package:Okuna/widgets/icon.dart';
import 'package:Okuna/widgets/load_more.dart';
import 'package:Okuna/widgets/progress_indicator.dart';
import 'package:Okuna/widgets/search_bar.dart';
import 'package:Okuna/widgets/theming/text.dart';
import 'package:Okuna/widgets/tile_group_title.dart';
import 'package:async/async.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'buttons/button.dart';
import 'checkbox.dart';
class OBHttpList<T> extends StatefulWidget {
final OBHttpListItemBuilder<T> listItemBuilder;
final OBHttpListItemBuilder<T>? selectedListItemBuilder;
final OBHttpListItemBuilder<T>? searchResultListItemBuilder;
final OBHttpListSearcher<T>? listSearcher;
final OBHttpListRefresher<T> listRefresher;
final OBHttpListOnScrollLoader<T> listOnScrollLoader;
final OBHttpListController? controller;
final String resourceSingularName;
final String resourcePluralName;
final EdgeInsets padding;
final IndexedWidgetBuilder? separatorBuilder;
final ScrollPhysics physics;
final List<Widget>? prependedItems;
final OBHttpListSecondaryRefresher? secondaryRefresher;
final OBHttpListSelectionChangedListener<T>? onSelectionChanged;
final OBHttpListSelectionChangedListener<T>? onSelectionSubmitted;
final OBHttpListSelectionSubmitter<T>? selectionSubmitter;
final bool hasSearchBar;
final bool isSelectable;
const OBHttpList(
{Key? key,
required this.listItemBuilder,
required this.listRefresher,
required this.listOnScrollLoader,
required this.resourceSingularName,
required this.resourcePluralName,
this.physics = const ClampingScrollPhysics(),
this.padding = const EdgeInsets.all(0),
this.listSearcher,
this.searchResultListItemBuilder,
this.controller,
this.separatorBuilder,
this.prependedItems,
this.hasSearchBar = true,
this.secondaryRefresher,
this.isSelectable = false,
this.onSelectionChanged,
this.onSelectionSubmitted,
this.selectionSubmitter,
this.selectedListItemBuilder})
: super(key: key);
@override
OBHttpListState createState() {
return OBHttpListState<T>();
}
}
class OBHttpListState<T> extends State<OBHttpList<T>> {
late ToastService _toastService;
late LocalizationService _localizationService;
GlobalKey<RefreshIndicatorState> _listRefreshIndicatorKey =
GlobalKey<RefreshIndicatorState>();
late ScrollController _listScrollController;
List<T> _list = [];
List<T> _listSearchResults = [];
List<T> _listSelection = [];
late List<Widget> _prependedItems;
late bool _hasSearch;
late String _searchQuery;
late bool _needsBootstrap;
late bool _refreshInProgress;
late bool _searchRequestInProgress;
late bool _selectionSubmissionInProgress;
late bool _loadingFinished;
late bool _wasBootstrapped;
CancelableOperation? _searchOperation;
CancelableOperation? _refreshOperation;
CancelableOperation? _loadMoreOperation;
CancelableOperation? _submitSelectionOperation;
ScrollPhysics noItemsPhysics = const AlwaysScrollableScrollPhysics();
@override
void initState() {
super.initState();
if (widget.controller != null) widget.controller!.attach(this);
_listScrollController = ScrollController();
_loadingFinished = false;
_needsBootstrap = true;
_refreshInProgress = false;
_wasBootstrapped = false;
_searchRequestInProgress = false;
_selectionSubmissionInProgress = false;
_hasSearch = false;
_list = [];
_searchQuery = '';
_prependedItems =
widget.prependedItems != null ? widget.prependedItems!.toList() : [];
}
void insertListItem(T listItem,
{bool shouldScrollToTop = true, bool shouldRefresh = false}) {
this._list.insert(0, listItem);
this._setList(this._list.toList());
if (shouldScrollToTop) scrollToTop(shouldRefresh: shouldRefresh);
}
void removeListItem(T listItem) {
setState(() {
_list.remove(listItem);
_listSearchResults.remove(listItem);
});
}
void scrollToTop({bool shouldRefresh = true}) {
if (_listScrollController.hasClients) {
if (_listScrollController.offset == 0 && shouldRefresh) {
_refreshWithRefreshIndicator();
}
_listScrollController.animateTo(
0.0,
curve: Curves.easeOut,
duration: const Duration(milliseconds: 300),
);
}
}
void dispose() {
super.dispose();
if (_searchOperation != null) _searchOperation!.cancel();
if (_loadMoreOperation != null) _loadMoreOperation!.cancel();
if (_refreshOperation != null) _refreshOperation!.cancel();
_submitSelectionOperation?.cancel();
}
@override
Widget build(BuildContext context) {
if (_needsBootstrap) {
var provider = OpenbookProvider.of(context);
_localizationService = provider.localizationService;
_toastService = provider.toastService;
_bootstrap();
_needsBootstrap = false;
}
List<Widget> columnItems = [];
if (widget.listSearcher != null && widget.hasSearchBar) {
columnItems.add(SizedBox(
child: OBSearchBar(
onSearch: _onSearch,
hintText: _localizationService
.user_search__list_search_text(widget.resourcePluralName.toLowerCase()),
)));
}
Widget listItems = _hasSearch ? _buildSearchResultsList() : _buildList();
if (widget.isSelectable) {
listItems = IgnorePointer(
ignoring: _selectionSubmissionInProgress,
child: listItems,
);
}
columnItems.add(Expanded(
child: listItems,
));
if (widget.isSelectable) {
columnItems.add(_buildSelectionActionButtons());
}
return Column(
children: columnItems,
mainAxisSize: MainAxisSize.max,
);
}
Widget _buildSelectionActionButtons() {
return Padding(
padding: const EdgeInsets.all(20),
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Row(
children: <Widget>[
Expanded(
child: OBButton(
size: OBButtonSize.large,
child: Text(
_localizationService.user_search__selection_clear_all),
type: OBButtonType.highlight,
onPressed: _onClearSelection,
isDisabled: _listSelection.isEmpty),
),
const SizedBox(
width: 20,
),
Expanded(
child: OBButton(
size: OBButtonSize.large,
child: Text(
_localizationService.user_search__selection_submit +
_makeSelectedItemsCount()),
type: OBButtonType.primary,
isLoading: _selectionSubmissionInProgress,
isDisabled: _selectionSubmissionInProgress,
onPressed: _onSubmitSelection,
),
)
],
)
],
),
);
}
Widget _buildSearchResultsList() {
int listItemCount = _listSearchResults.length + 1;
ScrollPhysics physics = listItemCount > 0 ? widget.physics : noItemsPhysics;
return NotificationListener(
onNotification: (ScrollNotification notification) {
// Hide keyboard
FocusScope.of(context).requestFocus(new FocusNode());
return true;
},
child: widget.separatorBuilder != null
? ListView.separated(
separatorBuilder: widget.separatorBuilder!,
padding: widget.padding,
physics: physics,
itemCount: listItemCount,
itemBuilder: _buildSearchResultsListItem)
: ListView.builder(
padding: widget.padding,
physics: physics,
itemCount: listItemCount,
itemBuilder: _buildSearchResultsListItem),
);
}
Widget _buildSearchResultsListItem(BuildContext context, int index) {
if (index == _listSearchResults.length) {
String searchQuery = _searchQuery;
if (_searchRequestInProgress) {
// Search in progress
return ListTile(
leading: const OBProgressIndicator(),
title: OBText(
_localizationService.user_search__searching_for(searchQuery)));
} else if (_listSearchResults.isEmpty) {
// Results were empty
return ListTile(
leading: const OBIcon(OBIcons.sad),
title: OBText(
_localizationService.user_search__no_results_for(searchQuery)));
} else {
return const SizedBox();
}
}
T listItem = _listSearchResults[index];
Widget listItemWidget =
widget.searchResultListItemBuilder!(context, listItem);
if (!widget.isSelectable) return listItemWidget;
return _wrapSelectableListItemWidget(listItem, listItemWidget);
}
Widget _buildList() {
return RefreshIndicator(
key: _listRefreshIndicatorKey,
child: _list.isEmpty && !_refreshInProgress && _wasBootstrapped
? _buildNoList()
: LoadMore(
whenEmptyLoad: false,
isFinish: _loadingFinished,
delegate: OBHttpListLoadMoreDelegate(_localizationService),
child: widget.separatorBuilder != null
? ListView.separated(
separatorBuilder: widget.separatorBuilder!,
controller: _listScrollController,
physics: widget.physics,
padding: widget.padding,
itemCount: _list.length + _prependedItems.length,
itemBuilder: _buildListItem)
: ListView.builder(
controller: _listScrollController,
physics: widget.physics,
padding: widget.padding,
itemCount: _list.length + _prependedItems.length,
itemBuilder: _buildListItem),
onLoadMore: _loadMoreListItems),
onRefresh: _refreshList);
}
Widget _buildNoList() {
List<Widget> items = [];
if (widget.prependedItems != null && widget.prependedItems!.isNotEmpty) {
items.addAll(widget.prependedItems!);
}
items.add(Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
OBButtonAlert(
text: _localizationService
.user_search__list_no_results_found(widget.resourcePluralName.toLowerCase()),
onPressed: _refreshList,
buttonText:
_localizationService.trans('user_search__list_refresh_text'),
buttonIcon: OBIcons.refresh,
assetImage: 'assets/images/stickers/perplexed-owl.png',
)
],
));
return ListView(
controller: _listScrollController,
physics: widget.physics,
padding: widget.padding,
children: items,
);
}
Widget _buildListItem(BuildContext context, int index) {
int itemsIndex = index;
if (_prependedItems.isNotEmpty && index < _prependedItems.length) {
return _prependedItems[index];
}
itemsIndex = index - _prependedItems.length;
T listItem = _list[itemsIndex];
Widget listItemWidget = widget.listItemBuilder(context, listItem);
if (widget.isSelectable) {
listItemWidget = _wrapSelectableListItemWidget(listItem, listItemWidget);
}
return listItemWidget;
}
String _makeSelectedItemsCount() {
if (_listSelection.isEmpty) return '';
return ' (${_listSelection.length})';
}
Widget _wrapSelectableListItemWidget(T listItem, Widget listItemWidget) {
return SizedBox(
child: GestureDetector(
onTap: () => _onWantsToToggleSelection(listItem),
child: Row(
children: <Widget>[
Expanded(
child: listItemWidget,
),
Padding(
padding: const EdgeInsets.only(left: 20),
child: OBCheckbox(
value: _listSelection.contains(listItem),
),
)
],
),
));
}
void _bootstrap() async {
Future.delayed(Duration(milliseconds: 0), () async {
_refreshWithRefreshIndicator();
setState(() {
_wasBootstrapped = true;
});
});
}
Future<void> _refreshList() async {
if (_refreshOperation != null) _refreshOperation!.cancel();
_setLoadingFinished(false);
_setRefreshInProgress(true);
try {
List<Future<dynamic>> refreshFutures = [widget.listRefresher()];
if (widget.secondaryRefresher != null)
refreshFutures.add(widget.secondaryRefresher!());
_refreshOperation =
CancelableOperation.fromFuture(Future.wait(refreshFutures));
List<dynamic> results = await _refreshOperation?.value;
List<T> list = results[0];
_setList(list);
} catch (error) {
_onError(error);
} finally {
_setRefreshInProgress(false);
_refreshOperation = null;
}
}
Future refreshList(
{bool shouldScrollToTop = false,
bool shouldUseRefreshIndicator = false}) async {
if (shouldUseRefreshIndicator) {
_refreshWithRefreshIndicator();
} else {
_refreshList();
}
if (shouldScrollToTop &&
_listScrollController.hasClients &&
_listScrollController.offset != 0) {
scrollToTop();
}
}
void _refreshWithRefreshIndicator(){
// Deactivate if active
_listRefreshIndicatorKey.currentState?.deactivate();
// Activate
_listRefreshIndicatorKey.currentState?.show();
}
Future<bool> _loadMoreListItems() async {
if (_refreshOperation != null) return true;
if (_loadMoreOperation != null) return true;
if (_list.isEmpty) return true;
debugPrint('Loading more list items');
try {
_loadMoreOperation =
CancelableOperation.fromFuture(widget.listOnScrollLoader(_list));
List<T> moreListItems = await _loadMoreOperation?.value;
if (moreListItems.length == 0) {
_setLoadingFinished(true);
} else {
_addListItems(moreListItems);
}
return true;
} catch (error) {
_onError(error);
} finally {
_loadMoreOperation = null;
}
return false;
}
Future _onSearch(String query) {
_setSearchQuery(query);
if (query.isEmpty) {
_setHasSearch(false);
return Future.value();
} else {
_setHasSearch(true);
return _searchWithQuery(query);
}
}
Future _searchWithQuery(String query) async {
if (_searchOperation != null) _searchOperation!.cancel();
_setSearchRequestInProgress(true);
try {
_searchOperation =
CancelableOperation.fromFuture(widget.listSearcher!(_searchQuery));
List<T> listSearchResults = await _searchOperation?.value;
_setListSearchResults(listSearchResults);
} catch (error) {
_onError(error);
} finally {
_setSearchRequestInProgress(false);
_searchOperation = null;
}
}
void _onClearSelection() {
_clearSelection();
}
void _onSubmitSelection() async {
if (_submitSelectionOperation != null) _submitSelectionOperation!.cancel();
_setSelectionSubmissionInProgress(true);
try {
_submitSelectionOperation = CancelableOperation.fromFuture(
widget.selectionSubmitter!(_listSelection));
widget.onSelectionSubmitted!(_listSelection);
} catch (error) {
_onError(error);
} finally {
_setSelectionSubmissionInProgress(false);
_submitSelectionOperation = null;
}
}
void _onWantsToToggleSelection(T listItem) {
if (_listSelection.contains(listItem)) {
_unselectItem(listItem);
} else {
_selectItem(listItem);
}
if (widget.onSelectionChanged != null)
widget.onSelectionChanged!(_listSelection.toList());
}
void _resetListSearchResults() {
_setListSearchResults(_list.toList());
}
void _setListSearchResults(List<T> listSearchResults) {
setState(() {
_listSearchResults = listSearchResults;
});
}
void _setLoadingFinished(bool loadingFinished) {
setState(() {
_loadingFinished = loadingFinished;
});
}
void _setList(List<T> list) {
setState(() {
this._list = list;
_resetListSearchResults();
});
}
void _addListItems(List<T> items) {
setState(() {
this._list.addAll(items);
});
}
void _setSearchQuery(String searchQuery) {
setState(() {
_searchQuery = searchQuery;
});
}
void _setHasSearch(bool hasSearch) {
setState(() {
_hasSearch = hasSearch;
});
}
void _setRefreshInProgress(bool refreshInProgress) {
setState(() {
_refreshInProgress = refreshInProgress;
});
}
void _setSearchRequestInProgress(bool searchRequestInProgress) {
setState(() {
_searchRequestInProgress = searchRequestInProgress;
});
}
void _selectItem(T item) {
setState(() {
_listSelection.add(item);
});
}
void _unselectItem(T item) {
setState(() {
_listSelection.remove(item);
});
}
void _clearSelection() {
setState(() {
_listSelection = [];
});
}
void _setSelectionSubmissionInProgress(bool selectionSubmissionInProgress) {
setState(() {
_selectionSubmissionInProgress = selectionSubmissionInProgress;
});
}
void _onError(error) async {
if (error is HttpieConnectionRefusedError) {
_toastService.error(
message: error.toHumanReadableMessage(), context: context);
} else if (error is HttpieRequestError) {
String? errorMessage = await error.toHumanReadableMessage();
_toastService.error(message: errorMessage ?? _localizationService.trans('error__unknown_error'), context: context);
} else {
_toastService.error(
message: _localizationService.trans('error__unknown_error'),
context: context);
throw error;
}
}
}
class OBHttpListController<T> {
OBHttpListState? _state;
void attach(OBHttpListState state) {
_state = state;
}
void insertListItem(T listItem,
{bool shouldScrollToTop = true, bool shouldRefresh = false}) {
if (!_isAttached() || !_state!.mounted) {
debugPrint('Tried to insertListItem in unattached OBHttpList');
return;
}
_state!.insertListItem(listItem,
shouldScrollToTop: shouldScrollToTop, shouldRefresh: shouldRefresh);
}
void removeListItem(T listItem) {
if (!_isAttached() || !_state!.mounted) return;
_state!.removeListItem(listItem);
}
void scrollToTop() {
if (!_isAttached() || !_state!.mounted) return;
_state!.scrollToTop();
}
Future refresh(
{bool shouldScrollToTop = false,
bool shouldUseRefreshIndicator = false}) async {
if (_state == null || !_state!.mounted) return;
_state!.refreshList(
shouldScrollToTop: shouldScrollToTop,
shouldUseRefreshIndicator: shouldUseRefreshIndicator);
}
Future search(String query) {
return _state!._onSearch(query);
}
Future clearSearch() {
return _state!._onSearch('');
}
bool hasItems() {
return _state!._list.isNotEmpty;
}
T firstItem() {
return _state!._list.first;
}
bool _isAttached() {
return _state != null;
}
}
typedef Widget OBHttpListItemBuilder<T>(BuildContext context, T listItem);
typedef Future<List<T>> OBHttpListSearcher<T>(String searchQuery);
typedef Future<List<T>> OBHttpListRefresher<T>();
typedef Future OBHttpListSecondaryRefresher<T>();
typedef Future<List<T>> OBHttpListOnScrollLoader<T>(List<T> currentList);
typedef void OBHttpListSelectionChangedListener<T>(List<T> selectionItems);
typedef void OBHttpListSelectionSubmittedListener<T>(List<T> selectionItems);
typedef Future OBHttpListSelectionSubmitter<T>(List<T> selectionItems);
class OBHttpListLoadMoreDelegate extends LoadMoreDelegate {
final LocalizationService localizationService;
const OBHttpListLoadMoreDelegate(this.localizationService);
@override
Widget buildChild(LoadMoreStatus status,
{LoadMoreTextBuilder builder = DefaultLoadMoreTextBuilder.chinese}) {
if (status == LoadMoreStatus.fail) {
return SizedBox(
child: Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
OBIcon(OBIcons.refresh),
const SizedBox(
width: 10.0,
),
OBText(localizationService.trans('user_search__list_retry'))
],
),
);
}
if (status == LoadMoreStatus.loading) {
return SizedBox(
child: Center(
child: OBProgressIndicator(),
));
}
return const SizedBox();
}
}
| 28.894809 | 121 | 0.656754 |
7525386a05f71f2bdfccfd6b6f4a367ded65821d | 4,703 | cs | C# | tlab/core/helpers/Game/missionGroup.cs | Torque3D-Resources/TorqueLab-v0.5-Alpha | 8ccb8419af3a017fbd47aa2d16c2e864182432b3 | [
"MIT"
] | null | null | null | tlab/core/helpers/Game/missionGroup.cs | Torque3D-Resources/TorqueLab-v0.5-Alpha | 8ccb8419af3a017fbd47aa2d16c2e864182432b3 | [
"MIT"
] | null | null | null | tlab/core/helpers/Game/missionGroup.cs | Torque3D-Resources/TorqueLab-v0.5-Alpha | 8ccb8419af3a017fbd47aa2d16c2e864182432b3 | [
"MIT"
] | 1 | 2021-11-20T13:36:34.000Z | 2021-11-20T13:36:34.000Z | //==============================================================================
// HelpersLab -> MissionGroup related helpers
// Copyright (c) 2015 All Right Reserved, http://nordiklab.com/
//------------------------------------------------------------------------------
//==============================================================================
//==============================================================================
// Update the GuiControl data field depending of the Class
//==============================================================================
//==============================================================================
// SEP_GroundCover.getMissionGroundCover();
function getLabMissionObjectClassList( %classes,%condition )
{
%list = checkMissionSimGroupForClass(MissionGroup,%classes,%condition);
return %list;
}
//------------------------------------------------------------------------------
//==============================================================================
// Prepare the default config array for the Scene Editor Plugin
function checLabMissionSimGroupForClass(%group,%classes,%condition )
{
foreach(%obj in %group)
{
if (strFind(%classes,%obj.getClassname()))
{
if (%condition !$="")
{
%rejected = "";
%condField = getWord(%condition,0);
%condValue = trim(removeWord(%condition,0));
%objValue = %obj.getFieldValue(%condField);
devLog("ConValue",%condValue,"ObjValue",%objValue);
if (%condValue $="" && %objValue !$= "")
%rejected = "Obj value is not empty";
else if (%condValue $= "NotEmpty" && %objValue $= "")
%rejected = "Obj Value is empty";
else if (%condValue $="isObject" && !isObject(%objValue ))
%rejected = "ObjValue is not an object";
else if (%condValue !$=%objValue)
%rejected = "ObjValue don't match the condition";
}
if (%rejected $= "")
%list = strAddWord(%list,%obj.getId());
}
else if (%obj.getClassname() $= "SimGroup")
{
%listAdd = checkMissionSimGroupForClass(%obj,%classes);
%list = strAddWord(%list,%listAdd);
}
}
return %list;
}
//------------------------------------------------------------------------------
//==============================================================================
// Update the GuiControl data field depending of the Class
//==============================================================================
//----------------------------------------------------------------------------
// A function used in order to easily parse the MissionGroup for classes . I'm pretty
// sure at this point the function can be easily modified to search the any group as well.
function parseMissionGroup( %className, %childGroup )
{
if( getWordCount( %childGroup ) == 0)
%currentGroup = "MissionGroup";
else
%currentGroup = %childGroup;
for(%i = 0; %i < (%currentGroup).getCount(); %i++)
{
if( (%currentGroup).getObject(%i).getClassName() $= %className )
return true;
if( (%currentGroup).getObject(%i).getClassName() $= "SimGroup" )
{
if( parseMissionGroup( %className, (%currentGroup).getObject(%i).getId() ) )
return true;
}
}
}
// A variation of the above used to grab ids from the mission group based on classnames
function parseMissionGroupForIds( %className, %childGroup )
{
if( getWordCount( %childGroup ) == 0)
%currentGroup = "MissionGroup";
else
%currentGroup = %childGroup;
for(%i = 0; %i < (%currentGroup).getCount(); %i++)
{
if( (%currentGroup).getObject(%i).getClassName() $= %className )
%classIds = %classIds @ (%currentGroup).getObject(%i).getId() @ " ";
if( (%currentGroup).getObject(%i).getClassName() $= "SimGroup" )
%classIds = %classIds @ parseMissionGroupForIds( %className, (%currentGroup).getObject(%i).getId());
}
return %classIds;
}
//==============================================================================
// Mission AmbientGroup System
//==============================================================================
function setAmbientGroupId( %id )
{
logd("setAmbientGroupId( %id )",%id);
if (!isObject(mgAmbientGroup))
{
return;
}
if (%id $= "")
%id = 0;
foreach(%group in mgAmbientGroup)
{
foreach(%obj in %group)
%obj.hidden = "1";
}
%curGroup = mgAmbientGroup.getObject(%id);
if (!isObject(%curGroup))
{
%curGroup = mgAmbientGroup.getObject(0);
%id = "0";
}
foreach(%obj in %curGroup)
%obj.hidden = "0";
SEP_AmbientManager.curAmbientId = %id;
%name = %curGroup.internalName;
if (%name $= "")
%name = "Unnamed ID " @ %id;
$Mission_AmbientGroup = %name;
$Mission_AmbientGroupId = %id;
}
//------------------------------------------------------------------------------ | 31.777027 | 103 | 0.491601 |
059ab127bfb823a707fdf74d1412cec7a63c1bce | 581 | swift | Swift | Algorithms/Search/BinarySearch.playground/Contents.swift | smalam119/classic-problem-solving-algorithms-and-data-structures-in-swift | 903ec4a3e1823322f6aa5bab40c8c432914135f0 | [
"Apache-2.0"
] | 26 | 2018-03-04T09:29:07.000Z | 2022-02-18T12:25:09.000Z | Algorithms/Search/BinarySearch.playground/Contents.swift | smalam119/classic-problem-solving-algorithms-and-data-structures-in-swift | 903ec4a3e1823322f6aa5bab40c8c432914135f0 | [
"Apache-2.0"
] | null | null | null | Algorithms/Search/BinarySearch.playground/Contents.swift | smalam119/classic-problem-solving-algorithms-and-data-structures-in-swift | 903ec4a3e1823322f6aa5bab40c8c432914135f0 | [
"Apache-2.0"
] | 13 | 2018-04-14T15:17:45.000Z | 2021-02-10T11:35:11.000Z | // Binary Search
// Sayed Mahmudul Alam
func binarySearch(key: Int, array: [Int], start: Int, end: Int) -> Int {
let mid = start + (end - start) / 2
if(start < end) {
if(key > array[mid]) {
return binarySearch(key: key,array: array,start: mid + 1,end: end)
} else if(key < array[mid]) {
return binarySearch(key: key,array: array ,start: start,end: mid)
} else {
return mid
}
}
return -1
}
let numbers = [1,5,7,8,12]
print(binarySearch(key: 7, array: numbers, start: 0, end: numbers.count))
| 27.666667 | 78 | 0.55938 |
7b788afd946185069ddc86beb0bcc33258f9cf87 | 178 | rb | Ruby | lib/gtin_extras.rb | officeluv/gtin_extras | bdde787cbd38ed7c994ea2978d3e2fbefa0bbad0 | [
"Apache-2.0"
] | null | null | null | lib/gtin_extras.rb | officeluv/gtin_extras | bdde787cbd38ed7c994ea2978d3e2fbefa0bbad0 | [
"Apache-2.0"
] | 3 | 2018-07-27T20:54:21.000Z | 2018-10-01T15:57:41.000Z | lib/gtin_extras.rb | officeluv/gtin_extras | bdde787cbd38ed7c994ea2978d3e2fbefa0bbad0 | [
"Apache-2.0"
] | 1 | 2018-09-26T23:15:17.000Z | 2018-09-26T23:15:17.000Z | # Extend String to include these methods
module GTINExtras
require 'gtin_extras/gtin'
require 'gtin_extras/asin'
require 'gtin_extras/plu'
require 'gtin_extras/isbn'
end
| 22.25 | 40 | 0.780899 |
ddd89ac0a8e38d5d13190f0e51bf6ad84a123442 | 117 | php | PHP | src/config/multicraft.php | demindo-nl/multicraft-api | b486a263c50a6d7e48575ad83c5dccf8c96e6534 | [
"MIT"
] | 3 | 2019-05-29T17:40:38.000Z | 2020-04-17T01:06:06.000Z | src/config/multicraft.php | demindo-nl/multicraft-api | b486a263c50a6d7e48575ad83c5dccf8c96e6534 | [
"MIT"
] | 1 | 2020-04-15T19:22:13.000Z | 2020-04-15T20:08:24.000Z | src/config/multicraft.php | demindo-nl/multicraft-api | b486a263c50a6d7e48575ad83c5dccf8c96e6534 | [
"MIT"
] | null | null | null | <?php
return [
'user' => 'root',
'key' => 'toor',
'url' => 'http://example.com/multicraft/api.php'
];
| 14.625 | 53 | 0.487179 |
965c03b6e2ef7f47c5dd072658342cd63d0e622f | 524 | php | PHP | runtime/cache/0919cfafceb357ceb6ee31ea4629abec/7f/68fd65c3420ae60cac9493136e66d7.php | wanggang826/tpshop_syth | 8e2d9e45402860ee95d602df25d7536d52bcb0ee | [
"Apache-2.0"
] | null | null | null | runtime/cache/0919cfafceb357ceb6ee31ea4629abec/7f/68fd65c3420ae60cac9493136e66d7.php | wanggang826/tpshop_syth | 8e2d9e45402860ee95d602df25d7536d52bcb0ee | [
"Apache-2.0"
] | null | null | null | runtime/cache/0919cfafceb357ceb6ee31ea4629abec/7f/68fd65c3420ae60cac9493136e66d7.php | wanggang826/tpshop_syth | 8e2d9e45402860ee95d602df25d7536d52bcb0ee | [
"Apache-2.0"
] | null | null | null | <?php
//000000000001[{"img_id":473,"goods_id":123,"image_url":"\/public\/upload\/goods\/2016\/04-21\/57186b06906be.jpg"},{"img_id":474,"goods_id":123,"image_url":"\/public\/upload\/goods\/2016\/04-21\/57186b2487f06.jpg"},{"img_id":475,"goods_id":123,"image_url":"\/public\/upload\/goods\/2016\/04-21\/57186b2475e75.jpg"},{"img_id":476,"goods_id":123,"image_url":"\/public\/upload\/goods\/2016\/04-21\/57186b2454036.jpg"},{"img_id":477,"goods_id":123,"image_url":"\/public\/upload\/goods\/2016\/04-21\/57186b243dbe0.jpg"}]
?> | 174.666667 | 515 | 0.696565 |
d374584bb5895aced5a86088aa4ca73c949bba1d | 2,869 | sql | SQL | scripts/setup_db.sql | stbraun/picdb | b81810089955fdf435b601c85d71f887c4de367d | [
"MIT"
] | null | null | null | scripts/setup_db.sql | stbraun/picdb | b81810089955fdf435b601c85d71f887c4de367d | [
"MIT"
] | null | null | null | scripts/setup_db.sql | stbraun/picdb | b81810089955fdf435b601c85d71f887c4de367d | [
"MIT"
] | null | null | null |
-- Database: mypics
-- DROP DATABASE mypics;
CREATE DATABASE mypics
WITH OWNER = postgres
ENCODING = 'UTF8'
TABLESPACE = pg_default
LC_COLLATE = 'C'
LC_CTYPE = 'C'
CONNECTION LIMIT = -1;
-- Sequence: public.groups_id_seq
-- DROP SEQUENCE public.groups_id_seq;
CREATE SEQUENCE public.groups_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
ALTER TABLE public.groups_id_seq
OWNER TO sb;
-- Sequence: public.pictures_id_seq
-- DROP SEQUENCE public.pictures_id_seq;
CREATE SEQUENCE public.pictures_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
ALTER TABLE public.pictures_id_seq
OWNER TO sb;
-- Sequence: public.tags_id_seq
-- DROP SEQUENCE public.tags_id_seq;
CREATE SEQUENCE public.tags_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
ALTER TABLE public.tags_id_seq
OWNER TO sb;
-- Table: public.tags
-- DROP TABLE public.tags;
CREATE TABLE public.tags
(
id integer NOT NULL DEFAULT nextval('tags_id_seq'::regclass),
identifier text NOT NULL,
description text,
parent integer,
CONSTRAINT tags_primary_key PRIMARY KEY (id),
CONSTRAINT tags_parent FOREIGN KEY (parent)
REFERENCES public.groups (id) MATCH SIMPLE
ON UPDATE RESTRICT ON DELETE RESTRICT,
CONSTRAINT tags_uq UNIQUE (identifier, parent)
)
WITH (
OIDS=FALSE
);
ALTER TABLE public.tags
OWNER TO sb;
-- Table: public.pictures
-- DROP TABLE public.pictures;
CREATE TABLE public.pictures
(
id integer NOT NULL DEFAULT nextval('pictures_id_seq'::regclass),
description text,
identifier text NOT NULL,
path text NOT NULL,
CONSTRAINT pictures_primary_key PRIMARY KEY (id),
CONSTRAINT pictures_uq UNIQUE (path)
)
WITH (
OIDS=FALSE
);
ALTER TABLE public.pictures
OWNER TO sb;
-- Table: public.groups
-- DROP TABLE public.groups;
CREATE TABLE public.groups
(
id integer NOT NULL DEFAULT nextval('groups_id_seq'::regclass),
identifier text NOT NULL,
description text,
parent integer,
CONSTRAINT groups_primary_key PRIMARY KEY (id),
CONSTRAINT groups_parent FOREIGN KEY (parent)
REFERENCES public.groups (id) MATCH SIMPLE
ON UPDATE RESTRICT ON DELETE RESTRICT,
CONSTRAINT groups_uq UNIQUE (identifier, parent)
)
WITH (
OIDS=FALSE
);
ALTER TABLE public.groups
OWNER TO sb;
-- Table: public.picture2group
-- DROP TABLE public.picture2group;
CREATE TABLE public.picture2group
(
picture integer NOT NULL,
"group" integer NOT NULL,
CONSTRAINT p2g_primary_key PRIMARY KEY (picture, "group")
)
WITH (
OIDS=FALSE
);
ALTER TABLE public.picture2group
OWNER TO sb;
-- Table: public.picture2tag
-- DROP TABLE public.picture2tag;
CREATE TABLE public.picture2tag
(
picture integer NOT NULL,
tag integer NOT NULL,
CONSTRAINT p2t_primary_key PRIMARY KEY (picture, tag)
)
WITH (
OIDS=FALSE
);
ALTER TABLE public.picture2tag
OWNER TO sb;
| 18.62987 | 67 | 0.761241 |
80c79423d87756f60b6038a5f75d6810ec3e34f8 | 2,334 | java | Java | app/src/main/java/com/epicodus/foodfinder/ui/SearchActivity.java | Farnoosh63/FoodFinder | 26d6d44a9365d1d14b09a5bd54171c85dcb61c03 | [
"MIT",
"Unlicense"
] | null | null | null | app/src/main/java/com/epicodus/foodfinder/ui/SearchActivity.java | Farnoosh63/FoodFinder | 26d6d44a9365d1d14b09a5bd54171c85dcb61c03 | [
"MIT",
"Unlicense"
] | null | null | null | app/src/main/java/com/epicodus/foodfinder/ui/SearchActivity.java | Farnoosh63/FoodFinder | 26d6d44a9365d1d14b09a5bd54171c85dcb61c03 | [
"MIT",
"Unlicense"
] | null | null | null | package com.epicodus.foodfinder.ui;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import com.epicodus.foodfinder.R;
import com.epicodus.foodfinder.adapter.FoodListAdapter;
import com.epicodus.foodfinder.models.Food;
import com.epicodus.foodfinder.services.FoodService;
import java.io.IOException;
import java.util.ArrayList;
import butterknife.Bind;
import butterknife.ButterKnife;
import okhttp3.Call;
import okhttp3.Callback;
import okhttp3.Response;
public class SearchActivity extends AppCompatActivity {
@Bind(R.id.recyclerView) RecyclerView mRecyclerView;
private FoodListAdapter mAdapter;
public ArrayList<Food> mFoods = new ArrayList<>();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_search);
ButterKnife.bind(this);
Intent intent = getIntent();
String food = intent.getStringExtra("food");
getFoods(food);
}
private void getFoods(String food) {
final FoodService foodService = new FoodService();
foodService.findFoods(food, new Callback() {
@Override
public void onFailure(Call call, IOException e) {
e.printStackTrace();
}
@Override
public void onResponse(Call call, Response response) throws IOException {
String jsonData = response.body().string();
mFoods = foodService.processResults(jsonData);
SearchActivity.this.runOnUiThread(new Runnable() {
@Override
public void run() {
mAdapter = new FoodListAdapter(getApplicationContext(), mFoods);
mRecyclerView.setAdapter(mAdapter);
RecyclerView.LayoutManager layoutManager = new LinearLayoutManager(SearchActivity.this);
mRecyclerView.setLayoutManager(layoutManager);
mRecyclerView.setHasFixedSize(true);
}
});
}
});
}
}
| 28.120482 | 116 | 0.639674 |
11f8d579babdaaf36c5c0ed734680f6e8304457b | 9,782 | cc | C++ | net/ssl/client_cert_store_nss_unittest.cc | zipated/src | 2b8388091c71e442910a21ada3d97ae8bc1845d3 | [
"BSD-3-Clause"
] | 2,151 | 2020-04-18T07:31:17.000Z | 2022-03-31T08:39:18.000Z | net/ssl/client_cert_store_nss_unittest.cc | cangulcan/src | 2b8388091c71e442910a21ada3d97ae8bc1845d3 | [
"BSD-3-Clause"
] | 395 | 2020-04-18T08:22:18.000Z | 2021-12-08T13:04:49.000Z | net/ssl/client_cert_store_nss_unittest.cc | cangulcan/src | 2b8388091c71e442910a21ada3d97ae8bc1845d3 | [
"BSD-3-Clause"
] | 338 | 2020-04-18T08:03:10.000Z | 2022-03-29T12:33:22.000Z | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/ssl/client_cert_store_nss.h"
#include <cert.h>
#include <certt.h>
#include <pk11pub.h>
#include <memory>
#include <string>
#include "base/bind.h"
#include "base/files/file_util.h"
#include "base/memory/ref_counted.h"
#include "base/run_loop.h"
#include "base/test/scoped_task_environment.h"
#include "crypto/scoped_test_nss_db.h"
#include "net/cert/pem_tokenizer.h"
#include "net/cert/x509_certificate.h"
#include "net/cert/x509_util_nss.h"
#include "net/ssl/client_cert_identity_test_util.h"
#include "net/ssl/client_cert_store_unittest-inl.h"
#include "net/ssl/ssl_cert_request_info.h"
#include "net/ssl/ssl_private_key.h"
#include "net/ssl/ssl_private_key_test_util.h"
#include "net/test/cert_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/boringssl/src/include/openssl/ssl.h"
namespace net {
namespace {
void SaveIdentitiesAndQuitCallback(ClientCertIdentityList* out_identities,
base::Closure quit_closure,
ClientCertIdentityList in_identities) {
*out_identities = std::move(in_identities);
quit_closure.Run();
}
void SavePrivateKeyAndQuitCallback(scoped_refptr<net::SSLPrivateKey>* out_key,
base::Closure quit_closure,
scoped_refptr<net::SSLPrivateKey> in_key) {
*out_key = std::move(in_key);
quit_closure.Run();
}
} // namespace
class ClientCertStoreNSSTestDelegate {
public:
ClientCertStoreNSSTestDelegate() = default;
bool SelectClientCerts(const CertificateList& input_certs,
const SSLCertRequestInfo& cert_request_info,
ClientCertIdentityList* selected_identities) {
*selected_identities =
FakeClientCertIdentityListFromCertificateList(input_certs);
// Filters |selected_identities| using the logic being used to filter the
// system store when GetClientCerts() is called.
ClientCertStoreNSS::FilterCertsOnWorkerThread(selected_identities,
cert_request_info);
return true;
}
};
INSTANTIATE_TYPED_TEST_CASE_P(NSS,
ClientCertStoreTest,
ClientCertStoreNSSTestDelegate);
// Tests that ClientCertStoreNSS attempts to build a certificate chain by
// querying NSS before return a certificate.
TEST(ClientCertStoreNSSTest, BuildsCertificateChain) {
base::test::ScopedTaskEnvironment scoped_task_environment;
// Set up a test DB and import client_1.pem and client_1_ca.pem.
crypto::ScopedTestNSSDB test_db;
scoped_refptr<X509Certificate> client_1(ImportClientCertAndKeyFromFile(
GetTestCertsDirectory(), "client_1.pem", "client_1.pk8", test_db.slot()));
ASSERT_TRUE(client_1.get());
scoped_refptr<X509Certificate> client_1_ca(
ImportCertFromFile(GetTestCertsDirectory(), "client_1_ca.pem"));
ASSERT_TRUE(client_1_ca.get());
ASSERT_TRUE(ImportClientCertToSlot(client_1_ca, test_db.slot()));
std::string pkcs8_key;
ASSERT_TRUE(base::ReadFileToString(
GetTestCertsDirectory().AppendASCII("client_1.pk8"), &pkcs8_key));
std::unique_ptr<ClientCertStoreNSS> store(
new ClientCertStoreNSS(ClientCertStoreNSS::PasswordDelegateFactory()));
// These test keys are RSA keys.
std::vector<uint16_t> expected = SSLPrivateKey::DefaultAlgorithmPreferences(
EVP_PKEY_RSA, true /* supports PSS */);
{
// Request certificates matching B CA, |client_1|'s issuer.
scoped_refptr<SSLCertRequestInfo> request(new SSLCertRequestInfo);
request->cert_authorities.push_back(std::string(
reinterpret_cast<const char*>(kAuthority1DN), sizeof(kAuthority1DN)));
ClientCertIdentityList selected_identities;
base::RunLoop loop;
store->GetClientCerts(*request.get(),
base::Bind(SaveIdentitiesAndQuitCallback,
&selected_identities, loop.QuitClosure()));
loop.Run();
// The result be |client_1| with no intermediates.
ASSERT_EQ(1u, selected_identities.size());
scoped_refptr<X509Certificate> selected_cert =
selected_identities[0]->certificate();
EXPECT_TRUE(x509_util::CryptoBufferEqual(client_1->cert_buffer(),
selected_cert->cert_buffer()));
ASSERT_EQ(0u, selected_cert->intermediate_buffers().size());
scoped_refptr<SSLPrivateKey> ssl_private_key;
base::RunLoop key_loop;
selected_identities[0]->AcquirePrivateKey(
base::Bind(SavePrivateKeyAndQuitCallback, &ssl_private_key,
key_loop.QuitClosure()));
key_loop.Run();
ASSERT_TRUE(ssl_private_key);
EXPECT_EQ(expected, ssl_private_key->GetAlgorithmPreferences());
TestSSLPrivateKeyMatches(ssl_private_key.get(), pkcs8_key);
}
{
// Request certificates matching C Root CA, |client_1_ca|'s issuer.
scoped_refptr<SSLCertRequestInfo> request(new SSLCertRequestInfo);
request->cert_authorities.push_back(
std::string(reinterpret_cast<const char*>(kAuthorityRootDN),
sizeof(kAuthorityRootDN)));
ClientCertIdentityList selected_identities;
base::RunLoop loop;
store->GetClientCerts(*request.get(),
base::Bind(SaveIdentitiesAndQuitCallback,
&selected_identities, loop.QuitClosure()));
loop.Run();
// The result be |client_1| with |client_1_ca| as an intermediate.
ASSERT_EQ(1u, selected_identities.size());
scoped_refptr<X509Certificate> selected_cert =
selected_identities[0]->certificate();
EXPECT_TRUE(x509_util::CryptoBufferEqual(client_1->cert_buffer(),
selected_cert->cert_buffer()));
ASSERT_EQ(1u, selected_cert->intermediate_buffers().size());
EXPECT_TRUE(x509_util::CryptoBufferEqual(
client_1_ca->cert_buffer(),
selected_cert->intermediate_buffers()[0].get()));
scoped_refptr<SSLPrivateKey> ssl_private_key;
base::RunLoop key_loop;
selected_identities[0]->AcquirePrivateKey(
base::Bind(SavePrivateKeyAndQuitCallback, &ssl_private_key,
key_loop.QuitClosure()));
key_loop.Run();
ASSERT_TRUE(ssl_private_key);
EXPECT_EQ(expected, ssl_private_key->GetAlgorithmPreferences());
TestSSLPrivateKeyMatches(ssl_private_key.get(), pkcs8_key);
}
}
TEST(ClientCertStoreNSSTest, SubjectPrintableStringContainingUTF8) {
base::test::ScopedTaskEnvironment scoped_task_environment;
crypto::ScopedTestNSSDB test_db;
base::FilePath certs_dir =
GetTestNetDataDirectory().AppendASCII("parse_certificate_unittest");
ASSERT_TRUE(ImportSensitiveKeyFromFile(
certs_dir, "v3_certificate_template.pk8", test_db.slot()));
std::string pkcs8_key;
ASSERT_TRUE(base::ReadFileToString(
certs_dir.AppendASCII("v3_certificate_template.pk8"), &pkcs8_key));
std::string file_data;
ASSERT_TRUE(base::ReadFileToString(
certs_dir.AppendASCII(
"subject_printable_string_containing_utf8_client_cert.pem"),
&file_data));
net::PEMTokenizer pem_tokenizer(file_data, {"CERTIFICATE"});
ASSERT_TRUE(pem_tokenizer.GetNext());
std::string cert_der(pem_tokenizer.data());
ASSERT_FALSE(pem_tokenizer.GetNext());
ScopedCERTCertificate cert(x509_util::CreateCERTCertificateFromBytes(
reinterpret_cast<const uint8_t*>(cert_der.data()), cert_der.size()));
ASSERT_TRUE(cert);
ASSERT_TRUE(ImportClientCertToSlot(cert.get(), test_db.slot()));
std::unique_ptr<ClientCertStoreNSS> store(
new ClientCertStoreNSS(ClientCertStoreNSS::PasswordDelegateFactory()));
// These test keys are RSA keys.
std::vector<uint16_t> expected = SSLPrivateKey::DefaultAlgorithmPreferences(
EVP_PKEY_RSA, true /* supports PSS */);
constexpr uint8_t kAuthorityDN[] = {
0x30, 0x45, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13,
0x02, 0x41, 0x55, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x08,
0x0c, 0x0a, 0x53, 0x6f, 0x6d, 0x65, 0x2d, 0x53, 0x74, 0x61, 0x74, 0x65,
0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x18, 0x49,
0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x20, 0x57, 0x69, 0x64, 0x67,
0x69, 0x74, 0x73, 0x20, 0x50, 0x74, 0x79, 0x20, 0x4c, 0x74, 0x64};
scoped_refptr<SSLCertRequestInfo> request(new SSLCertRequestInfo);
request->cert_authorities.push_back(std::string(
reinterpret_cast<const char*>(kAuthorityDN), sizeof(kAuthorityDN)));
ClientCertIdentityList selected_identities;
base::RunLoop loop;
store->GetClientCerts(*request.get(),
base::Bind(SaveIdentitiesAndQuitCallback,
&selected_identities, loop.QuitClosure()));
loop.Run();
// The result be |cert| with no intermediates.
ASSERT_EQ(1u, selected_identities.size());
scoped_refptr<X509Certificate> selected_cert =
selected_identities[0]->certificate();
EXPECT_TRUE(x509_util::IsSameCertificate(cert.get(), selected_cert.get()));
EXPECT_EQ(0u, selected_cert->intermediate_buffers().size());
scoped_refptr<SSLPrivateKey> ssl_private_key;
base::RunLoop key_loop;
selected_identities[0]->AcquirePrivateKey(base::Bind(
SavePrivateKeyAndQuitCallback, &ssl_private_key, key_loop.QuitClosure()));
key_loop.Run();
ASSERT_TRUE(ssl_private_key);
EXPECT_EQ(expected, ssl_private_key->GetAlgorithmPreferences());
TestSSLPrivateKeyMatches(ssl_private_key.get(), pkcs8_key);
}
// TODO(mattm): is it possible to unittest slot unlocking?
} // namespace net
| 39.926531 | 80 | 0.709978 |
d061b2667b83c4ba7afa29ad4d24f66dd6538166 | 5,878 | swift | Swift | Tests/JSONTests.swift | 40yostudent/FeedKit | 47391924c65e90f28f4eb4ee14e6fa770c861351 | [
"MIT"
] | null | null | null | Tests/JSONTests.swift | 40yostudent/FeedKit | 47391924c65e90f28f4eb4ee14e6fa770c861351 | [
"MIT"
] | null | null | null | Tests/JSONTests.swift | 40yostudent/FeedKit | 47391924c65e90f28f4eb4ee14e6fa770c861351 | [
"MIT"
] | null | null | null | //
// JSONTests.swift
//
// Copyright (c) 2016 - 2018 Nuno Manuel Dias
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
import XCTest
@testable import FeedKit
class JSONTests: BaseTestCase {
func testJSONFeed() {
// Given
let URL = fileURL("json/feed", type: "json")
let parser = FeedParser(URL: URL)
var jsonFeed = JSONFeed()
jsonFeed.version = "https://jsonfeed.org/version/1"
jsonFeed.title = "Title"
jsonFeed.userComment = "User comment"
jsonFeed.homePageURL = "https://example.org/"
jsonFeed.description = "Description"
jsonFeed.feedUrl = "https://example.org/feed.json?p=1"
jsonFeed.nextUrl = "https://example.org/feed.json?p=2"
jsonFeed.icon = "https://example.org/icon.jpg"
jsonFeed.favicon = "https://example.org/favicon.ico"
jsonFeed.expired = false
jsonFeed.author = JSONFeedAuthor(
name: "Brent Simmons",
url: "http://example.org/",
avatar: "https://example.org/avatar.png"
)
jsonFeed.hubs = [
JSONFeedHub(
type: "Type 1",
url: "http://example1.org/"
),
JSONFeedHub(
type: "Type 2",
url: "http://example2.org/"
)
]
jsonFeed.items = [
JSONFeedItem(
id: "http://therecord.co/chris-parrish",
url: "http://therecord.co/chris-parrish",
externalUrl: "http://external.com/example",
title: "Special #1 - Chris Parrish",
contentText: "Chris has worked at Adobe and as a founder of Rogue Sheep, which won an Apple Design Award for Postage. Chris's new company is Aged & Distilled with Guy English - which shipped Napkin, a Mac app for visual collaboration. Chris is also the co-host of The Record. He lives on Bainbridge Island, a quick ferry ride from Seattle.",
contentHtml: "Chris has worked at <a href=\"http://adobe.com/\">Adobe</a> and as a founder of Rogue Sheep, which won an Apple Design Award for Postage. Chris's new company is Aged & Distilled with Guy English - which shipped <a href=\"http://aged-and-distilled.com/napkin/\">Napkin</a>, a Mac app for visual collaboration. Chris is also the co-host of The Record. He lives on <a href=\"http://www.ci.bainbridge-isl.wa.us/\">Bainbridge Island</a>, a quick ferry ride from Seattle.",
summary: "Brent interviews Chris Parrish, co-host of The Record and one-half of Aged & Distilled.",
image: "https://example.org/image.jpg",
bannerImage: "https://example.org/banner.jpg",
datePublished: RFC3339DateFormatter().date(from: "2014-05-09T12:04:00-07:00"),
dateModified: RFC3339DateFormatter().date(from: "2014-05-09T14:04:00-07:00"),
author: JSONFeedAuthor(
name: "Brent Simmons",
url: "http://example.org/",
avatar: "https://example.org/avatar.png"
),
tags: [
"tag1",
"tag2"
],
attachments: [
JSONFeedAttachment(
url: "http://therecord.co/downloads/The-Record-sp1e1-ChrisParrish-128.m4a",
mimeType: "audio/x-m4a",
title: "128Kb's version",
sizeInBytes: 63207998,
durationInSeconds: 6629
),
JSONFeedAttachment(
url: "http://therecord.co/downloads/The-Record-sp1e1-ChrisParrish-256.m4a",
mimeType: "audio/x-m4a",
title: "256Kb's version",
sizeInBytes: 89970236,
durationInSeconds: 6629
)
]
),
JSONFeedItem(
id: "1",
url: "https://example.org/initial-post",
externalUrl: nil,
title: nil,
contentText: nil,
contentHtml: "<p>Hello, world!</p>",
summary: nil,
image: nil,
bannerImage: nil,
datePublished: nil,
dateModified: nil,
author: nil,
tags: nil,
attachments: nil
)
]
do {
// When
let parsedJsonFeed = try parser.parse().get().jsonFeed
// Then
XCTAssertEqual(parsedJsonFeed, jsonFeed)
} catch {
XCTFail(error.localizedDescription)
}
}
}
| 43.540741 | 497 | 0.557843 |
5cb170d5e08cb784c2fe88415fd8cf68035299f6 | 2,094 | asm | Assembly | data/tilesets/forest_collision.asm | zavytar/pokecolorless | 5fa4930f9f90acaff7ae62367e3d9feae0404464 | [
"blessing"
] | null | null | null | data/tilesets/forest_collision.asm | zavytar/pokecolorless | 5fa4930f9f90acaff7ae62367e3d9feae0404464 | [
"blessing"
] | null | null | null | data/tilesets/forest_collision.asm | zavytar/pokecolorless | 5fa4930f9f90acaff7ae62367e3d9feae0404464 | [
"blessing"
] | null | null | null | tilecoll WALL, WALL, WALL, WALL ; 00
tilecoll FLOOR, FLOOR, FLOOR, FLOOR ; 01
tilecoll WATER, WATER, WATER, WATER ; 02
tilecoll WATER, WATER, WATER, WATER ; 03
tilecoll FLOOR, FLOOR, FLOOR, FLOOR ; 04
tilecoll WALL, WALL, WALL, WALL ; 05
tilecoll FLOOR, WARP_CARPET_RIGHT, FLOOR, WARP_CARPET_RIGHT ; 06
tilecoll WATER, WATER, WATER, WATER ; 07
tilecoll HEADBUTT_TREE, HEADBUTT_TREE, HEADBUTT_TREE, FLOOR ; 08
tilecoll HEADBUTT_TREE, HEADBUTT_TREE, FLOOR, FLOOR ; 09
tilecoll WATER, WATER, WATER, WATER ; 0a
tilecoll WATER, WATER, WATER, WATER ; 0b
tilecoll HEADBUTT_TREE, FLOOR, HEADBUTT_TREE, FLOOR ; 0c
tilecoll WATER, WATER, WATER, WATER ; 0d
tilecoll FLOOR, HEADBUTT_TREE, FLOOR, HEADBUTT_TREE ; 0e
tilecoll FLOOR, FLOOR, CUT_TREE, HEADBUTT_TREE ; 0f
tilecoll HEADBUTT_TREE, FLOOR, HEADBUTT_TREE, HEADBUTT_TREE ; 10
tilecoll FLOOR, FLOOR, HEADBUTT_TREE, HEADBUTT_TREE ; 11
tilecoll FLOOR, HEADBUTT_TREE, HEADBUTT_TREE, HEADBUTT_TREE ; 12
tilecoll FLOOR, FLOOR, FLOOR, WALL ; 13
tilecoll HEADBUTT_TREE, FLOOR, FLOOR, FLOOR ; 14
tilecoll FLOOR, HEADBUTT_TREE, FLOOR, FLOOR ; 15
tilecoll FLOOR, FLOOR, HEADBUTT_TREE, FLOOR ; 16
tilecoll FLOOR, FLOOR, FLOOR, HEADBUTT_TREE ; 17
tilecoll WALL, HOP_LEFT, WALL, HOP_LEFT ; 18
tilecoll WALL, HOP_DOWN_LEFT, WALL, WALL ; 19
tilecoll HOP_DOWN, HOP_DOWN, WALL, WALL ; 1a
tilecoll HOP_DOWN_RIGHT, WALL, WALL, WALL ; 1b
tilecoll HOP_DOWN, FLOOR, WALL, FLOOR ; 1c
tilecoll WALL, WALL, WALL, WALL ; 1d
tilecoll WALL, WALL, WALL, WALL ; 1e
tilecoll WALL, WALL, WALL, WALL ; 1f
tilecoll WALL, FLOOR, FLOOR, FLOOR ; 20
tilecoll WALL, WALL, WALL, WALL ; 21
tilecoll WALL, WALL, WALL, WALL ; 22
tilecoll WALL, WALL, WALL, WALL ; 23
tilecoll WALL, WALL, WALL, DOOR ; 24
tilecoll WALL, WALL, WALL, WALL ; 25
tilecoll WALL, WALL, WALL, WALL ; 26
tilecoll WALL, WALL, WALL, WALL ; 27
tilecoll FLOOR, FLOOR, WARP_CARPET_DOWN, WARP_CARPET_DOWN ; 28
tilecoll HEADBUTT_TREE, WARP_CARPET_UP, HEADBUTT_TREE, FLOOR ; 29
tilecoll WARP_CARPET_UP, HEADBUTT_TREE, FLOOR, HEADBUTT_TREE ; 2a
tilecoll FLOOR, FLOOR, FLOOR, FLOOR ; 2b
| 46.533333 | 66 | 0.747851 |
f4c270d8d75e9aebbf24e0cd44345039f612d5d5 | 589 | swift | Swift | VIPER Module.xctemplate/Managed/___FILEBASENAME___InteractorProtocols.swift | kozlek/VIPER | ef0cf9c21d0ce1231ffcd8cae125e4a53dadb72c | [
"MIT"
] | null | null | null | VIPER Module.xctemplate/Managed/___FILEBASENAME___InteractorProtocols.swift | kozlek/VIPER | ef0cf9c21d0ce1231ffcd8cae125e4a53dadb72c | [
"MIT"
] | null | null | null | VIPER Module.xctemplate/Managed/___FILEBASENAME___InteractorProtocols.swift | kozlek/VIPER | ef0cf9c21d0ce1231ffcd8cae125e4a53dadb72c | [
"MIT"
] | null | null | null | //
// ___FILENAME___
// ___PROJECTNAME___
//
// Created by ___FULLUSERNAME___ on ___DATE___.
// Copyright © ___YEAR___ ___ORGANIZATIONNAME___. All rights reserved.
//
import Foundation
protocol ___VARIABLE_productName:identifier___DataSource: AnyObject {
// Data provider methods utilized by presenter
}
protocol ___VARIABLE_productName:identifier___Interaction: AnyObject {
// Interactor actions utilized by presenter
}
protocol ___VARIABLE_productName:identifier___Notification: AnyObject {
// Interactor events utilized by presenter
}
| 20.310345 | 71 | 0.755518 |
916224a96d400f7a6ae99cf12abdc647618fb01a | 416 | dart | Dart | sembast/test/database_perf_test_slow.dart | rafekun/sembast.dart | c62c02dbadd7d16e123fb9405f0f5602ec6e34b3 | [
"BSD-2-Clause"
] | 671 | 2016-08-21T10:10:17.000Z | 2022-03-28T04:40:34.000Z | sembast/test/database_perf_test_slow.dart | rafekun/sembast.dart | c62c02dbadd7d16e123fb9405f0f5602ec6e34b3 | [
"BSD-2-Clause"
] | 227 | 2016-11-02T12:31:20.000Z | 2022-03-13T16:20:10.000Z | sembast/test/database_perf_test_slow.dart | rafekun/sembast.dart | c62c02dbadd7d16e123fb9405f0f5602ec6e34b3 | [
"BSD-2-Clause"
] | 79 | 2018-01-24T14:54:56.000Z | 2022-03-08T11:01:16.000Z | @Timeout(Duration(seconds: 120))
library sembast.database_perf_test_slow;
// basically same as the io runner but with extra output
import 'database_perf_test.dart' as database_perf_test;
import 'test_common.dart';
void main() {
// 1000 too high for dart2js => 500
// 10000 too high for dart2js => 5000
database_perf_test.defineTests(memoryDatabaseContext, 500,
randomChoices: 15, randomCount: 5000);
}
| 29.714286 | 60 | 0.759615 |
40b3842080af100b37930f14a5a42678df3703b1 | 2,714 | py | Python | Week 3/advanced.py | Schalk-Laubscher/2020-Tutorials | d720994d80d255da7958bd0e4d3fa4ca69aae9d7 | [
"MIT"
] | 5 | 2021-08-03T01:40:40.000Z | 2021-09-14T12:07:28.000Z | Week 3/advanced.py | Schalk-Laubscher/2020-Tutorials | d720994d80d255da7958bd0e4d3fa4ca69aae9d7 | [
"MIT"
] | null | null | null | Week 3/advanced.py | Schalk-Laubscher/2020-Tutorials | d720994d80d255da7958bd0e4d3fa4ca69aae9d7 | [
"MIT"
] | 11 | 2021-08-03T02:48:49.000Z | 2021-11-08T06:47:11.000Z | import matplotlib.pyplot as plt
import numpy as np
from scipy.integrate import quad
def smooth_product(u, v, domain=(0, 1)):
approx, _ = quad(lambda x: u(x)*v(x), *domain) # Discard error
return approx
def least_squares(func, basis, inner, **kwargs):
# Take the inner product of each pair of basis
lhs = np.array([
[inner(p, q, **kwargs) for p in basis]
for q in basis
])
# The the inner product of the function with each basis
rhs = np.array([
inner(p, func, **kwargs) for p in basis
])
# Create the approximation
return np.linalg.solve(lhs, rhs)
def Q1():
legendre = ('1', '2*x - 1', '6*x**2 - 6*x + 1')
basis = [ # Generate the functions based off strings
np.vectorize(eval('lambda x:' + poly))
for poly in legendre
]
coeffs = least_squares(
np.exp, basis, smooth_product, domain=(0, 1))
domain = np.linspace(0, 1)
approx = coeffs @ [p(domain) for p in basis]
fig, ax = plt.subplots()
ax.plot(domain, np.exp(domain), label='Exact')
ax.plot(domain, approx, label='Approx')
def Q2():
basis_funcs = [ # Generate the functions based off strings
np.vectorize(eval('lambda x:' + poly))
for poly in ('1', 'x', 'x**2')
]
x_data, y_data = np.loadtxt('data_points.txt', unpack=True)
basis_data = [p(x_data) for p in basis_funcs]
coeffs = least_squares(
y_data, basis_data, np.inner)
domain = np.linspace(x_data.min(), x_data.max())
approx = coeffs @ [p(domain) for p in basis_funcs]
fig, ax = plt.subplots()
ax.scatter(x_data, y_data, label='Exact')
ax.plot(domain, approx, 'k-', label='Approx')
def Q3():
basis = [ # Generate the functions based off strings
eval('lambda x:' + func)
for func in ('np.sin(x)', 'np.sin(2*x)', 'np.sin(3*x)')
]
def function(x):
return x*(np.pi-x)
coeffs = least_squares(
function, basis,
smooth_product, domain=(0, np.pi)
)
for coeff, exact in zip(coeffs, (8/np.pi, 0, 8/(27*np.pi))):
print(f'Coefficient error: {abs(coeff-exact):.3e}')
domain = np.linspace(0, np.pi)
approx = coeffs @ [p(domain) for p in basis]
fig, ax = plt.subplots()
ax.plot(domain, function(domain), label='Exact')
ax.plot(domain, approx, label='Approx')
if __name__ == '__main__':
questions = (Q1, Q2, Q3)
for question in questions:
input(f'Press `Enter` to run {question.__name__} ')
plt.close('all') # <- Close all existing figures
question()
plt.show(block=False) # <- Allow code execution to continue
input('Press `Enter` to quit the program.')
| 27.14 | 69 | 0.597273 |
56dcea83a79c6c2e5db0602397f5c9b7ee0fb14d | 1,043 | tsx | TypeScript | lib/withGrommet.tsx | bdbaraban/nextrx | 3f7043ee3ac0911de689cc028c52988e1b43a330 | [
"MIT"
] | null | null | null | lib/withGrommet.tsx | bdbaraban/nextrx | 3f7043ee3ac0911de689cc028c52988e1b43a330 | [
"MIT"
] | null | null | null | lib/withGrommet.tsx | bdbaraban/nextrx | 3f7043ee3ac0911de689cc028c52988e1b43a330 | [
"MIT"
] | null | null | null | import React from 'react';
import { NextPage } from 'next';
import { connect } from 'react-redux';
import { Grommet } from 'grommet';
import { AppState } from '../store';
/* eslint-disable @typescript-eslint/explicit-function-return-type */
interface AppWithGrommetProps {
theme: object;
}
/**
* Wrap Next pages with Grommet.
*/
export default (App: NextPage<{}>) => {
const mapStateToProps = ({ theme }: AppState): AppWithGrommetProps => {
return { theme: theme.object };
};
return connect(mapStateToProps)(
({ theme }: AppWithGrommetProps): React.ReactElement => (
<>
<Grommet theme={theme} full>
<App />
</Grommet>
<style jsx global>{`
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans',
'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji',
'Segoe UI Emoji', 'Segoe UI Symbol';
}
`}</style>
</>
)
);
};
| 27.447368 | 79 | 0.586769 |
f1f403f71385a353af01ea6fc56efefc1a699e75 | 709 | asm | Assembly | oeis/021/A021764.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/021/A021764.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/021/A021764.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A021764: Expansion of 1/((1-x)(1-4x)(1-5x)(1-8x)).
; Submitted by Jon Maiga
; 1,18,215,2160,19821,172638,1456915,12056220,98541641,799142058,6448579215,51871439880,416407919461,3338534836278,26744994007115,214144960297140,1714090450201281,13717400347223298,109762678131820615,878219168328612000,7026343529014635101,56213705008107791118,449724447401063939715,3597869709714511808460,28783328705546064868921,230268486284718246747738,1842157179484294116124415,14737303905926291652350520,117898663693746818886150741,943190472165964147628221158,7545529591944889836529974715
mov $1,1
mov $2,1
mov $3,2
lpb $0
sub $0,1
mul $1,5
mul $3,8
add $3,2
add $1,$3
mul $2,4
add $2,1
sub $1,$2
lpe
mov $0,$1
| 37.315789 | 491 | 0.811001 |
8b65ee84d3596d6e8bc63ccbd1db17222f5a5384 | 1,402 | ddl | SQL | platform-launcher/src/main/resources/db/example.ddl | fieldenms/ | 4efd3b2475877d434a57cbba638b711df95748e7 | [
"MIT"
] | 16 | 2017-03-22T05:42:26.000Z | 2022-01-17T22:38:38.000Z | platform-launcher/src/main/resources/db/example.ddl | fieldenms/ | 4efd3b2475877d434a57cbba638b711df95748e7 | [
"MIT"
] | 647 | 2017-03-21T07:47:44.000Z | 2022-03-31T13:03:47.000Z | platform-launcher/src/main/resources/db/example.ddl | fieldenms/ | 4efd3b2475877d434a57cbba638b711df95748e7 | [
"MIT"
] | 8 | 2017-03-21T08:26:56.000Z | 2020-06-27T01:55:09.000Z | CREATE USER IF NOT EXISTS SA SALT '68597c0f06e84117' HASH 'adbc2b70d7ff92396e46d1259eeb7a99f0e4516e10d8cd5b9b3a02d91ab5a510' ADMIN;
CREATE TABLE INSPECTED_ENTITIES
(
ID_COLUMN INT NOT NULL IDENTITY PRIMARY KEY,
KEY VARCHAR(20) NOT NULL,
DESC VARCHAR(255),
INT_PROPERTY INT,
DECIMAL_PROPERTY NUMERIC,
MONEY_PROPERTY NUMERIC,
MONEY_PROPERTY_CURRENCY VARCHAR(3),
DATE_PROPERTY TIMESTAMP,
BOOLEAN_PROPERTY CHAR(1) NOT NULL DEFAULT 'Y',
ENTITY_PROPERTY_ONE INT,
ENTITY_PROPERTY_TWO INT
);
INSERT INTO INSPECTED_ENTITIES(KEY, DESC, INT_PROPERTY, DECIMAL_PROPERTY, MONEY_PROPERTY, MONEY_PROPERTY_CURRENCY, DATE_PROPERTY, BOOLEAN_PROPERTY, ENTITY_PROPERTY_ONE, ENTITY_PROPERTY_TWO) VALUES
('VALUE1', 'desc1', 23, 43.45, 456.67, 'AUD', '2008-01-01 23:30:00', 'Y', NULL, NULL),
('VALUE2', 'desc2', 23, 43.45, 456.67, 'AUD', '2008-01-01 23:30:00', 'Y', NULL, NULL),
('VALUE3', 'desc3', 23, 43.45, 456.67, 'AUD', '2008-01-01 23:30:00', 'Y', NULL, NULL),
('VALUE4', 'desc4', 23, 43.45, 456.67, 'AUD', '2008-01-01 23:30:00', 'Y', NULL, NULL),
('VALUE5', 'desc5', 23, 43.45, 456.67, 'AUD', '2008-01-01 23:30:00', 'Y', NULL, NULL),
('VALUE6', 'desc6', 23, 43.45, 456.67, 'AUD', '2008-01-01 23:30:00', 'Y', NULL, NULL),
('VALUE7', 'desc7', 23, 43.45, 456.67, 'AUD', '2008-01-01 23:30:00', 'Y', NULL, NULL),
('VALUE8', 'desc8', 23, 43.45, 456.67, 'AUD', '2008-01-01 23:30:00', 'Y', NULL, NULL); | 53.923077 | 196 | 0.687589 |
b69c888493b8dc52beefd8a2bc82be1fad22361d | 2,832 | rb | Ruby | lib/drive/sync/gdrive.rb | flosell/gascripts-sync | 5f322df92c54e5b49d13cd351ea08937681111c9 | [
"Apache-2.0"
] | 1 | 2015-09-01T18:47:34.000Z | 2015-09-01T18:47:34.000Z | lib/drive/sync/gdrive.rb | flosell/gascripts-sync | 5f322df92c54e5b49d13cd351ea08937681111c9 | [
"Apache-2.0"
] | null | null | null | lib/drive/sync/gdrive.rb | flosell/gascripts-sync | 5f322df92c54e5b49d13cd351ea08937681111c9 | [
"Apache-2.0"
] | null | null | null | module Drive
module Sync
class GDrive
CLIENT_ID = '1044808035117-1e260pacvpkkluic9ef97s19hrs2bakr.apps.googleusercontent.com'
CLIENT_SECRET = 'eMFOhG6T0_ilzdIWXX8VddNB'
OAUTH_SCOPE = ['https://www.googleapis.com/auth/drive','https://www.googleapis.com/auth/drive.scripts']
REDIRECT_URI = 'urn:ietf:wg:oauth:2.0:oob'
def self.connect
client = Google::APIClient.new(
:application_name => 'Google Apps Scripts Sync',
:application_version => '0.0.1'
)
drive = client.discovered_api('drive', 'v2')
client.authorization.client_id = CLIENT_ID
client.authorization.client_secret = CLIENT_SECRET
client.authorization.scope = OAUTH_SCOPE
client.authorization.redirect_uri = REDIRECT_URI
if (Drive::Sync::Settings.config['access_token'] == nil)
uri = client.authorization.authorization_uri
Launchy.open(uri)
$stdout.write "Enter authorization code: "
client.authorization.code = gets.chomp
client.authorization.fetch_access_token!
else
client.authorization.access_token = Drive::Sync::Settings.config['access_token']
client.authorization.refresh_token = Drive::Sync::Settings.config['refresh_token']
client.authorization.refresh! if client.authorization.expired?
end
Drive::Sync::Settings.config['access_token'] = client.authorization.access_token
Drive::Sync::Settings.config['refresh_token'] = client.authorization.refresh_token
GDrive.new(client,drive)
end
def initialize(client,drive)
@client = client
@drive = drive
end
def client
@client
end
def drive
@drive
end
def script_project_from_uri(uri)
response = @client.execute(:uri => uri)
if (response.status == 302)
script_project_from_uri(response.headers["location"])
else
project_hash = response.data
puts project_hash
ScriptProject.from_hash(project_hash)
end
end
def get_project_with_id(id)
result = @client.execute(
:api_method => @drive.files.get,
:parameters => {
'fileId' => id
})
if (result.status == 404)
raise SyncError.new( "could not find project with id #{id}")
elsif (result.status != 200)
error_message = result.data["error"]["errors"][0]["message"]
raise SyncError.new("could not access project information: server replied with error #{result.status} - #{error_message}")
else
script_project_from_uri(result.data.export_links["application/vnd.google-apps.script+json"]);
end
end
end
end
end
| 33.317647 | 132 | 0.628884 |
99ac7c1183c6764405d0c4ca39e6f300a715eb2b | 22,525 | sql | SQL | EMR/usr/share/nginx/html/contrib/forms/ros2/table.sql | chandanchowdhury/ISUCDC2017 | f6cb2ded82f45d8def30f28313157540cbf0cb6c | [
"Apache-2.0"
] | null | null | null | EMR/usr/share/nginx/html/contrib/forms/ros2/table.sql | chandanchowdhury/ISUCDC2017 | f6cb2ded82f45d8def30f28313157540cbf0cb6c | [
"Apache-2.0"
] | null | null | null | EMR/usr/share/nginx/html/contrib/forms/ros2/table.sql | chandanchowdhury/ISUCDC2017 | f6cb2ded82f45d8def30f28313157540cbf0cb6c | [
"Apache-2.0"
] | null | null | null | CREATE TABLE IF NOT EXISTS `form_ros2` (
`id` bigint(20) NOT NULL auto_increment,
`date` datetime DEFAULT NULL,
`pid` bigint(20) NOT NULL DEFAULT 0,
`user` TEXT DEFAULT NULL,
`groupname` TEXT DEFAULT NULL,
`authorized` tinyint(4) NOT NULL DEFAULT 0,
`activity` tinyint(4) NOT NULL DEFAULT 0,
`general_headache` varchar(3) NOT NULL default 'N/A',
`general_headache_text` TEXT NOT NULL default '',
`general_fever` varchar(3) NOT NULL default 'N/A',
`general_fever_text` TEXT NOT NULL default '',
`general_chills` varchar(3) NOT NULL default 'N/A',
`general_chills_text` TEXT NOT NULL default '',
`general_body_aches` varchar(3) NOT NULL default 'N/A',
`general_body_aches_text` TEXT NOT NULL default '',
`general_fatigue` varchar(3) NOT NULL default 'N/A',
`general_fatigue_text` TEXT NOT NULL default '',
`general_loss_of_appetite` varchar(3) NOT NULL default 'N/A',
`general_loss_of_appetite_text` TEXT NOT NULL default '',
`general_weight_loss` varchar(3) NOT NULL default 'N/A',
`general_weight_loss_text` TEXT NOT NULL default '',
`general_daytime_drowsiness` varchar(3) NOT NULL default 'N/A',
`general_daytime_drowsiness_text` TEXT NOT NULL default '',
`general_excessive_snoring` varchar(3) NOT NULL default 'N/A',
`general_excessive_snoring_text` TEXT NOT NULL default '',
`neuro_disorientation` varchar(3) NOT NULL default 'N/A',
`neuro_disorientation_text` TEXT NOT NULL default '',
`neuro_loss_of_consciousness` varchar(3) NOT NULL default 'N/A',
`neuro_loss_of_consciousness_text` TEXT NOT NULL default '',
`neuro_numbness` varchar(3) NOT NULL default 'N/A',
`neuro_numbness_text` TEXT NOT NULL default '',
`neuro_tingling` varchar(3) NOT NULL default 'N/A',
`neuro_tingling_text` TEXT NOT NULL default '',
`neuro_restlessness` varchar(3) NOT NULL default 'N/A',
`neuro_restlessness_text` TEXT NOT NULL default '',
`neuro_dizziness` varchar(3) NOT NULL default 'N/A',
`neuro_dizziness_text` TEXT NOT NULL default '',
`neuro_vertigo` varchar(3) NOT NULL default 'N/A',
`neuro_vertigo_text` TEXT NOT NULL default '',
`neuro_amaurosis_fugax` varchar(3) NOT NULL default 'N/A',
`neuro_amaurosis_fugax_text` TEXT NOT NULL default '',
`neuro_stroke` varchar(3) NOT NULL default 'N/A',
`neuro_stroke_text` TEXT NOT NULL default '',
`neuro_gait_abnormality` varchar(3) NOT NULL default 'N/A',
`neuro_gait_abnormality_text` TEXT NOT NULL default '',
`neuro_frequent_headaches` varchar(3) NOT NULL default 'N/A',
`neuro_frequent_headaches_text` TEXT NOT NULL default '',
`neuro_parathesias` varchar(3) NOT NULL default 'N/A',
`neuro_parathesias_text` TEXT NOT NULL default '',
`neuro_seizures` varchar(3) NOT NULL default 'N/A',
`neuro_seizures_text` TEXT NOT NULL default '',
`neuro_trans_ischemic_attacks` varchar(3) NOT NULL default 'N/A',
`neuro_trans_ischemic_attacks_text` TEXT NOT NULL default '',
`neuro_significant_tremors` varchar(3) NOT NULL default 'N/A',
`neuro_significant_tremors_text` TEXT NOT NULL default '',
`neck_neck_stiffness` varchar(3) NOT NULL default 'N/A',
`neck_neck_stiffness_text` TEXT NOT NULL default '',
`neck_neck_pain` varchar(3) NOT NULL default 'N/A',
`neck_neck_pain_text` TEXT NOT NULL default '',
`neck_neck_masses` varchar(3) NOT NULL default 'N/A',
`neck_neck_masses_text` TEXT NOT NULL default '',
`neck_neck_tenderness` varchar(3) NOT NULL default 'N/A',
`neck_neck_tenderness_text` TEXT NOT NULL default '',
`heent_oral_ulcers` varchar(3) NOT NULL default 'N/A',
`heent_oral_ulcers_text` TEXT NOT NULL default '',
`heent_excessive_cavities` varchar(3) NOT NULL default 'N/A',
`heent_excessive_cavities_text` TEXT NOT NULL default '',
`heent_gingival_disease` varchar(3) NOT NULL default 'N/A',
`heent_gingival_disease_text` TEXT NOT NULL default '',
`heent_persistent_hoarseness` varchar(3) NOT NULL default 'N/A',
`heent_persistent_hoarseness_text` TEXT NOT NULL default '',
`heent_mouth_lesions` varchar(3) NOT NULL default 'N/A',
`heent_mouth_lesions_text` TEXT NOT NULL default '',
`heent_dysphagia` varchar(3) NOT NULL default 'N/A',
`heent_dysphagia_text` TEXT NOT NULL default '',
`heent_odynophagia` varchar(3) NOT NULL default 'N/A',
`heent_odynophagia_text` TEXT NOT NULL default '',
`heent_dental_pain` varchar(3) NOT NULL default 'N/A',
`heent_dental_pain_text` TEXT NOT NULL default '',
`heent_sore_throat` varchar(3) NOT NULL default 'N/A',
`heent_sore_throat_text` TEXT NOT NULL default '',
`heent_ear_pain` varchar(3) NOT NULL default 'N/A',
`heent_ear_pain_text` TEXT NOT NULL default '',
`heent_ear_discharge` varchar(3) NOT NULL default 'N/A',
`heent_ear_discharge_text` TEXT NOT NULL default '',
`heent_tinnitus` varchar(3) NOT NULL default 'N/A',
`heent_tinnitus_text` TEXT NOT NULL default '',
`heent_hearing_loss` varchar(3) NOT NULL default 'N/A',
`heent_hearing_loss_text` TEXT NOT NULL default '',
`heent_allergic_rhinitis` varchar(3) NOT NULL default 'N/A',
`heent_allergic_rhinitis_text` TEXT NOT NULL default '',
`heent_nasal_congestion` varchar(3) NOT NULL default 'N/A',
`heent_nasal_congestion_text` TEXT NOT NULL default '',
`heent_nasal_discharge` varchar(3) NOT NULL default 'N/A',
`heent_nasal_discharge_text` TEXT NOT NULL default '',
`heent_nasal_injury` varchar(3) NOT NULL default 'N/A',
`heent_nasal_injury_text` TEXT NOT NULL default '',
`heent_nasal_surgery` varchar(3) NOT NULL default 'N/A',
`heent_nasal_surgery_text` TEXT NOT NULL default '',
`heent_nose_bleeds` varchar(3) NOT NULL default 'N/A',
`heent_nose_bleeds_text` TEXT NOT NULL default '',
`heent_post_nasal_drip` varchar(3) NOT NULL default 'N/A',
`heent_post_nasal_drip_text` TEXT NOT NULL default '',
`heent_sinus_pressure` varchar(3) NOT NULL default 'N/A',
`heent_sinus_pressure_text` TEXT NOT NULL default '',
`heent_sinus_pain` varchar(3) NOT NULL default 'N/A',
`heent_sinus_pain_text` TEXT NOT NULL default '',
`heent_headache` varchar(3) NOT NULL default 'N/A',
`heent_headache_text` TEXT NOT NULL default '',
`heent_eye_pain` varchar(3) NOT NULL default 'N/A',
`heent_eye_pain_text` TEXT NOT NULL default '',
`heent_eye_redness` varchar(3) NOT NULL default 'N/A',
`heent_eye_redness_text` TEXT NOT NULL default '',
`heent_visual_changes` varchar(3) NOT NULL default 'N/A',
`heent_visual_changes_text` TEXT NOT NULL default '',
`heent_blurry_vision` varchar(3) NOT NULL default 'N/A',
`heent_blurry_vision_text` TEXT NOT NULL default '',
`heent_eye_discharge` varchar(3) NOT NULL default 'N/A',
`heent_eye_discharge_text` TEXT NOT NULL default '',
`heent_eye_glasses_contacts` varchar(3) NOT NULL default 'N/A',
`heent_eye_glasses_contacts_text` TEXT NOT NULL default '',
`heent_excess_tearing` varchar(3) NOT NULL default 'N/A',
`heent_excess_tearing_text` TEXT NOT NULL default '',
`heent_photophobia` varchar(3) NOT NULL default 'N/A',
`heent_photophobia_text` TEXT NOT NULL default '',
`heent_scotomata` varchar(3) NOT NULL default 'N/A',
`heent_scotomata_text` TEXT NOT NULL default '',
`heent_tunnel_vision` varchar(3) NOT NULL default 'N/A',
`heent_tunnel_vision_text` TEXT NOT NULL default '',
`heent_glaucoma` varchar(3) NOT NULL default 'N/A',
`heent_glaucoma_text` TEXT NOT NULL default '',
`cardiovascular_sub_sternal_or_left_chest_pain` varchar(3) NOT NULL default 'N/A',
`cardiovascular_sub_sternal_or_left_chest_pain_text` TEXT NOT NULL default '',
`cardiovascular_other_chest_pain` varchar(3) NOT NULL default 'N/A',
`cardiovascular_other_chest_pain_text` TEXT NOT NULL default '',
`cardiovascular_palpitations` varchar(3) NOT NULL default 'N/A',
`cardiovascular_palpitations_text` TEXT NOT NULL default '',
`cardiovascular_irregular_rhythm` varchar(3) NOT NULL default 'N/A',
`cardiovascular_irregular_rhythm_text` TEXT NOT NULL default '',
`cardiovascular_jugular_vein_distention` varchar(3) NOT NULL default 'N/A',
`cardiovascular_jugular_vein_distention_text` TEXT NOT NULL default '',
`cardiovascular_claudication` varchar(3) NOT NULL default 'N/A',
`cardiovascular_claudication_text` TEXT NOT NULL default '',
`cardiovascular_dizziness` varchar(3) NOT NULL default 'N/A',
`cardiovascular_dizziness_text` TEXT NOT NULL default '',
`cardiovascular_dyspnea_on_exertion` varchar(3) NOT NULL default 'N/A',
`cardiovascular_dyspnea_on_exertion_text` TEXT NOT NULL default '',
`cardiovascular_orthopnea` varchar(3) NOT NULL default 'N/A',
`cardiovascular_orthopnea_text` TEXT NOT NULL default '',
`cardiovascular_noctural_dyspnea` varchar(3) NOT NULL default 'N/A',
`cardiovascular_noctural_dyspnea_text` TEXT NOT NULL default '',
`cardiovascular_edema` varchar(3) NOT NULL default 'N/A',
`cardiovascular_edema_text` TEXT NOT NULL default '',
`cardiovascular_presyncope` varchar(3) NOT NULL default 'N/A',
`cardiovascular_presyncope_text` TEXT NOT NULL default '',
`cardiovascular_syncope` varchar(3) NOT NULL default 'N/A',
`cardiovascular_syncope_text` TEXT NOT NULL default '',
`cardiovascular_heart_murmur` varchar(3) NOT NULL default 'N/A',
`cardiovascular_heart_murmur_text` TEXT NOT NULL default '',
`cardiovascular_raynauds` varchar(3) NOT NULL default 'N/A',
`cardiovascular_raynauds_text` TEXT NOT NULL default '',
`cardiovascular_severe_varicose_veins` varchar(3) NOT NULL default 'N/A',
`cardiovascular_severe_varicose_veins_text` TEXT NOT NULL default '',
`cardiovascular_deep_vein_thrombosis` varchar(3) NOT NULL default 'N/A',
`cardiovascular_deep_vein_thrombosis_text` TEXT NOT NULL default '',
`cardiovascular_thrombophlebitis` varchar(3) NOT NULL default 'N/A',
`cardiovascular_thrombophlebitis_text` TEXT NOT NULL default '',
`respirations_cough` varchar(3) NOT NULL default 'N/A',
`respirations_cough_text` TEXT NOT NULL default '',
`respirations_sputum` varchar(3) NOT NULL default 'N/A',
`respirations_sputum_text` TEXT NOT NULL default '',
`respirations_dyspnea` varchar(3) NOT NULL default 'N/A',
`respirations_dyspnea_text` TEXT NOT NULL default '',
`respirations_wheezes` varchar(3) NOT NULL default 'N/A',
`respirations_wheezes_text` TEXT NOT NULL default '',
`respirations_rales` varchar(3) NOT NULL default 'N/A',
`respirations_rales_text` TEXT NOT NULL default '',
`respirations_labored_breathing` varchar(3) NOT NULL default 'N/A',
`respirations_labored_breathing_text` TEXT NOT NULL default '',
`respirations_hemoptysis` varchar(3) NOT NULL default 'N/A',
`respirations_hemoptysis_text` TEXT NOT NULL default '',
`gu_frequent_urination` varchar(3) NOT NULL default 'N/A',
`gu_frequent_urination_text` TEXT NOT NULL default '',
`gu_dysuria` varchar(3) NOT NULL default 'N/A',
`gu_dysuria_text` TEXT NOT NULL default '',
`gu_dyspareunia` varchar(3) NOT NULL default 'N/A',
`gu_dyspareunia_text` TEXT NOT NULL default '',
`gu_discharge` varchar(3) NOT NULL default 'N/A',
`gu_discharge_text` TEXT NOT NULL default '',
`gu_odor` varchar(3) NOT NULL default 'N/A',
`gu_odor_text` TEXT NOT NULL default '',
`gu_fertility_problems` varchar(3) NOT NULL default 'N/A',
`gu_fertility_problems_text` TEXT NOT NULL default '',
`gu_flank_pain_kidney_stone` varchar(3) NOT NULL default 'N/A',
`gu_flank_pain_kidney_stone_text` TEXT NOT NULL default '',
`gu_polyuria` varchar(3) NOT NULL default 'N/A',
`gu_polyuria_text` TEXT NOT NULL default '',
`gu_hematuria` varchar(3) NOT NULL default 'N/A',
`gu_hematuria_text` TEXT NOT NULL default '',
`gu_pyuria` varchar(3) NOT NULL default 'N/A',
`gu_pyuria_text` TEXT NOT NULL default '',
`gu_umbilical_hernia` varchar(3) NOT NULL default 'N/A',
`gu_umbilical_hernia_text` TEXT NOT NULL default '',
`gu_incontinence` varchar(3) NOT NULL default 'N/A',
`gu_incontinence_text` TEXT NOT NULL default '',
`gu_nocturia` varchar(3) NOT NULL default 'N/A',
`gu_nocturia_text` TEXT NOT NULL default '',
`gu_urinary_urgency` varchar(3) NOT NULL default 'N/A',
`gu_urinary_urgency_text` TEXT NOT NULL default '',
`gu_recurrent_utis` varchar(3) NOT NULL default 'N/A',
`gu_recurrent_utis_text` TEXT NOT NULL default '',
`gu_venereal_disease` varchar(3) NOT NULL default 'N/A',
`gu_venereal_disease_text` TEXT NOT NULL default '',
`male_gu_erectile_dysfunction` varchar(3) NOT NULL default 'N/A',
`male_gu_erectile_dysfunction_text` TEXT NOT NULL default '',
`male_gu_inguinal_hernia` varchar(3) NOT NULL default 'N/A',
`male_gu_inguinal_hernia_text` TEXT NOT NULL default '',
`male_gu_penile_lesions` varchar(3) NOT NULL default 'N/A',
`male_gu_penile_lesions_text` TEXT NOT NULL default '',
`male_gu_scrotal_mass` varchar(3) NOT NULL default 'N/A',
`male_gu_scrotal_mass_text` TEXT NOT NULL default '',
`male_gu_testicular_pain` varchar(3) NOT NULL default 'N/A',
`male_gu_testicular_pain_text` TEXT NOT NULL default '',
`male_gu_urethral_discharge` varchar(3) NOT NULL default 'N/A',
`male_gu_urethral_discharge_text` TEXT NOT NULL default '',
`male_gu_weak_urinary_stream` varchar(3) NOT NULL default 'N/A',
`male_gu_weak_urinary_stream_text` TEXT NOT NULL default '',
`female_gu_abnormal_menses` varchar(3) NOT NULL default 'N/A',
`female_gu_abnormal_menses_text` TEXT NOT NULL default '',
`female_gu_abnormal_vaginal_bleeding` varchar(3) NOT NULL default 'N/A',
`female_gu_abnormal_vaginal_bleeding_text` TEXT NOT NULL default '',
`female_gu_vaginal_discharge` varchar(3) NOT NULL default 'N/A',
`female_gu_vaginal_discharge_text` TEXT NOT NULL default '',
`gi_abdominal_pain` varchar(3) NOT NULL default 'N/A',
`gi_abdominal_pain_text` TEXT NOT NULL default '',
`gi_cramps` varchar(3) NOT NULL default 'N/A',
`gi_cramps_text` TEXT NOT NULL default '',
`gi_tenderness` varchar(3) NOT NULL default 'N/A',
`gi_tenderness_text` TEXT NOT NULL default '',
`gi_vomiting` varchar(3) NOT NULL default 'N/A',
`gi_vomiting_text` TEXT NOT NULL default '',
`gi_frequent_diarrhea` varchar(3) NOT NULL default 'N/A',
`gi_frequent_diarrhea_text` TEXT NOT NULL default '',
`gi_significant_constipation` varchar(3) NOT NULL default 'N/A',
`gi_significant_constipation_text` TEXT NOT NULL default '',
`gi_excessive_belching` varchar(3) NOT NULL default 'N/A',
`gi_excessive_belching_text` TEXT NOT NULL default '',
`gi_changed_bowel_habits` varchar(3) NOT NULL default 'N/A',
`gi_changed_bowel_habits_text` TEXT NOT NULL default '',
`gi_excessive_flatulence` varchar(3) NOT NULL default 'N/A',
`gi_excessive_flatulence_text` TEXT NOT NULL default '',
`gi_hematemesis` varchar(3) NOT NULL default 'N/A',
`gi_hematemesis_text` TEXT NOT NULL default '',
`gi_hemorrhoids` varchar(3) NOT NULL default 'N/A',
`gi_hemorrhoids_text` TEXT NOT NULL default '',
`gi_hepatitis` varchar(3) NOT NULL default 'N/A',
`gi_hepatitis_text` TEXT NOT NULL default '',
`gi_jaundice` varchar(3) NOT NULL default 'N/A',
`gi_jaundice_text` TEXT NOT NULL default '',
`gi_lactose_intolerance` varchar(3) NOT NULL default 'N/A',
`gi_lactose_intolerance_text` TEXT NOT NULL default '',
`gi_chronic_laxative_use` varchar(3) NOT NULL default 'N/A',
`gi_chronic_laxative_use_text` TEXT NOT NULL default '',
`gi_melena` varchar(3) NOT NULL default 'N/A',
`gi_melena_text` TEXT NOT NULL default '',
`gi_frequent_nausea` varchar(3) NOT NULL default 'N/A',
`gi_frequent_nausea_text` TEXT NOT NULL default '',
`gi_rectal_bleeding` varchar(3) NOT NULL default 'N/A',
`gi_rectal_bleeding_text` TEXT NOT NULL default '',
`gi_rectal_pain` varchar(3) NOT NULL default 'N/A',
`gi_rectal_pain_text` TEXT NOT NULL default '',
`gi_stool_caliber_change` varchar(3) NOT NULL default 'N/A',
`gi_stool_caliber_change_text` TEXT NOT NULL default '',
`integument_pallor` varchar(3) NOT NULL default 'N/A',
`integument_pallor_text` TEXT NOT NULL default '',
`integument_diaphoresis` varchar(3) NOT NULL default 'N/A',
`integument_diaphoresis_text` TEXT NOT NULL default '',
`integument_rash` varchar(3) NOT NULL default 'N/A',
`integument_rash_text` TEXT NOT NULL default '',
`integument_itching` varchar(3) NOT NULL default 'N/A',
`integument_itching_text` TEXT NOT NULL default '',
`integument_ulcers` varchar(3) NOT NULL default 'N/A',
`integument_ulcers_text` TEXT NOT NULL default '',
`integument_abscess` varchar(3) NOT NULL default 'N/A',
`integument_abscess_text` TEXT NOT NULL default '',
`integument_nodules` varchar(3) NOT NULL default 'N/A',
`integument_nodules_text` TEXT NOT NULL default '',
`integument_acne` varchar(3) NOT NULL default 'N/A',
`integument_acne_text` TEXT NOT NULL default '',
`integument_recurrent_boils` varchar(3) NOT NULL default 'N/A',
`integument_recurrent_boils_text` TEXT NOT NULL default '',
`integument_chronic_eczema` varchar(3) NOT NULL default 'N/A',
`integument_chronic_eczema_text` TEXT NOT NULL default '',
`integument_changing_moles` varchar(3) NOT NULL default 'N/A',
`integument_changing_moles_text` TEXT NOT NULL default '',
`integument_nail_abnormalities` varchar(3) NOT NULL default 'N/A',
`integument_nail_abnormalities_text` TEXT NOT NULL default '',
`integument_psoriasis` varchar(3) NOT NULL default 'N/A',
`integument_psoriasis_text` TEXT NOT NULL default '',
`integument_recurrent_hives` varchar(3) NOT NULL default 'N/A',
`integument_recurrent_hives_text` TEXT NOT NULL default '',
`musculoskeletal_deformity` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_deformity_text` TEXT NOT NULL default '',
`musculoskeletal_edema` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_edema_text` TEXT NOT NULL default '',
`musculoskeletal_pain` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_pain_text` TEXT NOT NULL default '',
`musculoskeletal_limited_rom` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_limited_rom_text` TEXT NOT NULL default '',
`musculoskeletal_gait` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_gait_text` TEXT NOT NULL default '',
`musculoskeletal_arthritis` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_arthritis_text` TEXT NOT NULL default '',
`musculoskeletal_neck_pain` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_neck_pain_text` TEXT NOT NULL default '',
`musculoskeletal_mid_back_pain` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_mid_back_pain_text` TEXT NOT NULL default '',
`musculoskeletal_low_back_pain` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_low_back_pain_text` TEXT NOT NULL default '',
`musculoskeletal_bursitis` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_bursitis_text` TEXT NOT NULL default '',
`musculoskeletal_gout` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_gout_text` TEXT NOT NULL default '',
`musculoskeletal_joint_injury` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_joint_injury_text` TEXT NOT NULL default '',
`musculoskeletal_joint_pain` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_joint_pain_text` TEXT NOT NULL default '',
`musculoskeletal_joint_swelling` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_joint_swelling_text` TEXT NOT NULL default '',
`musculoskeletal_myalgias` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_myalgias_text` TEXT NOT NULL default '',
`musculoskeletal_sciatica` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_sciatica_text` TEXT NOT NULL default '',
`musculoskeletal_scoliosis` varchar(3) NOT NULL default 'N/A',
`musculoskeletal_scoliosis_text` TEXT NOT NULL default '',
`hematological_anemia` varchar(3) NOT NULL default 'N/A',
`hematological_anemia_text` TEXT NOT NULL default '',
`hematological_pallor` varchar(3) NOT NULL default 'N/A',
`hematological_pallor_text` TEXT NOT NULL default '',
`hematological_bleeding_tendencies` varchar(3) NOT NULL default 'N/A',
`hematological_bleeding_tendencies_text` TEXT NOT NULL default '',
`hematological_bruising` varchar(3) NOT NULL default 'N/A',
`hematological_bruising_text` TEXT NOT NULL default '',
`endocrine_thyroid_problems` varchar(3) NOT NULL default 'N/A',
`endocrine_thyroid_problems_text` TEXT NOT NULL default '',
`endocrine_enlarged_thyroid` varchar(3) NOT NULL default 'N/A',
`endocrine_enlarged_thyroid_text` TEXT NOT NULL default '',
`endocrine_hyperglycemia` varchar(3) NOT NULL default 'N/A',
`endocrine_hyperglycemia_text` TEXT NOT NULL default '',
`endocrine_hypoglycemia` varchar(3) NOT NULL default 'N/A',
`endocrine_hypoglycemia_text` TEXT NOT NULL default '',
`endocrine_cold_intolerance` varchar(3) NOT NULL default 'N/A',
`endocrine_cold_intolerance_text` TEXT NOT NULL default '',
`endocrine_heat_intolerance` varchar(3) NOT NULL default 'N/A',
`endocrine_heat_intolerance_text` TEXT NOT NULL default '',
`endocrine_early_awakening` varchar(3) NOT NULL default 'N/A',
`endocrine_early_awakening_text` TEXT NOT NULL default '',
`endocrine_fatigue_unexplained` varchar(3) NOT NULL default 'N/A',
`endocrine_fatigue_unexplained_text` TEXT NOT NULL default '',
`endocrine_weight_gain` varchar(3) NOT NULL default 'N/A',
`endocrine_weight_gain_text` TEXT NOT NULL default '',
`endocrine_weight_loss` varchar(3) NOT NULL default 'N/A',
`endocrine_weight_loss_text` TEXT NOT NULL default '',
`endocrine_premenstrual_symptoms` varchar(3) NOT NULL default 'N/A',
`endocrine_premenstrual_symptoms_text` TEXT NOT NULL default '',
`endocrine_hair_no_change_or_no_loss` varchar(3) NOT NULL default 'N/A',
`endocrine_hair_no_change_or_no_loss_text` TEXT NOT NULL default '',
`endocrine_hot_flashes` varchar(3) NOT NULL default 'N/A',
`endocrine_hot_flashes_text` TEXT NOT NULL default '',
`lymphatic_swollen_lymph_nodes` varchar(3) NOT NULL default 'N/A',
`lymphatic_swollen_lymph_nodes_text` TEXT NOT NULL default '',
`lymphatic_swollen_extremities` varchar(3) NOT NULL default 'N/A',
`lymphatic_swollen_extremities_text` TEXT NOT NULL default '',
`psychiatric_compulsions` varchar(3) NOT NULL default 'N/A',
`psychiatric_compulsions_text` TEXT NOT NULL default '',
`psychiatric_depression` varchar(3) NOT NULL default 'N/A',
`psychiatric_depression_text` TEXT NOT NULL default '',
`psychiatric_fear` varchar(3) NOT NULL default 'N/A',
`psychiatric_fear_text` TEXT NOT NULL default '',
`psychiatric_anxiety` varchar(3) NOT NULL default 'N/A',
`psychiatric_anxiety_text` TEXT NOT NULL default '',
`psychiatric_hallucinations` varchar(3) NOT NULL default 'N/A',
`psychiatric_hallucinations_text` TEXT NOT NULL default '',
`psychiatric_loss_of_interest` varchar(3) NOT NULL default 'N/A',
`psychiatric_loss_of_interest_text` TEXT NOT NULL default '',
`psychiatric_memory_loss` varchar(3) NOT NULL default 'N/A',
`psychiatric_memory_loss_text` TEXT NOT NULL default '',
`psychiatric_mood_swings` varchar(3) NOT NULL default 'N/A',
`psychiatric_mood_swings_text` TEXT NOT NULL default '',
`psychiatric_pananoia` varchar(3) NOT NULL default 'N/A',
`psychiatric_pananoia_text` TEXT NOT NULL default '',
`psychiatric_insomnia` varchar(3) NOT NULL default 'N/A',
`psychiatric_insomnia_text` TEXT NOT NULL default '',
PRIMARY KEY (id)
) ENGINE=InnoDB;
| 56.738035 | 82 | 0.776693 |
7ab948bad972b2bced6d5f8d89e3b9fe682bba8c | 251 | lua | Lua | MMOCoreORB/bin/scripts/object/custom_content/draft_schematic/space/engine/orion_eng_01.lua | V-Fib/FlurryClone | 40e0ca7245ec31b3815eb6459329fd9e70f88936 | [
"Zlib",
"OpenSSL"
] | 18 | 2017-02-09T15:36:05.000Z | 2021-12-21T04:22:15.000Z | MMOCoreORB/bin/scripts/object/custom_content/draft_schematic/space/engine/orion_eng_01.lua | V-Fib/FlurryClone | 40e0ca7245ec31b3815eb6459329fd9e70f88936 | [
"Zlib",
"OpenSSL"
] | 61 | 2016-12-30T21:51:10.000Z | 2021-12-10T20:25:56.000Z | MMOCoreORB/bin/scripts/object/custom_content/draft_schematic/space/engine/orion_eng_01.lua | V-Fib/FlurryClone | 40e0ca7245ec31b3815eb6459329fd9e70f88936 | [
"Zlib",
"OpenSSL"
] | 71 | 2017-01-01T05:34:38.000Z | 2022-03-29T01:04:00.000Z | object_draft_schematic_space_engine_orion_eng_01 = object_draft_schematic_space_engine_shared_orion_eng_01:new {
}
ObjectTemplates:addTemplate(object_draft_schematic_space_engine_orion_eng_01, "object/draft_schematic/space/engine/orion_eng_01.iff")
| 41.833333 | 133 | 0.904382 |
7eede81f94b313533e1e6c6afef4eac67347271c | 6,887 | asm | Assembly | Transynther/x86/_processed/NC/_ht_zr_/i7-8650U_0xd2.log_21829_1659.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_ht_zr_/i7-8650U_0xd2.log_21829_1659.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_ht_zr_/i7-8650U_0xd2.log_21829_1659.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r14
push %r8
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0xda1f, %r10
clflush (%r10)
nop
xor %r14, %r14
mov $0x6162636465666768, %r8
movq %r8, %xmm4
and $0xffffffffffffffc0, %r10
movntdq %xmm4, (%r10)
xor %r11, %r11
lea addresses_A_ht+0xc01d, %rbx
nop
nop
nop
xor $7450, %rdx
mov (%rbx), %r12d
nop
nop
nop
nop
nop
sub %r12, %r12
lea addresses_UC_ht+0xb07d, %r12
nop
nop
nop
nop
dec %r14
movw $0x6162, (%r12)
nop
xor $36627, %r8
lea addresses_A_ht+0x1d143, %r8
nop
nop
nop
nop
add %r11, %r11
mov (%r8), %r14
nop
nop
nop
nop
nop
and %r8, %r8
lea addresses_normal_ht+0x146fd, %rsi
lea addresses_D_ht+0x2efd, %rdi
nop
nop
nop
nop
and %r8, %r8
mov $87, %rcx
rep movsl
nop
nop
nop
add %rcx, %rcx
lea addresses_WC_ht+0xd1fd, %rsi
lea addresses_WT_ht+0x1557d, %rdi
add $5714, %r14
mov $70, %rcx
rep movsq
nop
nop
dec %rbx
lea addresses_D_ht+0xf19d, %rbx
clflush (%rbx)
nop
nop
nop
nop
nop
xor %r14, %r14
movb $0x61, (%rbx)
nop
nop
nop
and %r10, %r10
lea addresses_A_ht+0x1bb3d, %r11
clflush (%r11)
nop
and %r8, %r8
mov $0x6162636465666768, %r12
movq %r12, %xmm7
movups %xmm7, (%r11)
nop
nop
nop
xor $21941, %rsi
lea addresses_WC_ht+0x1247d, %r14
inc %r12
mov $0x6162636465666768, %rbx
movq %rbx, %xmm5
vmovups %ymm5, (%r14)
nop
nop
nop
nop
add $29360, %r8
lea addresses_UC_ht+0xe9fd, %r8
nop
nop
nop
nop
and %r10, %r10
mov (%r8), %edi
nop
nop
sub $54010, %r10
lea addresses_normal_ht+0x49fd, %rsi
nop
nop
nop
nop
nop
xor %r14, %r14
mov $0x6162636465666768, %rcx
movq %rcx, %xmm6
vmovups %ymm6, (%rsi)
nop
nop
nop
nop
xor %r10, %r10
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbx
pop %r8
pop %r14
pop %r12
pop %r11
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r14
push %r15
push %r8
push %rbx
push %rdx
// Faulty Load
mov $0x50d5490000000dfd, %rbx
clflush (%rbx)
nop
nop
nop
nop
nop
xor %r8, %r8
vmovups (%rbx), %ymm1
vextracti128 $0, %ymm1, %xmm1
vpextrq $1, %xmm1, %r10
lea oracles, %r8
and $0xff, %r10
shlq $12, %r10
mov (%r8,%r10,1), %r10
pop %rdx
pop %rbx
pop %r8
pop %r15
pop %r14
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_NC', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_NC', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'size': 16, 'AVXalign': False, 'NT': True, 'congruent': 1, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_A_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 3, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_UC_ht', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 3, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_A_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_normal_ht', 'congruent': 4, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 8, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_WC_ht', 'congruent': 10, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 7, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_D_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_A_ht', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 3, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 5, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 9, 'same': False}}
{'00': 21825, '44': 4}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*/
| 34.094059 | 2,999 | 0.658197 |
e80632e890be84a4b9feaf234bf9ba21e058f3bf | 3,761 | cpp | C++ | variants/NUCLEO_L432KC/variant.cpp | heada/Arduino_Core_STM32 | 177f96c76bf6ff8c900d30b19aa4d96b5f886f4c | [
"Apache-2.0"
] | null | null | null | variants/NUCLEO_L432KC/variant.cpp | heada/Arduino_Core_STM32 | 177f96c76bf6ff8c900d30b19aa4d96b5f886f4c | [
"Apache-2.0"
] | null | null | null | variants/NUCLEO_L432KC/variant.cpp | heada/Arduino_Core_STM32 | 177f96c76bf6ff8c900d30b19aa4d96b5f886f4c | [
"Apache-2.0"
] | null | null | null | /*
Copyright (c) 2011 Arduino. All right reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "variant.h"
#ifdef __cplusplus
extern "C" {
#endif
// Pin number
const PinName digitalPin[] = {
PA_10, //D0
PA_9, //D1
PA_12, //D2
PB_0, //D3
PB_7, //D4
PB_6, //D5
PB_1, //D6
PC_14, //D7 - By default, SB6 open PF0/PC14 not connected to D7
PC_15, //D8 - By default, SB8 open PF1/PC15 not connected to D8
PA_8, //D9
PA_11, //D10
PB_5, //D11
PB_4, //D12
PB_3, //D13 - LED
PA_0, //D14/A0
PA_1, //D15/A1
PA_3, //D16/A2
PA_4, //D17/A3
PA_5, //D18/A4
PA_6, //D19/A5
PA_7, //D20/A6
PA_2, //D21/A7 - STLink Tx
PA_15 //D22 - STLink Rx
};
#ifdef __cplusplus
}
#endif
// ----------------------------------------------------------------------------
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief System Clock Configuration
* The system Clock is configured as follows :
* System Clock source = PLL (MSI)
* SYSCLK(Hz) = 80000000
* HCLK(Hz) = 80000000
* AHB Prescaler = 1
* APB1 Prescaler = 1
* APB2 Prescaler = 1
* MSI Frequency(Hz) = 4000000
* PLL_M = 1
* PLL_N = 40
* PLL_R = 2
* PLL_P = 7
* PLL_Q = 4
* Flash Latency(WS) = 4
* @param None
* @retval None
*/
WEAK void SystemClock_Config(void)
{
RCC_ClkInitTypeDef RCC_ClkInitStruct = {};
RCC_OscInitTypeDef RCC_OscInitStruct = {};
/* MSI is enabled after System reset, activate PLL with MSI as source */
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_MSI;
RCC_OscInitStruct.MSIState = RCC_MSI_ON;
RCC_OscInitStruct.MSIClockRange = RCC_MSIRANGE_6;
RCC_OscInitStruct.MSICalibrationValue = RCC_MSICALIBRATION_DEFAULT;
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_MSI;
RCC_OscInitStruct.PLL.PLLM = 1;
RCC_OscInitStruct.PLL.PLLN = 40;
RCC_OscInitStruct.PLL.PLLR = 2;
RCC_OscInitStruct.PLL.PLLP = 7;
RCC_OscInitStruct.PLL.PLLQ = 4;
if(HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
{
/* Initialization Error */
while(1);
}
/* Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2
clocks dividers */
RCC_ClkInitStruct.ClockType = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2);
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;
RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
if(HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_4) != HAL_OK)
{
/* Initialization Error */
while(1);
}
}
#ifdef __cplusplus
}
#endif
| 30.577236 | 120 | 0.617655 |
7f29f1babe2d460cce35eb722f12d55d252f8b0b | 442 | sql | SQL | Modulo_05/MYSQL/Capitulo_56/Exercicio_01/exercicio_01.sql | EdiJunior88/NewTab_Academy_Projetos | f510f44c14c87582529c2e93ec5d17bbaee2bb65 | [
"MIT"
] | 3 | 2022-01-08T05:02:48.000Z | 2022-01-31T19:03:48.000Z | Modulo_05/MYSQL/Capitulo_56/Exercicio_01/exercicio_01.sql | EdiJunior88/NewTab_Academy_Projetos | f510f44c14c87582529c2e93ec5d17bbaee2bb65 | [
"MIT"
] | null | null | null | Modulo_05/MYSQL/Capitulo_56/Exercicio_01/exercicio_01.sql | EdiJunior88/NewTab_Academy_Projetos | f510f44c14c87582529c2e93ec5d17bbaee2bb65 | [
"MIT"
] | null | null | null | /* Para testar estas instruções, digite as instruções abaixo, no prompt do MySql */
show databases;
create database teste;
show databases;
/* Para verificar o erro e a criação de um BD já existente, digite: */
create database teste;
show databases;
create database if not exists teste;
show databases;
/* Coloque o BD teste em uso, Apague o BD, Depois,
verifique novamente os BDs existentes*/
use teste;
drop database teste;
show databases; | 27.625 | 83 | 0.769231 |
d9095ac62a6ff27f68d2fc2ac941256ce8124880 | 802 | kt | Kotlin | library/src/main/kotlin/nl/wouterbohlken/transip/client/MonitoringContactsClient.kt | wbohlken/transip-api-kotlin | 6180dc1670103d1d926fe9c226fa80dcd4765ec2 | [
"Apache-2.0"
] | 5 | 2020-04-15T14:22:24.000Z | 2020-05-31T07:29:21.000Z | library/src/main/kotlin/nl/wouterbohlken/transip/client/MonitoringContactsClient.kt | wbohlken/transip-api-kotlin | 6180dc1670103d1d926fe9c226fa80dcd4765ec2 | [
"Apache-2.0"
] | null | null | null | library/src/main/kotlin/nl/wouterbohlken/transip/client/MonitoringContactsClient.kt | wbohlken/transip-api-kotlin | 6180dc1670103d1d926fe9c226fa80dcd4765ec2 | [
"Apache-2.0"
] | 1 | 2020-04-15T14:24:16.000Z | 2020-04-15T14:24:16.000Z | package nl.wouterbohlken.transip.client
import nl.wouterbohlken.transip.entity.MonitoringContact
import java.lang.reflect.Type
class MonitoringContactsClient(token: String) : Client<MonitoringContact>(token) {
override fun getEndpoint(): String = "monitoring-contacts"
override fun getItemType(): Type = MonitoringContact::class.java
override fun getItemTypeArray(): Type = Array<MonitoringContact>::class.java
override fun getIdentifierNameSingular(): String = "contact"
override fun getIdentifierNamePlural(): String = "contacts"
fun create(monitoringContact: MonitoringContact) = post(monitoringContact)
fun update(monitoringContact: MonitoringContact) = put(monitoringContact)
fun deleteMonitoringContact(monitoringContact: MonitoringContact) = delete(monitoringContact)
} | 34.869565 | 95 | 0.805486 |
ac39d2f66d3b93c9e95d149ee7c29f39247d3e5b | 19,367 | lua | Lua | control.lua | alercah/quick-item-scroll | 0459316b68703245225ff5185fc6f2f213a3760d | [
"MIT"
] | null | null | null | control.lua | alercah/quick-item-scroll | 0459316b68703245225ff5185fc6f2f213a3760d | [
"MIT"
] | null | null | null | control.lua | alercah/quick-item-scroll | 0459316b68703245225ff5185fc6f2f213a3760d | [
"MIT"
] | null | null | null | require "util"
local Lib = require("qis/lib")
local Mapper = require("qis/mapper")
patches = {
require("mappings/base"),
require("mappings/creative-mode"),
require("mappings/LogisticTrainNetwork"),
require("mappings/nixie-tubes"),
require("mappings/SmartTrains"),
require("mappings/VehicleWagon"),
require("mappings/BatteriesNotIncluded"),
require("mappings/ElectricVehicles3"),
require("mappings/FARL"),
require("mappings/TrainSupplyManager"),
require("mappings/boblogistics"),
}
mappings = {}
CUSTOM_EVENTS = {
on_quick_item_swap_mappings_reset = script.generate_event_name(), -- Fired when something causes us to reset all mappings.
on_quick_item_swap_mappings_patched = script.generate_event_name(), -- Fired when something applies a patch (e.g. via remote.call)
}
local function initialize_globals()
if not global.playerdata then
global.playerdata = {}
end
setmetatable(global.playerdata, {
__index = function(t, k)
local v = {
item_history = {},
group_history = {},
type_history = {},
overrides = {},
}
t[k] = v
return v
end
})
end
local function rebuild_mappings(why)
initialize_globals()
-- Reconstructs mappings on new map/update/config change.
mappings = nil
for _, patch in pairs(patches) do
if not mappings then
mappings = Mapper:adopt(patch())
else
mappings:merge(patch())
end
end
global.mappings = mappings
script.raise_event(CUSTOM_EVENTS.on_quick_item_swap_mappings_reset, { why = why })
end
local function add_commands()
commands.add_command(
"quick-item-scroll-clear-overrides",
"Clears your Quick Item Scroll overrides.", function()
global.playerdata[game.player.index].overrides = {}
game.player.print({"quick-item-scroll-message.overrides-cleared", game.player.name})
end
)
end
local function on_load()
mappings = global.mappings
initialize_globals()
add_commands()
if mappings then
Mapper:adopt(mappings)
end
end
-- Lazily create a list of what all techs produce a given item.
item_techs = Lib.lazy_table(function(items_craftable)
local name, t
for recipe, data in pairs(game.recipe_prototypes) do
if data.products then
for _, product in pairs(data.products) do
if product.type == 'item' then
name = product.name
t = items_craftable[name]
if not t then
items_craftable[name] = { recipe }
else
t[#t + 1] = recipe
end
end
end
end
end
end)
script.on_init(function()
rebuild_mappings("init")
add_commands()
end)
script.on_load(on_load)
script.on_configuration_changed(function(_)
if global.debug then
game.print("[Quick Item Scroll] Detected a configuration change. Rebuilding item mappings.")
end
rebuild_mappings("configuration-changed")
end
)
script.on_event(defines.events.on_runtime_mod_setting_changed, function(event)
if global.debug then
game.print("[Quick Item Scroll] Detected a mod settings change by " .. game.players[event.player_index].name .. ". (Type: " .. event.setting_type .. ") Rebuilding item mappings.")
end
rebuild_mappings("settings-changed")
end)
-- Cycle between blueprints/books/etc
local function cycle_bp(player, change_group, reverse)
local pdata = global.playerdata[player.index]
local cursor = player.cursor_stack
if cursor.item_number == nil then
return
end
local number = cursor.item_number
local inv = player.get_main_inventory()
local stack
local function foreachitem(fn)
for i=1,#inv do
if fn(inv[i], i, inv) then
return true
end
end
return false
end
if change_group then
local types = {"blueprint", "blueprint-book", "deconstruction-item" }
local type_index
for ix,type in pairs(types) do
if cursor.type == type then
type_index = ix
break
end
end
if not type_index then
return
end
pdata.type_history = pdata.type_history or {}
pdata.type_history[cursor.type] = number
for index, type in Lib.wraparound(types, type_index, reverse) do
local hist = pdata.type_history[type]
foreachitem(function(item)
if item.valid_for_read and item.type == type then
if item.item_number == hist or not hist then
stack = item
return true
elseif not stack then
stack = item
end
end
end)
if stack then
player.clean_cursor() -- May fail if inv is full, that's okay for now.
player.cursor_stack.swap_stack(stack)
return
end
end
return
end -- if change_group
-- If still here, cycling between items within the group
local found
foreachitem(function(item)
if not (item.valid_for_read and item.type == cursor.type and item.item_number) then
return
end
n = item.item_number
if not found then
found, stack = n, item
if global.debug then
player.print("cycle_bp: [init] number=" .. number .. ", n=" .. n .. ", found=" .. found)
end
elseif reverse then
if global.debug then player.print("cycle_bp: [step] number=" .. number .. ", n=" .. n .. ", found=" .. found) end
if (found > number and (n > found or n < number)) or (n < number and n > found) then
found = n
stack = item
if global.debug then player.print("cycle_bp: result=" .. found) end
end
else
if global.debug then player.print("cycle_bp: [step] number=" .. number .. ", n=" .. n .. ", found=" .. found) end
if (found < number and (n < found or n > number)) or (n > number and n < found) then
found = n
stack = item
if global.debug then player.print("cycle_bp: result=" .. found) end
end
end
end)
if not stack then
return
end
player.clean_cursor() -- May fail if inv is full, that's okay for now.
cursor.swap_stack(stack)
end
-- Determine if an item is to be skipped.
local function is_skipped(player, item, requires_tech)
if requires_tech == nil then
requires_tech = player.mod_settings['quick-item-scroll-requires-tech'].value
end
local overrides = global.playerdata[player.index].overrides
if overrides[item] then
return true
elseif overrides[item] == false or not requires_tech then
return false
end
if not item_techs[item] then
if global.debug then
game.print("No item techs for " .. item)
end
return true
end
local recipes = player.force.recipes
for _, recipe in pairs(item_techs[item]) do
if recipes[recipe].enabled then
return false
end
end
return true
end
-- Some constants for find_or_cheat_item
local FindResult = {
NOT_FOUND = false,
FOUND = 1,
CHEAT = 2,
GHOST = 3
}
-- Cycle between related items.
local function cycle_item(event, change_group, reverse)
local player = game.players[event.player_index]
local pdata = global.playerdata[player.index]
local cursor = player.cursor_stack
local overrides = pdata.overrides
local source -- Found mapping for source name.
if global.debug then
player.print("In cycle item. change_group=" .. serpent.block(change_group) .. "; reverse=" .. serpent.block(reverse))
end
-- Do nothing if no item is currently selected.
if not cursor.valid_for_read then
if player.cursor_ghost then
source = player.cursor_ghost.name
else
if global.debug then player.print("No item selected") end
return
end
else
source = cursor.name
end
-- Find item in the catalog.
local history = pdata.item_history[source] or {}
source = mappings:find(source, history.category, history.group)
-- If not found, pretend it's a blueprint and see what happens.
if not source then
if global.debug then player.print("Item " .. cursor.name .. " is not in catalog.") end
return cycle_bp(player, change_group, reverse)
end
-- Still here? Time to get to work.
if global.debug then
player.print(
"Item '" .. source.name .. "' is " .. source.index .. " of " .. #source.group.sorted
.. " in group " .. source.group.name
)
player.print(source.type and ("Item equivalence type: " .. source.type) or "Item has no equivalence type")
player.print(
"Group '" .. source.group.name .. "' is " .. source.group.index .. " of " .. #source.group.category.sorted
.. " in category " .. source.group.category.name
)
end
-- Look for suitable replacements
local inv = player.get_main_inventory()
local stack -- Item stack for replacement
local target -- Mapping for replacement.
local result = FindResult.NOT_FOUND
-- Are we allowed to cheat new items in?
local can_cheat = (
player.cheat_mode
and player.mod_settings["quick-item-scroll-support-cheat-mode"].value
)
-- Can we create item ghosts?
local can_ghost = player.mod_settings["quick-item-scroll-use-ghosts"].value
local function find_or_cheat_item(entry)
-- Search for the item in the inventory
stack = inv.find_item_stack(entry.name)
if stack and not is_skipped(player, entry.name, false) then
-- Well, that was easy.
target = entry
return FindResult.FOUND
end
-- If we didn't find the item and we can't ghost or cheat, bail here.
if not (can_cheat or can_ghost) then
return FindResult.NOT_FOUND
end
if not game.item_prototypes[entry.name] then
-- No prototype exists, so bail
return FindResult.NOT_FOUND
end
if (
can_cheat and not is_skipped(player, entry.name, false)
and (
not game.active_mods["creative-mode"]
or not string.find(entry.name, "^creative%-mode%_")
or settings.get_player_settings(player)["quick-item-scroll-support-cheat-mode-with-creative"].value
))
then
target = entry
return FindResult.CHEAT
end
if can_ghost and not is_skipped(player, entry.name) then
target = entry
return FindResult.GHOST
end
end
if change_group then
local type = source.type
local candidate
for index, group in Lib.wraparound(source.category.sorted, source.group.index, reverse) do
if global.debug then
player.print("Next group: #" .. index .. " = " .. group.name)
end
if type and group.typed[type] then
-- Typed item, and group has this type.
candidate = group.typed[type]
if global.debug then
player.print("Candidate typed item: #" .. index .. " = " .. candidate.name)
end
result = find_or_cheat_item(candidate)
if result then break end
else
-- Untyped item, or group does not have this type.
if pdata.group_history[group.id] then
candidate = pdata.group_history[group.id]
if global.debug then
player.print("Candidate item from history: #" .. index .. " = " .. candidate.name)
end
result = find_or_cheat_item(candidate)
if result then break end
end
-- No candidate item, or candidate item doesn't exist.
-- Try to find something else in the group that we do have.
for index, candidate in Lib.wraparound(group.sorted, candidate and candidate.index, reverse) do
if global.debug then
player.print("Next candidate: #" .. index .. " = " .. candidate.name)
end
result = find_or_cheat_item(candidate)
if result then break end
end
end -- of typed if/else
end -- of group loop
else
for index, candidate in Lib.wraparound(source.group.sorted, source.index, reverse) do
if global.debug then
player.print("Next candidate: #" .. index .. " = " .. candidate.name)
end
result = find_or_cheat_item(candidate)
if result then break end
end
end
if not result then return end
-- Save the last thing we used in this group.
pdata.group_history[source.group.id] = source
-- Found an actual real item.
-- Check the various possible results and attempt to update things. If the update fails, return so that history
-- does not update.
if result == FindResult.FOUND then
player.clean_cursor() -- May fail if inv is full, that's okay for now because we'll just swap it if that's the case
if not player.cursor_stack.swap_stack(stack) then
-- This SHOULDN'T fail, but might with a full and filtered inventory.
return
end
elseif result == FindResult.CHEAT then
if not player.clean_cursor() then
-- If this happens, there's no way to conjure an item out of thin air without destroying something.
-- So don't.
return
end
cursor.set_stack(target.name) -- Will automatically pick a full stack.
elseif result == FindResult.GHOST then
if not player.clean_cursor() then
-- If this happens, there's no way to conjure an item out of thin air without destroying something.
-- So don't.
return
end
player.cursor_ghost = target.name
end
pdata.group_history[target.group.id] = target
pdata.item_history[target.name] = target
end
-- Core functionality
script.on_event("quick-item-scroll-item-next", function(event) return cycle_item(event, false, false) end)
script.on_event("quick-item-scroll-item-prev", function(event) return cycle_item(event, false, true) end)
script.on_event("quick-item-scroll-group-next", function(event) return cycle_item(event, true, false) end)
script.on_event("quick-item-scroll-group-prev", function(event) return cycle_item(event, true, true) end)
-- Housekeeping
script.on_event(defines.events.on_player_removed, function(event)
if global.playerdata then
global.playerdata[event.player_index] = nil
end
end)
-- Override support.
script.on_event("quick-item-scroll-toggle-override", function(event)
local player = game.players[event.player_index]
local pdata = global.playerdata[player.index]
local overrides = pdata.overrides
local proto
if player.cursor_stack.valid_for_read then
proto = player.cursor_stack.prototype
elseif player.cursor_ghost then
proto = player.cursor_ghost
else
return
end
local name = proto.name
if overrides[name] == nil then
overrides[name] = true
player.print({"quick-item-scroll-message.item-skipped", proto.localised_name})
elseif overrides[name] == true then
overrides[name] = false
player.print({"quick-item-scroll-message.item-included", proto.localised_name})
else
overrides[name] = nil
player.print({"quick-item-scroll-message.item-defaulted", proto.localised_name})
end
end)
-- API
api = {}
function api.dump_inventory(inv)
local item
for i=1,#inv do
item = inv[i]
if item.valid_for_read then
game.print(i .. ": " .. item.name .. " x" .. item.count)
-- else
-- game.print(i .. ": --EMPTY--")
end
end
end
function api.dump_quickbar(player)
player = player or game.players[1]
local quickbar = player.get_quickbar()
if not quickbar.valid then
return false
end
api.dump_inventory(quickbar)
end
function api.dump_overrides(player)
player = player or game.players[1]
local overrides = global.playerdata[player.index].overrides
for item, val in pairs(overrides) do
player.print(item .. ": " .. tostring(val))
end
end
function api.debug(new)
if new ~= nil then
global.debug = new
end
return global.debug
end
--function api.eval(code)
-- return loadstring(code)()
--end
function api.get_events()
return CUSTOM_EVENTS
end
function api.get_mappings(category, group, item)
return mappings:export(category, group, item)
end
function api.reset_mappings()
rebuild_mappings('remote')
end
function api.apply_patch(patchinfo, source)
local msg
if source then
msg = { "While applying a patch from '" .. source .. "':" }
else
msg = { "While applying a patch from an unknown source:" }
end
local function fail(message)
return error(table.concat(msg, "\n") .. "\n\n" .. message .. "\n\nThis is an error in the other mod, not in Quick Item Scroll.\n\n" .. serpent.block(patchinfo))
end
-- Validate patch.
if not patchinfo.categories then
return fail("No `categories` attribute present.")
end
for name, category in pairs(patchinfo.categories) do
if category then
msg[2] = "In category `" .. name .. "`:"
msg[3] = nil
if not category.groups then
return fail("No `groups` attribute present.")
end
for name, group in pairs(category.groups) do
if group then
msg[3] = "In group `" .. name .. "`:"
if not group.items then
return fail("No `items` attribute present.")
end
end
end
end
end
mappings:merge(patchinfo)
script.raise_event(CUSTOM_EVENTS.on_quick_item_swap_mappings_patched, { patch = patchinfo, source = source })
end
function api.refresh(only_if_dirty)
mappings:refresh(only_if_dirty)
end
function api.validate_mappings(player)
mappings:validate((player and player.print) or game.print)
end
function api.dump_mappings(category, group, item)
game.write_file(
"quick-item-scroll-mappings.txt",
serpent.block(
mappings:export(category, group, item)
)
)
end
remote.add_interface("quick-item-scroll", api)
| 31.801314 | 188 | 0.600971 |
66eabb4bd6ad26c634254fb1ef1e25e40d458abc | 776 | asm | Assembly | quit.asm | crgimenes/shutdown | 7a20a00cc04e1a211c884dc07061f2addfa76ebc | [
"BSD-2-Clause"
] | 7 | 2018-08-02T14:13:39.000Z | 2022-01-19T08:15:43.000Z | quit.asm | crgimenes/shutdown | 7a20a00cc04e1a211c884dc07061f2addfa76ebc | [
"BSD-2-Clause"
] | null | null | null | quit.asm | crgimenes/shutdown | 7a20a00cc04e1a211c884dc07061f2addfa76ebc | [
"BSD-2-Clause"
] | 1 | 2019-02-24T19:52:27.000Z | 2019-02-24T19:52:27.000Z | ;shutdown via APM without questions or parameters.
;nasm -f bin -o quit.com quit.asm
org 100h
section .text
start:
;chke if APM is ok
mov ax, 5300h
xor bx, bx
int 15h
jc APM_error
;connect to APM API
mov ax, 5301h
xor bx, bx
int 15h
;try to set APM version (to 1.2)
mov ax, 530Eh
mov cx, 0102h
xor bx, bx
int 15h
;turn off the system
mov ax, 5307h
mov bx, 0001h
mov cx, 0003h
int 15h
hlt
APM_error: mov dx, msgAPMError
mov ah, 9
int 21h
exitError: mov ax, 4CFFh
int 21h
msgAPMError db "APM error or not available",0
.end | 18.926829 | 50 | 0.494845 |
8e773c43cc0bdfab04b9fb6807259589148f314f | 2,911 | lua | Lua | src/positions/britta.lua | hawkthorne/hawkthorne-server-lua | 3ab898aa80a28efc862bfd7c757c68afa3f381b3 | [
"MIT"
] | 5 | 2015-01-02T16:52:52.000Z | 2021-01-02T15:14:51.000Z | src/positions/britta.lua | runtime1point0/hawkthorne-journey | 4d5c6c3d9cc57f53d594dbbdb1e72455c290d688 | [
"MIT"
] | null | null | null | src/positions/britta.lua | runtime1point0/hawkthorne-journey | 4d5c6c3d9cc57f53d594dbbdb1e72455c290d688 | [
"MIT"
] | 4 | 2015-04-17T23:56:27.000Z | 2016-10-15T13:02:26.000Z | return {
hand_right = {
{ {-10, 40}, {-13, 31}, {-8, 38}, {0, 0}, {-10, 40}, {-11, 25}, {-17, 30}, {-19, 22}, {-19, 38}, {-14, 36}, },
{ {-10, 41}, {-13, 35}, {-8, 39}, {1, 37}, {-10, 41}, {-18, 34}, {-15, 30}, {-10, 41}, {-10, 41}, {16, 45}, },
{ {-10, 41}, {-10, 40}, {-9, 41}, {-17, 28}, {0, 0}, {-15, 25}, {-16, 25}, {-18, 31}, {0, 0}, {-9, 46}, },
{ {9, 41}, {8, 39}, {8, 41}, {-4, 32}, {-13, 33}, {-15, 25}, {2, 28}, {-10, 41}, {2, 35}, {-4, 46}, },
{ {-10, 40}, {-10, 41}, {-9, 41}, {-10, 40}, {8, 41}, {8, 41}, {-14, 40}, {-13, 25}, {-6, 24}, {-4, 41}, },
{ {-19, 31}, {-19, 31}, {-19, 32}, {-19, 31}, {-19, 27}, {-19, 27}, {-19, 27}, {-19, 28}, {-19, 21}, {-19, 36}, },
{ {0, 0}, {9, 31}, {-3, 30}, {-11, 29}, {0, 0}, {9, 27}, {-3, 27}, {-10, 24}, {-9, 39}, {-10, 39}, },
{ {-19, 31}, {-19, 32}, {-19, 32}, {-19, 32}, {-6, 22}, {3, 26}, {-4, 39}, {-6, 22}, {3, 25}, {-4, 40}, },
{ {0, 0}, {9, 31}, {-3, 31}, {-10, 29}, {-13, 23}, {-16, 23}, {-14, 38}, {-13, 22}, {-16, 23}, {-14, 38}, },
{ {-6, 23}, {3, 27}, {-3, 40}, {-19, 21}, {-19, 37}, {-19, 21}, {-19, 37}, {-13, 32}, {-13, 32}, {-13, 32}, },
{ {-13, 24}, {-15, 24}, {-14, 40}, {-10, 39}, {-10, 39}, {-9, 39}, {-10, 39}, {9, 32}, {9, 32}, {8, 32}, },
{ {9, 31}, {9, 31}, {9, 31}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, },
{ {-14, 31}, {-14, 31}, {-13, 31}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, },
},
hand_left = {
{ {9, 40}, {12, 35}, {7, 39}, {-1, 38}, {9, 40}, {18, 34}, {15, 31}, {9, 40}, {9, 40}, {-17, 45}, },
{ {9, 40}, {12, 31}, {7, 38}, {7, 36}, {9, 40}, {10, 26}, {16, 31}, {18, 23}, {18, 38}, {13, 36}, },
{ {10, 40}, {8, 40}, {9, 39}, {15, 28}, {1, 41}, {14, 25}, {-4, 28}, {10, 40}, {-2, 35}, {3, 45}, },
{ {-10, 40}, {-10, 40}, {-9, 38}, {13, 32}, {5, 33}, {14, 25}, {14, 25}, {18, 31}, {0, 0}, {7, 46}, },
{ {9, 40}, {9, 40}, {9, 40}, {9, 40}, {-10, 40}, {-10, 40}, {3, 41}, {5, 25}, {12, 25}, {13, 40}, },
{ {0, 0}, {-10, 31}, {3, 31}, {9, 29}, {0, 0}, {-10, 27}, {3, 27}, {10, 25}, {9, 38}, {9, 38}, },
{ {18, 32}, {18, 32}, {18, 32}, {17, 32}, {18, 28}, {18, 28}, {18, 28}, {18, 28}, {18, 21}, {17, 36}, },
{ {0, 0}, {-10, 31}, {3, 31}, {9, 29}, {12, 23}, {15, 23}, {13, 38}, {12, 23}, {15, 23}, {13, 38}, },
{ {18, 31}, {18, 31}, {18, 31}, {18, 31}, {5, 23}, {-4, 26}, {3, 39}, {5, 23}, {-4, 26}, {3, 39}, },
{ {12, 24}, {15, 24}, {13, 39}, {9, 39}, {9, 39}, {9, 38}, {9, 38}, {-9, 32}, {-9, 32}, {-9, 32}, },
{ {5, 24}, {-4, 27}, {3, 40}, {18, 22}, {17, 37}, {18, 21}, {17, 36}, {12, 32}, {12, 32}, {12, 32}, },
{ {12, 31}, {13, 31}, {13, 31}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, },
{ {-9, 31}, {-9, 31}, {-9, 31}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, },
},
}
| 83.171429 | 121 | 0.308485 |
0f44f79264a45acd8bdd6a474b134f52b57a8a50 | 1,466 | cpp | C++ | aws-cpp-sdk-config/source/model/DescribeConformancePacksResult.cpp | Neusoft-Technology-Solutions/aws-sdk-cpp | 88c041828b0dbee18a297c3cfe98c5ecd0706d0b | [
"Apache-2.0"
] | 1 | 2022-02-10T08:06:54.000Z | 2022-02-10T08:06:54.000Z | aws-cpp-sdk-config/source/model/DescribeConformancePacksResult.cpp | Neusoft-Technology-Solutions/aws-sdk-cpp | 88c041828b0dbee18a297c3cfe98c5ecd0706d0b | [
"Apache-2.0"
] | 1 | 2021-10-14T16:57:00.000Z | 2021-10-18T10:47:24.000Z | aws-cpp-sdk-config/source/model/DescribeConformancePacksResult.cpp | ravindra-wagh/aws-sdk-cpp | 7d5ff01b3c3b872f31ca98fb4ce868cd01e97696 | [
"Apache-2.0"
] | 1 | 2021-11-09T11:58:03.000Z | 2021-11-09T11:58:03.000Z | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/config/model/DescribeConformancePacksResult.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <aws/core/AmazonWebServiceResult.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/UnreferencedParam.h>
#include <utility>
using namespace Aws::ConfigService::Model;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
using namespace Aws;
DescribeConformancePacksResult::DescribeConformancePacksResult()
{
}
DescribeConformancePacksResult::DescribeConformancePacksResult(const Aws::AmazonWebServiceResult<JsonValue>& result)
{
*this = result;
}
DescribeConformancePacksResult& DescribeConformancePacksResult::operator =(const Aws::AmazonWebServiceResult<JsonValue>& result)
{
JsonView jsonValue = result.GetPayload().View();
if(jsonValue.ValueExists("ConformancePackDetails"))
{
Array<JsonView> conformancePackDetailsJsonList = jsonValue.GetArray("ConformancePackDetails");
for(unsigned conformancePackDetailsIndex = 0; conformancePackDetailsIndex < conformancePackDetailsJsonList.GetLength(); ++conformancePackDetailsIndex)
{
m_conformancePackDetails.push_back(conformancePackDetailsJsonList[conformancePackDetailsIndex].AsObject());
}
}
if(jsonValue.ValueExists("NextToken"))
{
m_nextToken = jsonValue.GetString("NextToken");
}
return *this;
}
| 29.32 | 154 | 0.78513 |
341c5f57b04a5c3a5f72744b4c42e4680fd22892 | 325 | asm | Assembly | libsrc/oz/oztime/ozmonth.asm | andydansby/z88dk-mk2 | 51c15f1387293809c496f5eaf7b196f8a0e9b66b | [
"ClArtistic"
] | 1 | 2020-09-15T08:35:49.000Z | 2020-09-15T08:35:49.000Z | libsrc/oz/oztime/ozmonth.asm | andydansby/z88dk-MK2 | 51c15f1387293809c496f5eaf7b196f8a0e9b66b | [
"ClArtistic"
] | null | null | null | libsrc/oz/oztime/ozmonth.asm | andydansby/z88dk-MK2 | 51c15f1387293809c496f5eaf7b196f8a0e9b66b | [
"ClArtistic"
] | null | null | null | ;
; Sharp OZ family functions
;
; ported from the OZ-7xx SDK by by Alexander R. Pruss
; by Stefano Bodrato - Oct. 2003
;
;
; clock functions
;
; unsigned ozmonth()
;
;
; ------
; $Id: ozmonth.asm,v 1.1 2003/10/21 17:15:22 stefano Exp $
;
XDEF ozmonth
LIB Compute
ozmonth:
ld c,3ah
jp Compute
| 13.541667 | 58 | 0.603077 |
80909420b9b9f2593cb6217fc80cacb613f8372f | 1,806 | java | Java | src/main/java/net/starlegacy/explosionreversal/data/ExplodedEntityData.java | HorizonsEndMC/ExplosionReversal | 4977e6f8093b2b09e62bb4e19992557ee48c57f9 | [
"MIT"
] | null | null | null | src/main/java/net/starlegacy/explosionreversal/data/ExplodedEntityData.java | HorizonsEndMC/ExplosionReversal | 4977e6f8093b2b09e62bb4e19992557ee48c57f9 | [
"MIT"
] | null | null | null | src/main/java/net/starlegacy/explosionreversal/data/ExplodedEntityData.java | HorizonsEndMC/ExplosionReversal | 4977e6f8093b2b09e62bb4e19992557ee48c57f9 | [
"MIT"
] | null | null | null | package net.starlegacy.explosionreversal.data;
import java.io.IOException;
import net.starlegacy.explosionreversal.nms.NMSUtils;
import org.bukkit.entity.Entity;
import org.bukkit.entity.EntityType;
import javax.annotation.Nullable;
public class ExplodedEntityData {
private final EntityType entityType;
private final double x;
private final double y;
private final double z;
private final float pitch;
private final float yaw;
private final long explodedTime;
@Nullable
private final byte[] nmsData;
public ExplodedEntityData(EntityType entityType, double x, double y, double z, float pitch, float yaw,
long explodedTime, @Nullable byte[] nmsData) {
this.entityType = entityType;
this.x = x;
this.y = y;
this.z = z;
this.pitch = pitch;
this.yaw = yaw;
this.explodedTime = explodedTime;
this.nmsData = nmsData;
}
public ExplodedEntityData(Entity entity, long explosionTime) throws IOException {
this(entity.getType(), entity.getLocation().getX(), entity.getLocation().getY(), entity.getLocation().getZ(),
entity.getLocation().getPitch(), entity.getLocation().getYaw(),
explosionTime, NMSUtils.getEntityData(entity));
}
public EntityType getEntityType() {
return entityType;
}
public double getX() {
return x;
}
public double getY() {
return y;
}
public double getZ() {
return z;
}
public float getPitch() {
return pitch;
}
public float getYaw() {
return yaw;
}
public long getExplodedTime() {
return explodedTime;
}
@Nullable
public byte[] getNmsData() {
return nmsData;
}
}
| 25.083333 | 117 | 0.630676 |
7abac394616b1e2208f6d94096b9938a98f8a2bf | 199 | rb | Ruby | test/dummy/test/functional/users_controller_test.rb | gabeodess/captchator | 35ee85f317b80d1d48529da6d8e8f35497b2be39 | [
"MIT"
] | 1 | 2015-11-06T03:01:59.000Z | 2015-11-06T03:01:59.000Z | test/dummy/test/functional/users_controller_test.rb | gabeodess/captchator | 35ee85f317b80d1d48529da6d8e8f35497b2be39 | [
"MIT"
] | 1 | 2015-09-26T17:38:49.000Z | 2015-09-26T17:38:49.000Z | test/dummy/test/functional/users_controller_test.rb | gabeodess/captchator | 35ee85f317b80d1d48529da6d8e8f35497b2be39 | [
"MIT"
] | null | null | null | require 'test_helper'
class UsersControllerTest < ActionController::TestCase
test "testing view" do
get :new
assert_match "http://captchator.com/captcha/image", @response.body
end
end
| 18.090909 | 70 | 0.743719 |
c7aa5e46a3d9dff70ef110971eebf255eab0aae7 | 845 | py | Python | setup.py | sanzhar-rakhimkul/RLBench | 1bb64190fbd6f329be9cf91d224d1ea595c17688 | [
"BSD-3-Clause"
] | null | null | null | setup.py | sanzhar-rakhimkul/RLBench | 1bb64190fbd6f329be9cf91d224d1ea595c17688 | [
"BSD-3-Clause"
] | null | null | null | setup.py | sanzhar-rakhimkul/RLBench | 1bb64190fbd6f329be9cf91d224d1ea595c17688 | [
"BSD-3-Clause"
] | null | null | null | from setuptools import setup
# Version meaning (X.Y.Z)
# X: Major version (e.g. vastly different scene, platform, etc)
# Y: Minor version (e.g. new tasks, major changes to existing tasks, etc)
# Z: Patch version (e.g. small changes to tasks, bug fixes, etc)
setup(name='rlbench',
version='1.0.8',
description='RLBench',
author='Stephen James',
author_email='slj12@ic.ac.uk',
url='https://www.doc.ic.ac.uk/~slj12',
packages=[
'rlbench',
'rlbench.backend',
'rlbench.tasks',
'rlbench.task_ttms',
'rlbench.robot_ttms',
'rlbench.sim2real',
'rlbench.assets',
'rlbench.gym'
],
package_data={'': ['*.ttm', '*.obj', '**/**/*.ttm', '**/**/*.obj'],
'rlbench': ['task_design.ttt']},
)
| 31.296296 | 73 | 0.536095 |
3950fb48093898339d47e6949c27cc6f3db64206 | 2,794 | swift | Swift | OnTheMap/UdacityClientForFacebook.swift | mdtaps/OnTheMap | f1a1f1d6a219c1680e2c022c139d61b8793d91d1 | [
"MIT"
] | null | null | null | OnTheMap/UdacityClientForFacebook.swift | mdtaps/OnTheMap | f1a1f1d6a219c1680e2c022c139d61b8793d91d1 | [
"MIT"
] | null | null | null | OnTheMap/UdacityClientForFacebook.swift | mdtaps/OnTheMap | f1a1f1d6a219c1680e2c022c139d61b8793d91d1 | [
"MIT"
] | null | null | null | //
// UdacityClientForFacebook.swift
// OnTheMap
//
// Created by Lindsey Renee Eaton on 7/18/17.
// Copyright © 2017 Mark Tapia. All rights reserved.
//
import Foundation
extension UdacityClient {
func udacityFBPOSTRequestWith(urlMethod: String, completionHandlerForFBPOST: @escaping (_ results: AnyObject?, _ error: NSError?) -> Void) {
func sendError(error: String) {
completionHandlerForFBPOST(nil, NSError(domain: "udacityFBPOSTRequestWith", code: 1, userInfo: [NSLocalizedDescriptionKey: error]))
}
guard let request = udacityUrlFbPOSTRequestWith(method: urlMethod) else {
sendError(error: "Failed to create Logout request")
return
}
let task = session.dataTask(with: request as URLRequest) { (data, response, error) in
guard GeneralNetworkingClient.shared.checkTask(error: error) else {
sendError(error: error!.localizedDescription)
return
}
guard GeneralNetworkingClient.shared.checkTask(response: response) else {
sendError(error: "Status code returned something other than 2xx")
return
}
guard GeneralNetworkingClient.shared.checkTask(data: data) else {
sendError(error: "No data returned with request")
return
}
let newData = self.udacityCorrectedData(data!)
guard let parsedData = GeneralNetworkingClient.shared.jsonObjectFromJsonData(newData) else {
sendError(error: "Error parsing Json data")
return
}
completionHandlerForFBPOST(parsedData, nil)
}
task.resume()
}
private func udacityUrlFbPOSTRequestWith(method: String) -> NSMutableURLRequest? {
let url = udacityUrl(pathExtension: method)
let request = NSMutableURLRequest(url: url)
let headers = [
UdacityClient.HTTPHeaderKey.Accept: UdacityClient.HTTPHeaderValue.ApplicationJson,
UdacityClient.HTTPHeaderKey.ContentType: UdacityClient.HTTPHeaderValue.ApplicationJson]
guard let facebookAccessToken = UdacityClient.shared.facebookAccessToken else {
return nil
}
let postBody: [String : AnyObject] = [
"facebook_mobile": [
"access_token" : facebookAccessToken] as AnyObject]
request.allHTTPHeaderFields = headers
request.httpBody = GeneralNetworkingClient.shared.jsonDataFromJsonObject(postBody)
request.httpMethod = "POST"
return request
}
}
| 35.820513 | 144 | 0.608447 |
f1433cfd73d351adec9888ec6543d87382595de6 | 7,729 | asm | Assembly | Source/M-OS/MIOS_kernel.asm | mkeller0815/MOUSE | b6e83d883cfed46eede1d38962329c1f3c43ce25 | [
"MIT"
] | 8 | 2016-10-24T23:03:27.000Z | 2022-03-08T05:56:56.000Z | Source/M-OS/MIOS_kernel.asm | mkeller0815/MOUSE | b6e83d883cfed46eede1d38962329c1f3c43ce25 | [
"MIT"
] | null | null | null | Source/M-OS/MIOS_kernel.asm | mkeller0815/MOUSE | b6e83d883cfed46eede1d38962329c1f3c43ce25 | [
"MIT"
] | 2 | 2019-10-07T15:45:05.000Z | 2022-02-13T12:44:57.000Z | ;
; M-OS kernel for a minimal system
;
; providing high level function for input and output of data
;
; providing reset and interrupt routines and an base entry point
; to start after reset / power on
;
; this file should always be the last file in an ROM image, because it
; defines the NMI, IRQ and NMI vectors at the end moving the address
; counter to $FFFF
;load the 6850 ACIA driver
;
; ACIA driver is directly imported here, because this version of the kernel
; makes direct use of the low level function form the driver.
;
; low level function should not be used outside the kernel to provide
; compatibility for software to other hardware configurations
;
.require "MIOS_driver_ACIA6850.asm"
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; k_START
;
; simple start point of the kerne after reset.
;
.scope
k_START:
.invoke print k_welcome ; print welcome message
jmp MOUSESTART ; start what ever is defined as start tool
brk
.scend
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; general utility functions for converting data or generate output
;
;
; print out the 8bit value in A as binary code
; X,Y is preserved, A is destroyed
;
.scope
u_bin8out:
phx ; save X
phy ; save Y
ldx #$08 ; counter for 8 bit
_loop: clc ; clear carry flag
asl ; shift byte by one position
bcs _p1
tay ; save A
lda #'0
bra _cont
_p1: tay ; save A
lda #'1 ; print "1"
_cont: jsr k_wchr
tya ; get A back
dex ; decrement counter
bne _loop
ply ; restore Y
plx ; restore X
rts ; return
.scend
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; write content of A as hex
;
; @param A - number to write (A is destroyed)
;
.scope
u_hex8out:
pha ; save A
lsr ; get hi nibble
lsr
lsr
lsr
jsr u_hex4out ; print high nibble
pla ; restore A
jsr u_hex4out ; print low nibble
rts ; return
.scend
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; print low-nibble of A as hex digit
;
; @param A containing number (A is destroyed)
;
; @ return -
.scope
u_hex4out:
phx ; save X
and #$0f ; mask high nibble out
tax ; set digit index
lda u_hexdigit,x ; load digit
jsr k_wchr ; print character
plx ; restore X
rts ; return
.scend
; HEX digits for printing hexnumbers
u_hexdigit: .byte "0123456789abcdef"
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; convert a character in A to one nibble
; works only for '0-'9','A'-'F' and 'a'-'f' all other chracters may
; cause unexpected results
;
; @param A containing the character (will be destroyed)
;
; @return A containung the nibble value
.scope
u_chr2nibble:
sec ; set carry bit
sbc #$30 ; substract 48 ('0')
cmp #$0a ; check if lower then 10
bcc + ; carry is clear if value is lower 10
sec
sbc #$07 ; substract 7 ('a'-'f')
cmp #$10 ; carry is clear if value is lower 16
bcc +
sec
sbc #$20 ; substract 32 ('A' - 'F')
* rts ; return, Accumulator contains the digit
.scend
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; k_wstr
; write string to output
; K_STRING_L and K_STRING_H have to hold the startaddress of the string
; max length of string: 255 characters. string must be terminated by \0
;
; Y,A - are perserved
;
; @param - K_STRING_L (memorylocation with the startaddress of the string)
;
; @return -
.scope
k_wstr:
pha ; save A to stack
phy ; save Y to stack
ldy #$00 ; set index
* lda (K_STRING_L),y ; load character
beq +
jsr k_wchr ; print character
iny ; increment index
bra - ; next character
* ply ; restore Y
pla ; restore A
rts
.scend
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; k_wchr
; write one character to output
;
; @param A - character to write
;
; @return -
.scope
k_wchr:
; deactivated for testing with py65
jsr acia_send_b ; send charachter to ACIA and wait until it was sent
rts ; return
; current workaround for py65
; sta $f001
; rts
.scend
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; k_rchr
; read one character from input
; this is nonblocking, C flag is set if no charachter was read
;
; @param -
;
; @return - A the received byte or "0" with C flag set if no byte was recieved.
.scope
k_rchr:
; deactivated for testing with py65
sec ; set carry flag
jsr acia_received ; check if data is available
beq + ; return, leave Z flag set
jsr acia_receive ; read the byte
clc ; clear carry flag to indicate data
* rts ; return
; current workaround for py65
; sec ; set carry
; lda $f004 ; read character
; beq + ; no character read
; clc ; clear carry if character read
;* rts ; return
.scend
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
k_ascii2byte:
; convert two ascii characters in the kernel buffer to
; one byte. blank characters are skipped
; X is modified and A is destroyed
; K_TMP1 is modified
;
; @param - X containing the offset in K_BUFFER
;
; @return - A containing the parsed byte
; @return - X pointing to the byte after the last parsed character
.scope
* lda K_BUFFER,x ; read fists character
inx ; increase index
cmp #$20 ; check for blank
beq - ; read next character
jsr u_chr2nibble ; convert to first nibble
asl
asl
asl
asl ; shift to high nibble
sta K_TMP1 ; save high nibble
lda K_BUFFER,x
jsr u_chr2nibble ; convert next nibble
ora K_TMP1 ; add high nibble
inx ; set indext to byte after last character
rts
.scend
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; RESET
;
;
.scope
k_RESET:
sei ; prevent interupts
cld ; set binary mode
ldx #$7f ; last RAM address
txs ; set stackpointer
lda #$00 ; clear memory
* sta $0,x ;
dex ;
bne - ;
cli ; reenable interupts
lda #ACIA_MODE ; set serial mode and init ACIA
jsr acia_init ; init ACIA
jmp k_START ; start kernel
.scend
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
;
;
k_NMI:
rti
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
k_IRQ:
rti
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; DATA section
;
;
;
k_welcome: .byte 13,"MOUSE 65C02 micro computer (c) 2015",13,"M-OS V0.3",13,"READY.",13,0
;
; fill ROM to vector table
;
.advance $fffa
.word k_NMI ; NMI vector
.word k_RESET ; RESET vector
.word k_IRQ ; IRQ vector
| 23.421212 | 89 | 0.492819 |
9a0ef1578a4a62b4f6bd098dfd7734e236ba848f | 188 | ps1 | PowerShell | Fluxor/doc/sample-cronjobs/stat-runner-compute-vm.ps1 | vmkdaily/vFlux-Stats-Kit | 4a07ad3cb0f08ab32aa0b3f7edda1752506a4e95 | [
"MIT"
] | 68 | 2016-03-30T16:13:23.000Z | 2022-02-01T15:20:18.000Z | Fluxor/doc/sample-cronjobs/stat-runner-compute-vm.ps1 | vmkdaily/vFlux-Stats-Kit | 4a07ad3cb0f08ab32aa0b3f7edda1752506a4e95 | [
"MIT"
] | 12 | 2016-03-30T16:32:03.000Z | 2018-11-21T18:57:49.000Z | Fluxor/doc/sample-cronjobs/stat-runner-compute-vm.ps1 | vmkdaily/vFlux-Stats-Kit | 4a07ad3cb0f08ab32aa0b3f7edda1752506a4e95 | [
"MIT"
] | 12 | 2016-09-07T15:10:08.000Z | 2021-03-04T04:06:36.000Z | #!/snap/bin/pwsh
$vc = 'vcva01.lab.local'
1..7 | ForEach-Object {
$stats = Get-FluxCompute -Server $vc -ReportType VM
Write-FluxCompute -InputObject $stats
Start-Sleep -Seconds 20
}
| 23.5 | 53 | 0.702128 |
81ad276ca6874727c2604b91d9bfc890c4ab09ea | 8,539 | rs | Rust | src/test/run-make/execution-engine/test.rs | jaheba/rust-doodling | f59286e3b9fb5ada5570feb6c5a6f11ff14ec8de | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] | null | null | null | src/test/run-make/execution-engine/test.rs | jaheba/rust-doodling | f59286e3b9fb5ada5570feb6c5a6f11ff14ec8de | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] | null | null | null | src/test/run-make/execution-engine/test.rs | jaheba/rust-doodling | f59286e3b9fb5ada5570feb6c5a6f11ff14ec8de | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] | null | null | null | // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#![feature(rustc_private)]
#![feature(libc)]
extern crate libc;
extern crate rustc;
extern crate rustc_driver;
extern crate rustc_front;
extern crate rustc_lint;
extern crate rustc_llvm as llvm;
extern crate rustc_metadata;
extern crate rustc_resolve;
#[macro_use] extern crate syntax;
use std::ffi::{CStr, CString};
use std::mem::transmute;
use std::path::PathBuf;
use std::rc::Rc;
use std::thread::Builder;
use rustc::dep_graph::DepGraph;
use rustc::front::map as ast_map;
use rustc::middle::cstore::{CrateStore, LinkagePreference};
use rustc::ty;
use rustc::session::config::{self, basic_options, build_configuration, Input, Options};
use rustc::session::build_session;
use rustc_driver::{driver, abort_on_err};
use rustc_front::lowering::{lower_crate, LoweringContext};
use rustc_resolve::MakeGlobMap;
use rustc_metadata::cstore::CStore;
use libc::c_void;
use syntax::diagnostics::registry::Registry;
use syntax::parse::token;
fn main() {
// Currently trips an assertion on i686-msvc, presumably because the support
// in LLVM is a little young.
if cfg!(target_env = "msvc") && cfg!(target_arch = "x86") {
return
}
let program = r#"
#[no_mangle]
pub static TEST_STATIC: i32 = 42;
"#;
let program2 = r#"
#[no_mangle]
pub fn test_add(a: i32, b: i32) -> i32 { a + b }
"#;
let mut path = match std::env::args().nth(2) {
Some(path) => PathBuf::from(&path),
None => panic!("missing rustc path")
};
// Remove two segments from rustc path to get sysroot.
path.pop();
path.pop();
let mut ee = ExecutionEngine::new(program, path);
let test_static = match ee.get_global("TEST_STATIC") {
Some(g) => g as *const i32,
None => panic!("failed to get global")
};
assert_eq!(unsafe { *test_static }, 42);
ee.add_module(program2);
let test_add: fn(i32, i32) -> i32;
test_add = match ee.get_function("test_add") {
Some(f) => unsafe { transmute(f) },
None => panic!("failed to get function")
};
assert_eq!(test_add(1, 2), 3);
}
struct ExecutionEngine {
ee: llvm::ExecutionEngineRef,
modules: Vec<llvm::ModuleRef>,
sysroot: PathBuf,
}
impl ExecutionEngine {
pub fn new(program: &str, sysroot: PathBuf) -> ExecutionEngine {
let (llmod, deps) = compile_program(program, sysroot.clone())
.expect("failed to compile program");
let ee = unsafe { llvm::LLVMBuildExecutionEngine(llmod) };
if ee.is_null() {
panic!("Failed to create ExecutionEngine: {}", llvm_error());
}
let ee = ExecutionEngine{
ee: ee,
modules: vec![llmod],
sysroot: sysroot,
};
ee.load_deps(&deps);
ee
}
pub fn add_module(&mut self, program: &str) {
let (llmod, deps) = compile_program(program, self.sysroot.clone())
.expect("failed to compile program in add_module");
unsafe { llvm::LLVMExecutionEngineAddModule(self.ee, llmod); }
self.modules.push(llmod);
self.load_deps(&deps);
}
/// Returns a raw pointer to the named function.
pub fn get_function(&mut self, name: &str) -> Option<*const c_void> {
let s = CString::new(name.as_bytes()).unwrap();
for &m in &self.modules {
let fv = unsafe { llvm::LLVMGetNamedFunction(m, s.as_ptr()) };
if !fv.is_null() {
let fp = unsafe { llvm::LLVMGetPointerToGlobal(self.ee, fv) };
assert!(!fp.is_null());
return Some(fp);
}
}
None
}
/// Returns a raw pointer to the named global item.
pub fn get_global(&mut self, name: &str) -> Option<*const c_void> {
let s = CString::new(name.as_bytes()).unwrap();
for &m in &self.modules {
let gv = unsafe { llvm::LLVMGetNamedGlobal(m, s.as_ptr()) };
if !gv.is_null() {
let gp = unsafe { llvm::LLVMGetPointerToGlobal(self.ee, gv) };
assert!(!gp.is_null());
return Some(gp);
}
}
None
}
/// Loads all dependencies of compiled code.
/// Expects a series of paths to dynamic library files.
fn load_deps(&self, deps: &[PathBuf]) {
for path in deps {
let s = match path.as_os_str().to_str() {
Some(s) => s,
None => panic!(
"Could not convert crate path to UTF-8 string: {:?}", path)
};
let cs = CString::new(s).unwrap();
let res = unsafe { llvm::LLVMRustLoadDynamicLibrary(cs.as_ptr()) };
if res == 0 {
panic!("Failed to load crate {:?}: {}",
path.display(), llvm_error());
}
}
}
}
impl Drop for ExecutionEngine {
fn drop(&mut self) {
unsafe { llvm::LLVMDisposeExecutionEngine(self.ee) };
}
}
/// Returns last error from LLVM wrapper code.
fn llvm_error() -> String {
String::from_utf8_lossy(
unsafe { CStr::from_ptr(llvm::LLVMRustGetLastError()).to_bytes() })
.into_owned()
}
fn build_exec_options(sysroot: PathBuf) -> Options {
let mut opts = basic_options();
// librustc derives sysroot from the executable name.
// Since we are not rustc, we must specify it.
opts.maybe_sysroot = Some(sysroot);
// Prefer faster build time
opts.optimize = config::OptLevel::No;
// Don't require a `main` function
opts.crate_types = vec![config::CrateTypeDylib];
opts
}
/// Compiles input up to phase 4, translation to LLVM.
///
/// Returns the LLVM `ModuleRef` and a series of paths to dynamic libraries
/// for crates used in the given input.
fn compile_program(input: &str, sysroot: PathBuf)
-> Option<(llvm::ModuleRef, Vec<PathBuf>)> {
let input = Input::Str {
name: driver::anon_src(),
input: input.to_string(),
};
let thread = Builder::new().name("compile_program".to_string());
let handle = thread.spawn(move || {
let opts = build_exec_options(sysroot);
let cstore = Rc::new(CStore::new(token::get_ident_interner()));
let sess = build_session(opts, None, Registry::new(&rustc::DIAGNOSTICS),
cstore.clone());
rustc_lint::register_builtins(&mut sess.lint_store.borrow_mut(), Some(&sess));
let cfg = build_configuration(&sess);
let id = "input".to_string();
let krate = panictry!(driver::phase_1_parse_input(&sess, cfg, &input));
let krate = driver::phase_2_configure_and_expand(&sess, &cstore, krate, &id, None)
.expect("phase_2 returned `None`");
let krate = driver::assign_node_ids(&sess, krate);
let lcx = LoweringContext::new(&sess, Some(&krate));
let dep_graph = DepGraph::new(sess.opts.build_dep_graph);
let mut hir_forest = ast_map::Forest::new(lower_crate(&lcx, &krate), dep_graph);
let arenas = ty::CtxtArenas::new();
let ast_map = driver::make_map(&sess, &mut hir_forest);
abort_on_err(driver::phase_3_run_analysis_passes(
&sess, &cstore, ast_map, &arenas, &id,
MakeGlobMap::No, |tcx, mir_map, analysis, _| {
let trans = driver::phase_4_translate_to_llvm(tcx, mir_map.unwrap(), analysis);
let crates = tcx.sess.cstore.used_crates(LinkagePreference::RequireDynamic);
// Collect crates used in the session.
// Reverse order finds dependencies first.
let deps = crates.into_iter().rev()
.filter_map(|(_, p)| p).collect();
assert_eq!(trans.modules.len(), 1);
let llmod = trans.modules[0].llmod;
// Workaround because raw pointers do not impl Send
let modp = llmod as usize;
(modp, deps)
}), &sess)
}).unwrap();
match handle.join() {
Ok((llmod, deps)) => Some((llmod as llvm::ModuleRef, deps)),
Err(_) => None
}
}
| 30.938406 | 91 | 0.602881 |
9c7c951ac03a040049c9af3e6cf70dd13e034276 | 1,157 | cpp | C++ | src/BootLoader/CDisplay.cpp | benceno/boot | 9c7c5128f5036066b790b3c02ccf49f689577b6a | [
"MIT"
] | 61 | 2017-11-12T06:22:49.000Z | 2022-02-21T17:14:16.000Z | src/BootLoader/CDisplay.cpp | benceno/boot | 9c7c5128f5036066b790b3c02ccf49f689577b6a | [
"MIT"
] | 2 | 2019-03-06T05:04:25.000Z | 2020-10-23T21:17:13.000Z | src/BootLoader/CDisplay.cpp | benceno/boot | 9c7c5128f5036066b790b3c02ccf49f689577b6a | [
"MIT"
] | 28 | 2018-01-07T06:42:17.000Z | 2022-02-09T13:56:47.000Z | // CDisplay.cpp
#include "CDisplay.h"
void CDisplay::TextOut(
const char far* inStrSource,
byte inX,
byte inY,
byte inBackgroundColor,
byte inTextColor,
bool inUpdateCursor
)
{
byte textAttribute = ((inTextColor) | (inBackgroundColor << 4));
byte lengthOfString = CString::Strlen(inStrSource);
__asm
{
push bp
mov al, inUpdateCursor
xor bh, bh
mov bl, textAttribute
xor cx, cx
mov cl, lengthOfString
mov dh, inY
mov dl, inX
mov es, word ptr[inStrSource + 2]
mov bp, word ptr[inStrSource]
mov ah, 13h
int 10h
pop bp
}
}
void CDisplay::ClearScreen()
{
__asm
{
mov al, 02h
mov ah, 00h
int 10h
}
}
void CDisplay::ShowCursor(
bool inMode
)
{
byte flag = inMode ? 0 : 0x32;
__asm
{
mov ch, flag
mov cl, 0Ah
mov ah, 01h
int 10h
}
}
| 19.610169 | 68 | 0.45376 |
965d2ec366e2d3098cb4892daef23248b089a46d | 8,303 | php | PHP | ip_libs/php/menu/common.php | eazuka/ImpressPages-CMS | f16d9b88d89a759a001abfc5d1fe5a11ef14eea0 | [
"MIT"
] | 1 | 2015-12-26T18:52:40.000Z | 2015-12-26T18:52:40.000Z | ip_libs/php/menu/common.php | mariomka/ImpressPages-CMS | 52745614caca3051051204e50e1fb56b5683a9e7 | [
"MIT"
] | null | null | null | ip_libs/php/menu/common.php | mariomka/ImpressPages-CMS | 52745614caca3051051204e50e1fb56b5683a9e7 | [
"MIT"
] | null | null | null | <?php
/**
* @package ImpressPages
* @copyright Copyright (C) 2011 ImpressPages LTD.
* @license see ip_license.html
*/
/**
* Common class to generate site menus. You can write your own more specific class by this example, but this one should enough in many cases.
* @package Library
*/
namespace Library\Php\Menu;
if (!defined('CMS')) exit;
class Common {
/**
* Generates menu by specified zone name. You can specify start depth and depth limit like in MySQL. So, if you write generate('left_menu', 2, 3),
* will be generated these menu levels: 2, 3, 4. And in this situation the function will generate empty string until the page on first level will be selected.
* @param string $zoneName
* @param int $startDepth if specified, will be returned only childs of this element
* @param int $depthLimit option to limit the depth of menu
* @return string HTML
*/
static function generate($zoneName, $startDepth=1, $depthLimit=1000) {
global $site;
//variable check
if($startDepth < 1) {
$backtrace = debug_backtrace();
if(isset($backtrace[0]['file']) && $backtrace[0]['line'])
trigger_error('Start depth can\'t be less than one. (Error source: '.$backtrace[0]['file'].' line: '.$backtrace[0]['line'].' ) ');
else
trigger_error('Start depth can\'t be less than one.');
return;
}
if($depthLimit < 1) {
$backtrace = debug_backtrace();
if(isset($backtrace[0]['file']) && $backtrace[0]['line'])
trigger_error('Depth limit can\'t be less than one. (Error source: '.$backtrace[0]['file'].' line: '.$backtrace[0]['line'].' ) ');
else
trigger_error('Depth limit can\'t be less than one.');
return;
}
//end variable check
$answer = '';
$menu = $site->getZone($zoneName);
if($menu) {
$breadcrumb = $menu->getBreadcrumb();
if($startDepth == 1) {
$elements = $menu->getElements(); //get first level elements
} elseif (isset($breadcrumb[$startDepth-2])) { // if we need a second level (2), we need to find a parent element at first level. And he is at position 0. This is where -2 comes from.
$elements = $menu->getElements(null, $breadcrumb[$startDepth-2]->getId());
}
if(isset($elements) && sizeof($elements) > 0) {
$curDepth = $elements[0]->getDepth();
$maxDepth = $curDepth + $depthLimit - 1;
$subElementsData = self::getSubElementsData($elements, $zoneName, $maxDepth, $curDepth);
$html = $subElementsData['html'];
$answer .= $html;
}
}else {
$backtrace = debug_backtrace();
if(isset($backtrace[0]['file']) && isset($backtrace[0]['line']))
trigger_error('Undefined zone. (Error source: '.$backtrace[0]['file'].' line: '.$backtrace[0]['line'].' ) ');
}
return $answer;
}
/**
* Generates submenu by specified parent element id.
* @param string $zoneName
* @param int $parentElementId if specified, will be returned only childs of this element
* @param int $depthLimit option to limit the depth of menu
* @return string HTML
*/
static function generateSubmenu($zoneName, $parentElementId = null, $depthLimit = 1000) {
global $site;
//variable check
if($depthLimit < 1) {
$backtrace = debug_backtrace();
if(isset($backtrace[0]['file']) && $backtrace[0]['line'])
trigger_error('Depth limit can\'t be less than one. (Error source: '.$backtrace[0]['file'].' line: '.$backtrace[0]['line'].' ) ');
else
trigger_error('Depth limit can\'t be less than one.');
return;
}
//end variable check
$answer = '';
$menu = $site->getZone($zoneName);
if($menu) {
$elements = $menu->getElements(null, $parentElementId);
if($elements && sizeof($elements) > 0) {
$curDepth = $elements[0]->getDepth();
$maxDepth = $curDepth + $depthLimit - 1;
$subElementsData = self::getSubElementsData($elements, $zoneName, $maxDepth, $curDepth);
$html = $subElementsData['html'];
$answer .= $html;
}
}else {
return ''; //changed bihaviour. 2012-04-11. Now theme developer can skip checking if zone exists.
// $backtrace = debug_backtrace();
// if(isset($backtrace[0]['file']) && isset($backtrace[0]['line']))
// trigger_error('Undefined zone. (Error source: '.$backtrace[0]['file'].' line: '.$backtrace[0]['line'].' ) ');
}
return $answer;
}
/**
* @param array $elements zone elements
* @param string $zoneName
* @param int $depth
* @param int $inactiveDepth
* @param bool $inactiveIfParent
* @param int $curDepth used for recursion
* @return string html of menu
*/
static function getSubElementsData($elements, $zoneName, $depth, $curDepth) {
global $site;
$html = "\n";
$html .= "<ul class=\"level".$curDepth."\">"."\n";
$selected = false;
foreach($elements as $key => $element) {
$subHtml = '';
$subSelected = false;
if($curDepth < $depth) {
$menu = $site->getZone($zoneName);
$children = $menu->getElements(null, $element->getId());
if(sizeof($children) > 0) {
$subElementsData = self::getSubElementsData($children, $zoneName, $depth, $curDepth+1);
$subHtml = $subElementsData['html'];
$subSelected = $subElementsData['selected'];
}
}
$class = '';
if($element->getCurrent() || $element->getType() == 'redirect' && $element->getLink() == $site->getCurrentUrl()) {
$class .= ($class ? ' ' : '') . 'current';
$selected = true;
} elseif($element->getSelected() || $subSelected || $element->getType() == 'redirect' && self::existInBreadcrumb($element->getLink())) {
// || $element->getLink() != '' && strpos($site->getCurrentUrl(), $element->getLink()) === 0 || $element->getLink().'/?cms_action=manage' == $site->getCurrentUrl()
$class .= ($class ? ' ' : '') . 'selected';
$selected = true;
}
if($curDepth < $depth && sizeof($children) > 0) {
$class .= ($class ? ' ' : '') . 'subnodes';
}
$class .= ($class ? ' ' : '') . 'type'.ucwords($element->getType());
$tmpLink = $element->getLink();
if ($tmpLink) {
if($element->getType() == 'inactive') {
$html .= ' <li class="'.$class.'"><a title="'.htmlspecialchars($element->getPageTitle()).'">'.htmlspecialchars($element->getButtonTitle()).'</a>'.$subHtml."</li>"."\n";
} else {
$html .= ' <li class="'.$class.'"><a href="'.$tmpLink.'" title="'.htmlspecialchars($element->getPageTitle()).'">'.htmlspecialchars($element->getButtonTitle()).'</a>'.$subHtml."</li>"."\n";
}
} else {
$html .= ' <li class="'.$class.'"><a>'.htmlspecialchars($element->getButtonTitle())."</a>\n".$subHtml."\n </li>\n";
}
}
$html .= "</ul>"."\n";
$answer = array(
'html' => $html,
'selected' => $selected
);
return $answer;
}
private static function existInBreadcrumb($link) {
global $site;
$breadcrumb = $site->getBreadcrumb();
array_pop($breadcrumb);
foreach($breadcrumb as $key => $element) {
if($element->getLink() == $link && $element->getType() != 'redirect' && $element->getType() != 'subpage') {
return true;
}
}
if ($link == $site->generateUrl(null, $site->getCurrentZone()->getName())) {
return true;
}
return false;
}
}
| 39.165094 | 210 | 0.529327 |
d1e29e5ef49e47f0537b477dae04772cc3507ebd | 3,025 | dart | Dart | example/lib/ui/widgets/TextFormFieldWidget.dart | jangeci/tch_appliable_core | 8c7acdc64a11b319e3bbf272aa1f9c8b712e3eab | [
"MIT"
] | 1 | 2021-01-22T22:50:52.000Z | 2021-01-22T22:50:52.000Z | example/lib/ui/widgets/TextFormFieldWidget.dart | jangeci/tch_appliable_core | 8c7acdc64a11b319e3bbf272aa1f9c8b712e3eab | [
"MIT"
] | null | null | null | example/lib/ui/widgets/TextFormFieldWidget.dart | jangeci/tch_appliable_core | 8c7acdc64a11b319e3bbf272aa1f9c8b712e3eab | [
"MIT"
] | 1 | 2021-12-15T14:53:02.000Z | 2021-12-15T14:53:02.000Z | import 'dart:io';
import 'package:flutter/material.dart';
class TextFormFieldWidget extends StatefulWidget {
final TextEditingController controller;
final bool autofocus;
final FocusNode? focusNode;
final ValueChanged<String>? onChanged;
final ValueChanged<String>? onFieldSubmitted;
final TextInputType? keyboardType;
final TextInputAction? textInputAction;
final InputDecoration? inputDecoration;
final TextCapitalization textCapitalization;
final String? label;
final int lines;
final FormFieldValidator<String>? validator;
/// TextFormFieldWidget initialization
TextFormFieldWidget({
Key? key,
required this.controller,
this.autofocus = false,
this.focusNode,
this.onChanged,
this.onFieldSubmitted,
this.keyboardType,
this.textInputAction,
this.inputDecoration,
this.textCapitalization = TextCapitalization.none,
this.label,
this.lines = 1,
this.validator,
}) : super(key: key);
/// Create state for widget
@override
State<StatefulWidget> createState() => _TextFormFieldWidgetState();
}
class _TextFormFieldWidgetState extends State<TextFormFieldWidget> with SingleTickerProviderStateMixin {
/// Create view layout from widgets
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
final OutlineInputBorder border = OutlineInputBorder(
borderSide: BorderSide(
color: theme.primaryColorDark,
width: 1,
),
borderRadius: BorderRadius.circular(8),
);
final OutlineInputBorder errorBorder = OutlineInputBorder(
borderSide: BorderSide(
color: Colors.red,
width: 1,
),
borderRadius: BorderRadius.circular(8),
);
return AnimatedSize(
vsync: this,
duration: kThemeAnimationDuration,
child: Container(
width: 576,
child: TextFormField(
autofocus: widget.autofocus,
controller: widget.controller,
focusNode: widget.focusNode,
onChanged: widget.onChanged,
onFieldSubmitted: widget.onFieldSubmitted,
keyboardType: widget.keyboardType,
textInputAction: widget.textInputAction,
textCapitalization: widget.textCapitalization,
minLines: widget.lines,
maxLines: widget.lines,
decoration: widget.inputDecoration ??
InputDecoration(
isDense: true,
labelText: widget.label,
contentPadding: EdgeInsets.symmetric(
horizontal: 8,
vertical: 12,
),
enabledBorder: border,
focusedBorder: border,
errorBorder: errorBorder,
focusedErrorBorder: errorBorder,
errorStyle: TextStyle(color: Colors.red),
),
validator: widget.validator,
autocorrect: !Platform.isIOS, //TODO disabled for iOS as TMP solution until Flutter resolution
),
),
);
}
}
| 30.555556 | 104 | 0.65719 |
755975453e129b6bd2f409c4e20f1775fc969f85 | 6,864 | h | C | src/adera/Machines/Rocket.h | flindt/osp-magnum | 4f1b8f2e4bf9429eaf3c06ee15f3c97ed62c844c | [
"MIT"
] | null | null | null | src/adera/Machines/Rocket.h | flindt/osp-magnum | 4f1b8f2e4bf9429eaf3c06ee15f3c97ed62c844c | [
"MIT"
] | null | null | null | src/adera/Machines/Rocket.h | flindt/osp-magnum | 4f1b8f2e4bf9429eaf3c06ee15f3c97ed62c844c | [
"MIT"
] | null | null | null | /**
* Open Space Program
* Copyright © 2019-2020 Open Space Program Project
*
* MIT License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#pragma once
#include <utility>
#include <osp/Active/SysMachine.h>
#include <osp/Active/physics.h>
#include <osp/Resource/blueprints.h>
#include "adera/ShipResources.h"
namespace adera::active::machines
{
/**
*
*/
class MachineRocket : public osp::active::Machine
{
friend class SysMachineRocket;
using input_t = std::pair<osp::DependRes<ShipResourceType>, float>;
struct ResourceInput
{
ResourceInput(osp::DependRes<ShipResourceType> type,
float massRateFraction, osp::active::WireInput source)
: m_type(std::move(type))
, m_massRateFraction(massRateFraction)
, m_source(std::move(source))
{}
osp::DependRes<ShipResourceType> m_type;
float m_massRateFraction;
osp::active::WireInput m_source;
};
struct Parameters
{
float m_maxThrust;
float m_specImpulse;
};
public:
MachineRocket(Parameters params, std::vector<input_t> resources);
MachineRocket(MachineRocket &&move) noexcept;
MachineRocket& operator=(MachineRocket&& move) noexcept;
MachineRocket(MachineRocket const& copy) = delete;
MachineRocket& operator=(MachineRocket const& move) = delete;
void propagate_output(osp::active::WireOutput *output) override;
osp::active::WireInput* request_input(osp::WireInPort port) override;
osp::active::WireOutput* request_output(osp::WireOutPort port) override;
std::vector<osp::active::WireInput*> existing_inputs() override;
std::vector<osp::active::WireOutput*> existing_outputs() override;
/**
* Return normalized power output level of the rocket this frame
*
* Returns a value [0,1] corresponding to the current output power of the
* engine. This value is equal to the throttle input level, unless the
* engine has run out of fuel, has a nonlinear throttle response, or some
* similar reason. Used primarily by SysExhaustPlume to determine what the
* exhaust plume effect should look like.
*
* @return normalized float [0,1] representing engine power output
*/
float current_output_power() const
{
return m_powerOutput;
}
private:
osp::active::WireInput m_wiGimbal{this, "Gimbal"};
osp::active::WireInput m_wiIgnition{this, "Ignition"};
osp::active::WireInput m_wiThrottle{this, "Throttle"};
std::vector<ResourceInput> m_resourceLines;
osp::active::ActiveEnt m_rigidBody{entt::null};
Parameters m_params;
// Rocket power output for the current frame
float m_powerOutput{0.0f};
}; // MachineRocket
class SysMachineRocket :
public osp::active::SysMachine<SysMachineRocket, MachineRocket>
{
public:
static inline std::string smc_name = "Rocket";
SysMachineRocket(osp::active::ActiveScene &scene);
//void update_sensor();
void update_physics(osp::active::ActiveScene& rScene);
/**
* Attach a visual exhaust plume effect to MachineRocket
*
* Searches the hierarchy under the specified MachineRocket entity and
* attaches an ACompExhaustPlume to the rocket's plume node. A graphical
* exhaust plume effect will be attached to the node by SysExhaustPlume
* when it processes the component.
* @param ent The MachineRocket entity
*/
void attach_plume_effect(osp::active::ActiveEnt ent);
/**
* Attach a MachineRocket to an entity
*
* Also attempts to attach a plume component to the appropriate child node
* @param ent The entity that owns the MachineRocket
* @return The new MachineRocket instance
*/
osp::active::Machine& instantiate(osp::active::ActiveEnt ent,
osp::PrototypeMachine config, osp::BlueprintMachine settings) override;
osp::active::Machine& get(osp::active::ActiveEnt ent) override;
private:
static uint64_t resource_units_required(
osp::active::ActiveScene const& scene,
MachineRocket const& machine, float throttle,
MachineRocket::ResourceInput const& resource);
constexpr static float resource_mass_flow_rate(MachineRocket const& machine,
float throttle, MachineRocket::ResourceInput const& resource);
osp::active::UpdateOrderHandle_t m_updatePhysics;
}; // SysMachineRocket
inline MachineRocket::MachineRocket(Parameters params, std::vector<input_t> resources)
: Machine(true)
, m_params(params)
{
for (input_t& input : std::move(resources))
{
std::string resName = input.first->m_identifier;
m_resourceLines.emplace_back(
std::move(input.first),
input.second,
osp::active::WireInput{this, resName});
}
}
inline MachineRocket::MachineRocket(MachineRocket&& move) noexcept
: Machine(std::move(move))
, m_wiGimbal(this, std::move(move.m_wiGimbal))
, m_wiIgnition(this, std::move(move.m_wiIgnition))
, m_wiThrottle(this, std::move(move.m_wiThrottle))
, m_rigidBody(std::move(move.m_rigidBody))
, m_params(std::move(move.m_params))
, m_resourceLines(std::move(move.m_resourceLines))
, m_powerOutput(std::exchange(move.m_powerOutput, 0.0f))
{ }
inline MachineRocket& MachineRocket::operator=(MachineRocket&& move) noexcept
{
Machine::operator=(std::move(move));
m_wiGimbal = { this, std::move(move.m_wiGimbal) };
m_wiIgnition = { this, std::move(move.m_wiIgnition) };
m_wiThrottle = { this, std::move(move.m_wiThrottle) };
m_rigidBody = std::move(move.m_rigidBody);
m_params = std::move(move.m_params);
m_resourceLines = std::move(move.m_resourceLines);
m_powerOutput = std::exchange(move.m_powerOutput, 0.0f);
return *this;
}
} // namespace adera::active::machines
| 35.381443 | 86 | 0.706585 |
5fc9b9977e9274d6fda7ca9cff84b405fb9a5bef | 2,389 | kt | Kotlin | src/main/kotlin/com/github/rs3vans/monadik/Try.kt | rs3vans/monadik | 72312eaa434cb2ac34e25ededa0d193546c34d43 | [
"MIT"
] | null | null | null | src/main/kotlin/com/github/rs3vans/monadik/Try.kt | rs3vans/monadik | 72312eaa434cb2ac34e25ededa0d193546c34d43 | [
"MIT"
] | 3 | 2016-09-05T18:37:09.000Z | 2016-09-06T00:17:41.000Z | src/main/kotlin/com/github/rs3vans/monadik/Try.kt | rs3vans/monadik | 72312eaa434cb2ac34e25ededa0d193546c34d43 | [
"MIT"
] | null | null | null | package com.github.rs3vans.monadik
sealed class Try<out T : Any> {
abstract val value: T
abstract val exception: Exception
val isSuccess = this is Success
val isFailure = this is Failure
operator fun component1() = if (isSuccess) value else null
operator fun component2() = if (isFailure) exception else null
operator fun not() = isFailure
class Success<out T : Any>(override val value: T) : Try<T>() {
override val exception: Exception
get() = throw NotAFailureException()
}
class Failure(override val exception: Exception) : Try<Nothing>() {
override val value: Nothing
get() = throw exception
}
inline fun <U : Any> flatMap(transformer: (T) -> Try<U>): Try<U> = when (this) {
is Try.Success -> transformer(value)
is Try.Failure -> this
}
inline fun <U : Any> map(transformer: (T) -> U): Try<U> = flatMap { t -> Try<U> { transformer(t) } }
inline fun fold(left: (T) -> Unit, right: (Exception) -> Unit): Try<T> = apply {
when (this) {
is Success -> left(value)
is Failure -> right(exception)
}
}
inline fun ifSuccess(left: (T) -> Unit): Try<T> = fold(left, {})
inline fun ifFailure(right: (Exception) -> Unit): Try<T> = fold({}, right)
fun throwIfFailure() = ifFailure { throw it }
fun toOption(): Option<T> = when (this) {
is Success -> Option.Some(value)
is Failure -> Option.None
}
fun toEither(): Either<T, Exception> = when (this) {
is Success -> Either.Left(value)
is Failure -> Either.Right(exception)
}
companion object {
inline operator fun <T : Any> invoke(t: () -> T): Try<T> = try {
Success(t())
} catch (e: Exception) {
Failure(e)
}
}
}
inline fun <T : Any> Try<T>.recoverWith(transformer: (Exception) -> Try<T>): Try<T> = when (this) {
is Try.Success -> this
is Try.Failure -> transformer(exception)
}
inline fun <T : Any> Try<T>.recover(transformer: (Exception) -> T): Try<T> = recoverWith {
Try<T> { transformer(exception) }
}
inline fun <T : Any> Try<T>.orElseGet(t: () -> T): T = when (this) {
is Try.Success -> value
is Try.Failure -> t()
}
fun <T : Any> Try<T>.orElse(t: T): T = orElseGet { t }
class NotAFailureException : Exception("not a failure") | 29.493827 | 104 | 0.584763 |
a0be9c2e30117c496b1d5cb048420e9acd2fdbc0 | 250,808 | sql | SQL | db/migrations/20201007212444_fill_students.sql | pepeul1191/tutorial-flask | e0ebcd5bdb0c1c37218da471d13b37e393cf3171 | [
"Apache-2.0"
] | null | null | null | db/migrations/20201007212444_fill_students.sql | pepeul1191/tutorial-flask | e0ebcd5bdb0c1c37218da471d13b37e393cf3171 | [
"Apache-2.0"
] | null | null | null | db/migrations/20201007212444_fill_students.sql | pepeul1191/tutorial-flask | e0ebcd5bdb0c1c37218da471d13b37e393cf3171 | [
"Apache-2.0"
] | null | null | null | -- migrate:up
INSERT INTO students (id, code, names, last_names, email, personal_email, tw_user, tw_pass, ad_user, gender_id, carrer_id, country_id, photo_url) VALUES
(1, 2020001, "Cherlyn Jobye", "Aarons Daubeny", "2020001@universdiad.edu.com", "jdaubenygr@is.gd", "8 997 382 563", "3OV0QC", "730 325 950", 2, 4, 1, "https://cdn.pixabay.com/photo/ 2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(2, 2020002, "Gretel Myrlene", "Abadam Northill", "2020002@universdiad.edu.com", "mnorthill1c@cbc.ca", "8 244 659 204", "uMmEp5", "812 759 720", 2, 4, 2, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(3, 2020003, "Aylmar Goober", "Abercrombie Iashvili", "2020003@universdiad.edu.com", "giashviliz@apple.com", "2 755 254 534", "87XrgD", "476 221 171", 1, 5, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(4, 2020004, "Meade Shay", "Abrahams Moisey", "2020004@universdiad.edu.com", "smoisey0@google.de", "7 512 372 624", "uijzAh", "277 809 536", 2, 5, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(5, 2020005, "Chip Daren", "Ackerley Canning", "2020005@universdiad.edu.com", "dcanning8z@independent.co.uk", "5 332 944 231", "lK6MGN", "580 114 901", 1, 4, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(6, 2020006, "Marguerite Greer", "Adamolli Burkwood", "2020006@universdiad.edu.com", "gburkwood6t@wiley.com", "10 247 694 275", "yqdRre", "669 446 879", 2, 5, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(7, 2020007, "Gannie Ludvig", "Aguilar Thornewill", "2020007@universdiad.edu.com", "lthornewill7b@youtube.com", "1 539 315 571", "jaseRC", "235 718 338", 1, 1, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(8, 2020008, "Jameson Bernardo", "Ahrendsen Hanniger", "2020008@universdiad.edu.com", "bhannigerb0@blogspot.com", "2 971 930 893", "S8lmjN", "279 513 932", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(9, 2020009, "Valma Brit", "Ailward Shervington", "2020009@universdiad.edu.com", "bshervingtonm8@altervista.org", "7 131 199 158", "bnp0xt", "324 712 859", 2, 5, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(10, 2020010, "Jenni Iris", "Alabone Radborne", "2020010@universdiad.edu.com", "iradborneep@sitemeter.com", "2 188 472 726", "NL82Hh", "920 638 720", 2, 4, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(11, 2020011, "Willy Guenna", "Alekseev Geri", "2020011@universdiad.edu.com", "ggerij7@sciencedirect.com", "5 719 249 140", "lPUId0", "955 383 240", 2, 3, 9, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(12, 2020012, "Shelden Vern", "Alekseicik Sarl", "2020012@universdiad.edu.com", "vsarlqa@guardian.co.uk", "10 790 443 930", "8ihdTn", "825 854 371", 1, 1, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(13, 2020013, "Barrie Fabien", "Algeo Stanborough", "2020013@universdiad.edu.com", "fstanboroughlw@wordpress.org", "8 831 315 616", "IBmQAB", "294 998 188", 1, 1, 10, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(14, 2020014, "Lian Glyn", "Allabarton Postan", "2020014@universdiad.edu.com", "gpostanr8@drupal.org", "2 933 333 300", "TaBKJJ", "202 200 996", 2, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(15, 2020015, "Yale Hebert", "Allabush Zammitt", "2020015@universdiad.edu.com", "hzammitt39@com.com", "3 877 997 762", "DT5Q26", "417 584 404", 1, 2, 11, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(16, 2020016, "Kylynn Della", "Allinson Clinch", "2020016@universdiad.edu.com", "dclincheo@zdnet.com", "2 687 146 189", "ridIiO", "108 130 919", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(17, 2020017, "Karim Hugh", "Allot Bilton", "2020017@universdiad.edu.com", "hbiltonnm@merriam-webster.com", "3 527 729 459", "bzJUcV", "964 112 224", 1, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(18, 2020018, "Felike Joshua", "Ambrosoli Schulz", "2020018@universdiad.edu.com", "jschulz6y@nationalgeographic.com", "10 919 467 780", "c4U6wI", "886 610 341", 1, 1, 12, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(19, 2020019, "Nannette Rhianna", "Andrault Hastin", "2020019@universdiad.edu.com", "rhastin1e@arstechnica.com", "6 243 332 662", "Eysw3f", "485 265 706", 2, 2, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(20, 2020020, "Moe Darwin", "Andreia Morfett", "2020020@universdiad.edu.com", "dmorfettjv@discovery.com", "8 791 418 260", "CXPKop", "821 713 164", 1, 4, 14, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(21, 2020021, "Ursuline Gilbertina", "Andress Spens", "2020021@universdiad.edu.com", "gspensm7@independent.co.uk", "8 933 725 445", "x0TADq", "291 183 507", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(22, 2020022, "Horace Nat", "Andrus Adami", "2020022@universdiad.edu.com", "nadami1i@newyorker.com", "3 447 692 527", "tuGbGU", "926 352 273", 1, 5, 2, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(23, 2020023, "Ford Sander", "Andryszczak Raubenheim", "2020023@universdiad.edu.com", "sraubenheim9f@chicagotribune.com", "4 626 652 933", "V35xXu", "742 554 190", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(24, 2020024, "Reiko Tana", "Angove Digby", "2020024@universdiad.edu.com", "tdigby5y@freewebs.com", "10 138 481 561", "tEjIHF", "309 811 242", 2, 5, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(25, 2020025, "Ozzie Penny", "Annatt Paynter", "2020025@universdiad.edu.com", "ppaynterlb@huffingtonpost.com", "4 938 242 336", "UA9JKs", "481 371 597", 1, 3, 15, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(26, 2020026, "Rodrigo Osgood", "Annice Child", "2020026@universdiad.edu.com", "ochildjs@google.ca", "8 478 733 605", "HlNFVx", "816 816 336", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(27, 2020027, "Kori Dora", "Antat Anker", "2020027@universdiad.edu.com", "danker7@fotki.com", "7 434 111 189", "FY9cKd", "163 923 864", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(28, 2020028, "Vincent Eugen", "Aprahamian Pawfoot", "2020028@universdiad.edu.com", "epawfootes@list-manage.com", "5 616 644 286", "1PfF5Z", "258 249 634", 1, 3, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(29, 2020029, "Collette Leonelle", "Aries Leguey", "2020029@universdiad.edu.com", "llegueyig@columbia.edu", "5 284 109 507", "rtKaFk", "928 813 670", 2, 4, 16, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(30, 2020030, "Ferdinand Manolo", "Arlet Lorait", "2020030@universdiad.edu.com", "mloraitbn@amazonaws.com", "7 723 147 277", "XEH3oi", "902 366 486", 1, 3, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(31, 2020031, "Onfre Rodrigo", "Armatys MacGeaney", "2020031@universdiad.edu.com", "rmacgeaney2d@discovery.com", "1 356 132 537", "FS6QGJ", "516 809 639", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(32, 2020032, "Ferdie Woodie", "Aronowicz MacNish", "2020032@universdiad.edu.com", "wmacnishpu@gnu.org", "10 287 311 710", "Q86OmJ", "507 146 234", 1, 5, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(33, 2020033, "Lebbie Bria", "Artharg Neeves", "2020033@universdiad.edu.com", "bneeves7l@jimdo.com", "6 988 118 584", "lrBinq", "905 240 406", 2, 2, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(34, 2020034, "Zacharias Jedediah", "Arundell Chilvers", "2020034@universdiad.edu.com", "jchilversog@blogger.com", "8 927 276 509", "MFCXfa", "749 619 674", 1, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(35, 2020035, "Stormi Correna", "Ashcroft Donne", "2020035@universdiad.edu.com", "cdonnec@blog.com", "8 751 462 167", "cWODW3", "972 169 663", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(36, 2020036, "Caresse Darleen", "Aspell Vize", "2020036@universdiad.edu.com", "dvizel7@icq.com", "4 348 512 741", "aDmqdU", "705 216 254", 2, 5, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(37, 2020037, "Cornelle Adriena", "Astles Cattermoul", "2020037@universdiad.edu.com", "acattermoulil@usda.gov", "1 725 650 617", "Jx5lAZ", "229 979 675", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(38, 2020038, "Janetta Farrand", "Astridge Hamilton", "2020038@universdiad.edu.com", "fhamilton3w@ibm.com", "8 366 408 310", "kdla5c", "700 972 199", 2, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(39, 2020039, "Katine Hettie", "Attfield Poulglais", "2020039@universdiad.edu.com", "hpoulglais11@foxnews.com", "9 558 764 471", "Lo1nC8", "994 553 541", 2, 1, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(40, 2020040, "Bernardo Zed", "Aubri Markl", "2020040@universdiad.edu.com", "zmarklhf@artisteer.com", "3 238 571 264", "sSKwa6", "981 588 891", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(41, 2020041, "Essa Kandy", "Ault Yelland", "2020041@universdiad.edu.com", "kyelland3t@yahoo.co.jp", "9 209 798 112", "QD7EiW", "966 642 317", 2, 4, 18, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(42, 2020042, "Fairlie Granville", "Austin Zanetti", "2020042@universdiad.edu.com", "gzanetti3q@buzzfeed.com", "9 397 905 290", "pUrozX", "302 581 848", 1, 3, 19, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(43, 2020043, "Peterus Ber", "Avramovsky Goodhand", "2020043@universdiad.edu.com", "bgoodhandhc@symantec.com", "5 152 670 489", "79BczE", "757 194 830", 1, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(44, 2020044, "Alessandra Martynne", "Axcel D'Oyley", "2020044@universdiad.edu.com", "mdoyley74@cam.ac.uk", "9 959 730 619", "YWBOlx", "661 549 359", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(45, 2020045, "Emelita Elfrida", "Axworthy Matfield", "2020045@universdiad.edu.com", "ematfieldix@dmoz.org", "1 948 940 174", "A4TAFQ", "382 247 351", 2, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(46, 2020046, "Chevy Myles", "Aylward Sotworth", "2020046@universdiad.edu.com", "msotwortho8@foxnews.com", "4 846 170 251", "Kz478v", "712 495 268", 1, 1, 10, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(47, 2020047, "Ginger Vincenz", "Aymer Ofen", "2020047@universdiad.edu.com", "vofenfv@altervista.org", "9 405 893 226", "qdOGnY", "961 717 840", 1, 2, 20, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(48, 2020048, "Arabelle Fayre", "Azema Filochov", "2020048@universdiad.edu.com", "ffilochov45@imgur.com", "1 422 256 996", "ZtBR8z", "370 377 750", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(49, 2020049, "Si Clifford", "Backshaw Crippill", "2020049@universdiad.edu.com", "ccrippill8s@miibeian.gov.cn", "6 820 178 220", "h5hgZD", "679 160 719", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(50, 2020050, "Dotty Hali", "Balcers Lujan", "2020050@universdiad.edu.com", "hlujan7x@freewebs.com", "10 765 469 821", "r99HRW", "812 307 244", 2, 4, 21, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(51, 2020051, "Davie Byrle", "Bamforth Elegood", "2020051@universdiad.edu.com", "belegood91@marketwatch.com", "10 466 862 269", "PFeaHi", "934 327 807", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(52, 2020052, "Michelle Cora", "Barbera Antonoczyk", "2020052@universdiad.edu.com", "cantonoczykmj@google.pl", "10 105 872 506", "I3EGz0", "923 417 714", 2, 3, 22, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(53, 2020053, "Denni Janeta", "Bargh Fellon", "2020053@universdiad.edu.com", "jfellonng@themeforest.net", "7 655 675 557", "RONOS1", "515 543 723", 2, 3, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(54, 2020054, "Forrester Benedict", "Barnwille Coolican", "2020054@universdiad.edu.com", "bcoolican7j@google.de", "3 752 896 254", "N9bG5v", "694 496 890", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(55, 2020055, "Nina Crista", "Barrabeale Lemmen", "2020055@universdiad.edu.com", "clemmenrk@acquirethisname.com", "5 894 422 830", "D0LUGv", "981 984 478", 2, 5, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(56, 2020056, "Wilhelmina Noni", "Barsby Obert", "2020056@universdiad.edu.com", "nobertcf@mozilla.org", "4 484 602 838", "v7WT5g", "861 809 181", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(57, 2020057, "Gavin Hewie", "Barthrop Chastagnier", "2020057@universdiad.edu.com", "hchastagnierv@eventbrite.com", "5 423 462 236", "bacijn", "478 250 918", 1, 3, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(58, 2020058, "Cindra Vonnie", "Bartoszewski Mateu", "2020058@universdiad.edu.com", "vmateurq@mysql.com", "7 263 128 569", "BBKSBv", "423 677 154", 2, 3, 24, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(59, 2020059, "Stephen Cece", "Bascombe Ayer", "2020059@universdiad.edu.com", "cayer4u@theglobeandmail.com", "3 102 755 614", "MoOcoj", "241 502 984", 1, 3, 25, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(60, 2020060, "Beau Niel", "Basini-Gazzi Ogden", "2020060@universdiad.edu.com", "nogdenmh@slate.com", "9 971 825 967", "Tlbv20", "309 698 920", 1, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(61, 2020061, "Mei Ailina", "Basley Fice", "2020061@universdiad.edu.com", "aficeg0@google.com.br", "6 835 467 906", "c0taas", "624 885 316", 2, 5, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(62, 2020062, "Rivkah Leisha", "Bassilashvili Gittins", "2020062@universdiad.edu.com", "lgittinsoq@va.gov", "2 227 555 613", "g5qmnY", "480 529 375", 2, 3, 19, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(63, 2020063, "Connor Georgy", "Baton Driffe", "2020063@universdiad.edu.com", "gdriffee6@altervista.org", "10 309 315 109", "tkIM75", "458 295 850", 1, 4, 26, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(64, 2020064, "Norene Lorette", "Baudet Balog", "2020064@universdiad.edu.com", "lbalog9z@wix.com", "7 770 311 829", "vg0ETt", "897 575 863", 2, 2, 27, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(65, 2020065, "Yancey Linoel", "Beach Ilchenko", "2020065@universdiad.edu.com", "lilchenko6m@nifty.com", "1 701 640 143", "IQjK6M", "366 455 140", 1, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(66, 2020066, "Cornie Victor", "Beake Pumfrey", "2020066@universdiad.edu.com", "vpumfreybq@gnu.org", "7 886 166 784", "LLZiMT", "394 806 988", 1, 5, 15, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(67, 2020067, "Winny Cory", "Beaze Matteoli", "2020067@universdiad.edu.com", "cmatteolig8@unicef.org", "3 395 648 314", "HGBw5B", "207 102 494", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(68, 2020068, "Eleonore Gaylene", "Beckensall Hunnicot", "2020068@universdiad.edu.com", "ghunnicotme@twitpic.com", "1 597 101 900", "KLGhEB", "387 245 473", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(69, 2020069, "Binny Corabel", "Beckitt McSpirron", "2020069@universdiad.edu.com", "cmcspirronn@canalblog.com", "8 922 613 450", "9WvHQH", "773 896 351", 2, 3, 28, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(70, 2020070, "Aggie Melinde", "Beenham Lyddiard", "2020070@universdiad.edu.com", "mlyddiardqi@etsy.com", "6 681 818 337", "byibAn", "890 439 214", 2, 4, 29, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(71, 2020071, "Xerxes Rriocard", "Beglin Rydings", "2020071@universdiad.edu.com", "rrydingsbk@booking.com", "6 326 213 614", "MxTweF", "710 574 462", 1, 4, 30, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(72, 2020072, "Conny Ferdy", "Bellwood Ahrens", "2020072@universdiad.edu.com", "fahrensol@whitehouse.gov", "3 912 740 200", "EmYQIn", "645 617 554", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(73, 2020073, "Aldridge Paten", "Bennett Sinnott", "2020073@universdiad.edu.com", "psinnottjr@issuu.com", "5 547 503 479", "fUwzLS", "713 985 741", 1, 2, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(74, 2020074, "Sherman Allister", "Bennoe Hamlyn", "2020074@universdiad.edu.com", "ahamlyne4@google.com.au", "10 344 520 175", "I3sLOg", "891 563 223", 1, 4, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(75, 2020075, "Dory Brenda", "Bensley Corwood", "2020075@universdiad.edu.com", "bcorwood7i@state.tx.us", "2 682 885 631", "I089OF", "953 714 206", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(76, 2020076, "Lin Aveline", "Benting Glover", "2020076@universdiad.edu.com", "agloveri1@shinystat.com", "10 488 809 529", "fRZsEQ", "963 393 589", 2, 1, 32, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(77, 2020077, "Ianthe Danyette", "Berdale Normaville", "2020077@universdiad.edu.com", "dnormaville1n@comcast.net", "8 209 123 726", "UDTJrL", "286 643 546", 2, 3, 33, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(78, 2020078, "Adda Heloise", "Berth Marwood", "2020078@universdiad.edu.com", "hmarwood9e@wikimedia.org", "10 495 931 631", "3nGOP2", "105 510 121", 2, 1, 28, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(79, 2020079, "Leigh Ianthe", "Bessent Tansill", "2020079@universdiad.edu.com", "itansillfs@about.me", "4 242 892 158", "SxlwEb", "168 732 358", 2, 4, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(80, 2020080, "Rena Theodora", "Beswick Djokic", "2020080@universdiad.edu.com", "tdjokicoy@umich.edu", "5 917 262 980", "KQyaps", "472 278 709", 2, 5, 21, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(81, 2020081, "Bambi Odella", "Betancourt Skarin", "2020081@universdiad.edu.com", "oskarin78@vk.com", "3 126 581 113", "J7LVYG", "114 849 576", 2, 5, 34, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(82, 2020082, "Antoine Mortimer", "Bettam Sanpere", "2020082@universdiad.edu.com", "msanperet@fda.gov", "10 963 178 207", "HdNmQT", "822 293 166", 1, 4, 35, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(83, 2020083, "Fernanda Dyan", "Betun Kimber", "2020083@universdiad.edu.com", "dkimber1p@chicagotribune.com", "10 878 937 876", "ADDFq3", "824 680 382", 2, 2, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(84, 2020084, "Derrik Stanford", "Biggar Dmych", "2020084@universdiad.edu.com", "sdmych9m@wikimedia.org", "6 831 231 995", "u2YWjz", "806 385 510", 1, 4, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(85, 2020085, "Mohandis Jakob", "Biggs Pomfrett", "2020085@universdiad.edu.com", "jpomfrettmp@va.gov", "4 878 902 920", "PfQRih", "303 431 628", 1, 3, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(86, 2020086, "Clarette Chiquita", "Bigley Jukubczak", "2020086@universdiad.edu.com", "cjukubczakne@wp.com", "4 139 290 221", "lDGD2G", "365 763 344", 2, 4, 19, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(87, 2020087, "Abbey Mike", "Binley Jonuzi", "2020087@universdiad.edu.com", "mjonuzicd@vk.com", "8 672 236 364", "mRjCg4", "619 183 489", 1, 3, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(88, 2020088, "Rooney Thatcher", "Bisseker Wedgbrow", "2020088@universdiad.edu.com", "twedgbrowc1@csmonitor.com", "1 588 907 982", "qxuQgW", "675 746 980", 1, 3, 30, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(89, 2020089, "Nessa Niki", "Black Pardoe", "2020089@universdiad.edu.com", "npardoeqr@umich.edu", "7 895 338 550", "GppmTq", "891 542 231", 2, 5, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(90, 2020090, "Dahlia Ertha", "Blackborn Brower", "2020090@universdiad.edu.com", "ebrowerd8@state.tx.us", "5 896 223 450", "O4dSWo", "283 130 883", 2, 3, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(91, 2020091, "Regen Urbano", "Blackwood Ceresa", "2020091@universdiad.edu.com", "uceresa9y@tripadvisor.com", "2 638 893 558", "blR5IA", "500 923 505", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(92, 2020092, "Lazaro Gavan", "Blades Beevis", "2020092@universdiad.edu.com", "gbeevisoe@seesaa.net", "5 974 920 608", "CTqUjW", "944 566 910", 1, 3, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(93, 2020093, "Truda Amandie", "Blakeney Chaffer", "2020093@universdiad.edu.com", "achafferj5@dell.com", "3 271 897 136", "MapXKW", "864 661 869", 2, 2, 26, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(94, 2020094, "Christoffer Antons", "Blaszczynski Drury", "2020094@universdiad.edu.com", "adruryl1@ehow.com", "5 724 574 205", "8tcQm0", "730 268 742", 1, 2, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(95, 2020095, "Jordain Milly", "Blaylock Sayre", "2020095@universdiad.edu.com", "msayre2b@ocn.ne.jp", "10 688 167 661", "5welfC", "782 906 280", 2, 2, 36, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(96, 2020096, "Winthrop Donny", "Blazy Obray", "2020096@universdiad.edu.com", "dobraygo@ihg.com", "10 975 949 618", "Djyv9T", "494 891 774", 1, 5, 12, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(97, 2020097, "Mikael Buiron", "Bleue Arr", "2020097@universdiad.edu.com", "barria@npr.org", "7 973 373 601", "i5UN36", "917 997 474", 1, 3, 37, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(98, 2020098, "Darelle Brinn", "Blinkhorn Coventry", "2020098@universdiad.edu.com", "bcoventryld@webmd.com", "3 985 147 510", "yNtAep", "314 962 577", 2, 2, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(99, 2020099, "Wright Chrotoem", "Blissett Hamblen", "2020099@universdiad.edu.com", "chambleny@home.pl", "5 600 769 187", "oCPswL", "624 179 476", 1, 3, 38, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(100, 2020100, "Tandy Mona", "Blodgetts Wimpress", "2020100@universdiad.edu.com", "mwimpressir@purevolume.com", "10 432 931 454", "ge8o5s", "974 951 381", 2, 5, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(101, 2020101, "Sonnie Elden", "Blowfelde Leddie", "2020101@universdiad.edu.com", "eleddiens@creativecommons.org", "1 248 805 501", "f3NTl9", "501 262 427", 1, 3, 39, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(102, 2020102, "Rob Lucius", "Blowne Durning", "2020102@universdiad.edu.com", "ldurningl9@stanford.edu", "6 559 929 560", "h4wyDr", "925 118 148", 1, 4, 40, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(103, 2020103, "Massimo Ronnie", "Blyth McCrackan", "2020103@universdiad.edu.com", "rmccrackan4f@godaddy.com", "5 830 767 262", "f6xVGI", "772 238 142", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(104, 2020104, "Chanda Pammie", "Bode Gordon-Giles", "2020104@universdiad.edu.com", "pgordongilesaw@cbc.ca", "8 735 895 800", "QInfJ3", "785 814 767", 2, 3, 41, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(105, 2020105, "Ryann Kaye", "Boggas O'Neal", "2020105@universdiad.edu.com", "koneal32@vistaprint.com", "1 980 105 830", "oSkupt", "429 785 747", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(106, 2020106, "Ev Bartlet", "Boissieux Crighton", "2020106@universdiad.edu.com", "bcrightonjc@alexa.com", "7 880 226 767", "dbrHjS", "556 452 676", 1, 3, 41, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(107, 2020107, "Liuka Ora", "Bole Schollick", "2020107@universdiad.edu.com", "oschollicklz@google.es", "10 393 915 669", "h2Z90h", "311 893 368", 2, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(108, 2020108, "Perri Annabell", "Bollins Blitzer", "2020108@universdiad.edu.com", "ablitzer1v@mozilla.com", "9 906 128 158", "TngvH2", "528 172 140", 2, 2, 42, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(109, 2020109, "Margalit Georgetta", "Bonar Radbond", "2020109@universdiad.edu.com", "gradbondqw@ezinearticles.com", "3 163 193 166", "lxqcRV", "896 438 937", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(110, 2020110, "Korella Gusta", "Boness Depka", "2020110@universdiad.edu.com", "gdepkac8@ehow.com", "5 513 190 505", "JZ6tfa", "933 784 865", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(111, 2020111, "Barnard Ewell", "Bonett Newman", "2020111@universdiad.edu.com", "enewmanhb@disqus.com", "7 180 291 108", "p6ONyq", "410 744 776", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(112, 2020112, "Ivett Scarlett", "Bonicelli Lorkings", "2020112@universdiad.edu.com", "slorkings86@bloglovin.com", "2 872 240 322", "lJyYM2", "761 265 799", 2, 3, 43, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(113, 2020113, "Aline Valentina", "Booth-Jarvis Kennet", "2020113@universdiad.edu.com", "vkennet2e@symantec.com", "10 407 406 776", "b3ugsa", "224 390 476", 2, 4, 44, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(114, 2020114, "Porter Etan", "Bootton Denson", "2020114@universdiad.edu.com", "edenson17@livejournal.com", "1 827 483 210", "mX4icV", "371 472 496", 1, 3, 45, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(115, 2020115, "Putnam Jaymie", "Borgesio Farnan", "2020115@universdiad.edu.com", "jfarnangj@naver.com", "7 633 925 231", "aIurbw", "622 341 228", 1, 5, 46, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(116, 2020116, "Henri Carlie", "Borghese Karmel", "2020116@universdiad.edu.com", "ckarmel69@example.com", "2 376 548 826", "J3OQaS", "803 490 764", 1, 3, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(117, 2020117, "Alene Aubrie", "Bortolini Boase", "2020117@universdiad.edu.com", "aboase8t@goodreads.com", "8 107 989 925", "eIfJM7", "789 121 455", 2, 3, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(118, 2020118, "Zaccaria Myrvyn", "Boston Sember", "2020118@universdiad.edu.com", "msemberhh@tiny.cc", "8 228 679 186", "WjrWH9", "384 809 976", 1, 2, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(119, 2020119, "Nevil Nikola", "Bothram Brill", "2020119@universdiad.edu.com", "nbrillm0@microsoft.com", "1 400 550 135", "LNaEHF", "579 386 359", 1, 3, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(120, 2020120, "Suzanne Kynthia", "Bouette Quarlis", "2020120@universdiad.edu.com", "kquarlish9@bloglovin.com", "5 324 737 611", "wZETQh", "134 755 422", 2, 1, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(121, 2020121, "Valdemar Reamonn", "Bough Folker", "2020121@universdiad.edu.com", "rfolker18@reuters.com", "2 256 619 669", "tsbeaa", "307 745 292", 1, 3, 47, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(122, 2020122, "Emlyn Christye", "Boyes Warcup", "2020122@universdiad.edu.com", "cwarcuplq@mapquest.com", "6 472 129 938", "2WfBaI", "108 168 260", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(123, 2020123, "Phip Sly", "Bramall Lainge", "2020123@universdiad.edu.com", "slaingeek@nhs.uk", "1 889 423 788", "v4rtnG", "261 223 320", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(124, 2020124, "Gretchen Celinda", "Bramhill Haye", "2020124@universdiad.edu.com", "chayefp@buzzfeed.com", "8 710 352 822", "3acsh4", "565 127 366", 2, 1, 46, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(125, 2020125, "Alvin Ellerey", "Bramwich Dunton", "2020125@universdiad.edu.com", "eduntone9@bigcartel.com", "3 868 549 506", "tIhhAd", "314 489 183", 1, 4, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(126, 2020126, "Vilhelmina Ulrica", "Braund Ixer", "2020126@universdiad.edu.com", "uixer80@1688.com", "4 506 608 788", "x0XMLn", "337 122 764", 2, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(127, 2020127, "Petronella Gilligan", "Braunton Vizor", "2020127@universdiad.edu.com", "gvizor8u@sphinn.com", "4 476 528 304", "idUrI7", "964 809 876", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(128, 2020128, "Alidia Kristine", "Braunton Raye", "2020128@universdiad.edu.com", "krayeik@printfriendly.com", "9 465 542 882", "01sHJr", "524 599 732", 2, 3, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(129, 2020129, "Clarinda Iona", "Bredee Stuttard", "2020129@universdiad.edu.com", "istuttardfk@sina.com.cn", "5 974 708 334", "qUdG2R", "281 672 454", 2, 2, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(130, 2020130, "Norman Dewie", "Breen Djekovic", "2020130@universdiad.edu.com", "ddjekovic22@mashable.com", "1 136 570 347", "0PCuTR", "822 117 884", 1, 3, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(131, 2020131, "Marjorie Brynne", "Brendeke Lambdin", "2020131@universdiad.edu.com", "blambdin79@cocolog-nifty.com", "3 966 121 618", "JxGzFg", "130 988 725", 2, 4, 48, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(132, 2020132, "Cori Stirling", "Bridat Cuming", "2020132@universdiad.edu.com", "scumingp7@blogspot.com", "8 688 512 856", "JkgRui", "143 949 260", 1, 1, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(133, 2020133, "Katine Jacinda", "Brimham Porson", "2020133@universdiad.edu.com", "jporsonnk@patch.com", "5 887 507 383", "6JC5av", "144 556 216", 2, 1, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(134, 2020134, "Bobbye Stafani", "Brinicombe Staggs", "2020134@universdiad.edu.com", "sstaggsmg@bloglines.com", "1 192 644 472", "aOyjJl", "812 466 732", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(135, 2020135, "Kim Hermine", "Bristoe Danilevich", "2020135@universdiad.edu.com", "hdanileviche5@xrea.com", "9 333 183 462", "aTiJ8R", "460 734 457", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(136, 2020136, "Delmor Erek", "Bristoe Sparke", "2020136@universdiad.edu.com", "esparkek8@earthlink.net", "4 459 735 960", "1HO4Ma", "200 233 832", 1, 3, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(137, 2020137, "Sasha Tomaso", "Broadway Benedicto", "2020137@universdiad.edu.com", "tbenedictoae@phoca.cz", "8 318 881 241", "zGO587", "578 978 871", 1, 4, 35, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(138, 2020138, "Willi Finn", "Broadwood Accomb", "2020138@universdiad.edu.com", "faccomb4@google.co.uk", "4 753 287 469", "m9MyiY", "620 435 964", 1, 4, 49, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(139, 2020139, "Dylan Whittaker", "Brotherhed Jarred", "2020139@universdiad.edu.com", "wjarred1u@icq.com", "8 179 511 507", "Kw2egs", "291 389 752", 1, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(140, 2020140, "Dorie Thurston", "Brusin Maymand", "2020140@universdiad.edu.com", "tmaymand7k@samsung.com", "6 520 962 163", "iHoJRe", "471 471 449", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(141, 2020141, "Andie Derick", "Bruun Siviour", "2020141@universdiad.edu.com", "dsiviourn4@foxnews.com", "10 762 118 142", "b66xxK", "164 518 409", 1, 2, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(142, 2020142, "Netti Dacy", "Bryant Margetts", "2020142@universdiad.edu.com", "dmargettse@rambler.ru", "4 185 524 156", "3cLF9u", "982 692 467", 2, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(143, 2020143, "Shandra Drusie", "Budnik Tuttle", "2020143@universdiad.edu.com", "dtuttlejn@bloglines.com", "5 879 575 343", "rycfk6", "776 369 877", 2, 3, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(144, 2020144, "Seka Jennette", "Bull Wadman", "2020144@universdiad.edu.com", "jwadmanqx@domainmarket.com", "10 818 732 974", "TC7WX0", "638 169 308", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(145, 2020145, "Pace Hube", "Bunch Grimditch", "2020145@universdiad.edu.com", "hgrimditchin@behance.net", "3 665 865 729", "TibkFc", "748 249 389", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(146, 2020146, "Fancie Sena", "Burbidge Davall", "2020146@universdiad.edu.com", "sdavallc7@princeton.edu", "7 306 995 883", "MYt7RL", "394 660 939", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(147, 2020147, "Jory Carce", "Burbudge Eykelbosch", "2020147@universdiad.edu.com", "ceykelboschby@etsy.com", "1 592 315 731", "FPjHZz", "275 844 571", 1, 2, 51, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(148, 2020148, "Angelina Cori", "Burkert Grinston", "2020148@universdiad.edu.com", "cgrinston1x@biglobe.ne.jp", "5 347 563 457", "RT10CK", "872 317 955", 2, 5, 38, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(149, 2020149, "Bartel My", "Burkwood Haggis", "2020149@universdiad.edu.com", "mhaggisp5@apple.com", "3 544 757 642", "qf6I8n", "948 512 596", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(150, 2020150, "Derby Morrie", "Bygott Stogill", "2020150@universdiad.edu.com", "mstogilloc@ucoz.com", "9 889 934 964", "7N0y73", "187 350 947", 1, 3, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(151, 2020151, "Giuseppe Sanderson", "Byrde Anstiss", "2020151@universdiad.edu.com", "sanstisslo@linkedin.com", "10 726 202 877", "aGjlT9", "431 601 179", 1, 2, 52, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(152, 2020152, "Ingmar Pip", "Callaghan Carbett", "2020152@universdiad.edu.com", "pcarbettri@privacy.gov.au", "4 573 828 247", "qGeNSF", "667 250 877", 1, 5, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(153, 2020153, "Regina Selena", "Callington Baughan", "2020153@universdiad.edu.com", "sbaughanbr@kickstarter.com", "3 680 799 345", "MP19qg", "298 895 644", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(154, 2020154, "Allis Wendy", "Campaigne Goodchild", "2020154@universdiad.edu.com", "wgoodchildqo@nydailynews.com", "3 699 297 667", "rJG4TX", "200 367 350", 2, 3, 16, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(155, 2020155, "Shepherd Markos", "Cancott Poundsford", "2020155@universdiad.edu.com", "mpoundsfordc9@wikispaces.com", "1 137 502 302", "KEuxrs", "522 877 728", 1, 2, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(156, 2020156, "Enrique Merle", "Cant Rudinger", "2020156@universdiad.edu.com", "mrudingerfg@reuters.com", "6 304 321 942", "hZYTbG", "485 860 729", 1, 4, 35, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(157, 2020157, "Melany Mandie", "Cantillon Carbery", "2020157@universdiad.edu.com", "mcarberyje@phoca.cz", "1 726 574 191", "W8oHcx", "479 509 761", 2, 4, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(158, 2020158, "Burke Linoel", "Card Wayman", "2020158@universdiad.edu.com", "lwaymanbj@printfriendly.com", "1 223 305 663", "72WQ2T", "952 849 379", 1, 3, 53, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(159, 2020159, "Denyse Chiarra", "Careless Trembath", "2020159@universdiad.edu.com", "ctrembathid@tuttocitta.it", "8 168 960 684", "bm5ABJ", "393 159 369", 2, 4, 29, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(160, 2020160, "Lia Tabbi", "Carnoghan Cadge", "2020160@universdiad.edu.com", "tcadgel4@google.pl", "5 193 609 437", "ACZnVV", "920 535 881", 2, 1, 46, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(161, 2020161, "Prudi Fernande", "Carragher Greenhouse", "2020161@universdiad.edu.com", "fgreenhousegb@comsenz.com", "8 928 164 688", "x7YhWO", "387 532 219", 2, 5, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(162, 2020162, "Travus Iain", "Carslaw Saffer", "2020162@universdiad.edu.com", "isafferhu@ezinearticles.com", "5 313 406 412", "Az1uDg", "672 109 981", 1, 4, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(163, 2020163, "Johnny Meredeth", "Castella Beekmann", "2020163@universdiad.edu.com", "mbeekmannjj@mail.ru", "5 288 356 869", "KwoTYg", "660 377 663", 1, 1, 41, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(164, 2020164, "Louis Stephanus", "Ceccoli Pountney", "2020164@universdiad.edu.com", "spountneyff@gravatar.com", "1 450 359 451", "0YbXW8", "468 477 890", 1, 2, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(165, 2020165, "Bernelle Cathrine", "Ceschini Bocking", "2020165@universdiad.edu.com", "cbocking36@blogspot.com", "1 568 903 309", "w3N1Hb", "410 362 614", 2, 5, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(166, 2020166, "Arlan Riobard", "Chaloner Blay", "2020166@universdiad.edu.com", "rblayg4@trellian.com", "1 818 548 533", "F4N5bc", "904 610 283", 1, 1, 54, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(167, 2020167, "Harli Ronna", "Charlot MacKimm", "2020167@universdiad.edu.com", "rmackimmdy@constantcontact.com", "2 564 733 936", "tXql5U", "335 426 463", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(168, 2020168, "Georgi Horatius", "Chesnay O'Hanlon", "2020168@universdiad.edu.com", "hohanlon8h@foxnews.com", "3 310 877 392", "4gtjhW", "177 666 987", 1, 3, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(169, 2020169, "Vernice Colleen", "Cheyenne Routham", "2020169@universdiad.edu.com", "croutham9u@ucoz.ru", "6 510 163 212", "ebXwyo", "600 909 737", 2, 4, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(170, 2020170, "Alvan Gaven", "Chidler Dunley", "2020170@universdiad.edu.com", "gdunleyko@google.pl", "7 169 105 874", "MqESvO", "663 319 202", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(171, 2020171, "Susie Jocelyne", "Chidzoy Newband", "2020171@universdiad.edu.com", "jnewband2y@privacy.gov.au", "3 981 651 700", "XYa2R7", "273 796 646", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(172, 2020172, "Winonah Agretha", "Cirlos Bark", "2020172@universdiad.edu.com", "abarkmt@phoca.cz", "4 490 299 793", "Lwh9tF", "772 507 777", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(173, 2020173, "Cordie Irv", "Clacson Prattington", "2020173@universdiad.edu.com", "iprattington5c@japanpost.jp", "10 253 827 461", "k52bcv", "191 360 435", 1, 3, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(174, 2020174, "Cly Merv", "Clemits Hansberry", "2020174@universdiad.edu.com", "mhansberry33@slideshare.net", "4 388 289 793", "PTllAa", "457 903 625", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(175, 2020175, "Guinevere Celestine", "Clouter Doghartie", "2020175@universdiad.edu.com", "cdoghartie93@indiegogo.com", "4 978 385 721", "zCXtgN", "795 394 913", 2, 2, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(176, 2020176, "Fairlie Shaine", "Cockshot Shimmings", "2020176@universdiad.edu.com", "sshimmingsfc@bizjournals.com", "6 219 474 143", "dhSIIi", "517 123 905", 1, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(177, 2020177, "Alejandrina Celina", "Coggin Torricella", "2020177@universdiad.edu.com", "ctorricellan6@google.cn", "2 476 624 851", "979VAP", "974 811 770", 2, 5, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(178, 2020178, "Delphinia Midge", "Colbrun Baynon", "2020178@universdiad.edu.com", "mbaynonn0@google.com.br", "1 932 562 251", "8EnRVv", "549 571 460", 2, 4, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(179, 2020179, "Carolann Kaylil", "Colgan Flawn", "2020179@universdiad.edu.com", "kflawn2a@china.com.cn", "4 940 457 327", "vXeSM4", "479 385 683", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(180, 2020180, "Joelie Gabey", "Collecott Popland", "2020180@universdiad.edu.com", "gpoplandbi@photobucket.com", "7 179 449 383", "ZTKg1F", "616 848 155", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(181, 2020181, "Wendall Park", "Colleran Walisiak", "2020181@universdiad.edu.com", "pwalisiak99@google.pl", "6 327 994 157", "4NLdHp", "583 364 753", 1, 1, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(182, 2020182, "Marylynne Portia", "Colwell De Maria", "2020182@universdiad.edu.com", "pdemariaq0@theguardian.com", "9 516 869 276", "8qTAZl", "658 440 819", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(183, 2020183, "Theo Rubi", "Comberbach Torel", "2020183@universdiad.edu.com", "rtorel40@github.com", "9 499 273 426", "RqUnpz", "370 514 436", 2, 3, 46, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(184, 2020184, "Abbe Titus", "Comberbeach Qualtro", "2020184@universdiad.edu.com", "tqualtro8l@360.cn", "5 574 214 212", "cYXcKY", "491 578 610", 1, 4, 52, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(185, 2020185, "Darcie Florence", "Commin Myring", "2020185@universdiad.edu.com", "fmyringca@china.com.cn", "7 291 871 661", "6U4o1e", "164 467 381", 2, 1, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(186, 2020186, "Valera Latrena", "Conant O Mullen", "2020186@universdiad.edu.com", "lomullengh@godaddy.com", "4 695 970 646", "f4qm4w", "727 851 718", 2, 1, 30, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(187, 2020187, "Carry Pavla", "Condon Archdeacon", "2020187@universdiad.edu.com", "parchdeaconb7@ucoz.ru", "5 143 657 246", "phkWK0", "868 327 151", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(188, 2020188, "Mae Carmella", "Connors McKew", "2020188@universdiad.edu.com", "cmckewh4@usa.gov", "10 986 205 772", "KGW6AY", "736 821 709", 2, 2, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(189, 2020189, "Jourdan Chelsae", "Coopland Eldershaw", "2020189@universdiad.edu.com", "celdershawhy@ask.com", "2 285 299 434", "oyQWU5", "252 617 498", 2, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(190, 2020190, "Jobye Elladine", "Cordet Siene", "2020190@universdiad.edu.com", "esienek1@tamu.edu", "8 521 216 120", "V0DZgn", "664 362 829", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(191, 2020191, "Monty Addison", "Corkell de Mullett", "2020191@universdiad.edu.com", "ademulletta5@pen.io", "6 457 355 364", "Y9c9we", "325 334 539", 1, 4, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(192, 2020192, "Erin Hillie", "Corkhill Scarf", "2020192@universdiad.edu.com", "hscarfrl@prnewswire.com", "5 878 379 932", "yrH6si", "816 864 694", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(193, 2020193, "Anjela Cindie", "Cornau O'Hallihane", "2020193@universdiad.edu.com", "cohallihaneha@telegraph.co.uk", "9 193 345 945", "AngxH4", "465 302 120", 2, 5, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(194, 2020194, "Rhys Kerwinn", "Cornelisse Casetta", "2020194@universdiad.edu.com", "kcasettaaa@desdev.cn", "10 404 445 483", "8uz04o", "167 148 839", 1, 5, 55, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(195, 2020195, "Alic Giacopo", "Corrigan Adamolli", "2020195@universdiad.edu.com", "gadamolli88@smh.com.au", "7 988 443 300", "jR1NRG", "698 438 498", 1, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(196, 2020196, "Billy Stillmann", "Cortin Carling", "2020196@universdiad.edu.com", "scarlinghe@java.com", "8 460 798 347", "sQ3Clg", "948 654 387", 1, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(197, 2020197, "Charin Donni", "Cosgry Blaase", "2020197@universdiad.edu.com", "dblaasej2@edublogs.org", "9 683 903 748", "pHKdao", "472 791 489", 2, 3, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(198, 2020198, "Dannie Jasen", "Costa Dudenie", "2020198@universdiad.edu.com", "jdudenieqn@xinhuanet.com", "8 689 521 538", "05pyNv", "549 956 677", 1, 5, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(199, 2020199, "Anne-marie Flss", "Costellow Murley", "2020199@universdiad.edu.com", "fmurleydt@washington.edu", "1 759 173 593", "GYx7Eb", "232 149 869", 2, 1, 56, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(200, 2020200, "Lennie Hale", "Cotgrove Mattis", "2020200@universdiad.edu.com", "hmattis3u@biglobe.ne.jp", "10 351 832 311", "1EYc4A", "680 737 904", 1, 3, 15, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(201, 2020201, "Jone Ari", "Count Krebs", "2020201@universdiad.edu.com", "akrebs7n@tamu.edu", "6 350 698 631", "9QFlf2", "958 816 265", 1, 4, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(202, 2020202, "Frederico Gal", "Couthard Leadbeater", "2020202@universdiad.edu.com", "gleadbeaterkn@europa.eu", "7 807 242 108", "W9vAUT", "589 271 899", 1, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(203, 2020203, "Eddi Evonne", "covino Metrick", "2020203@universdiad.edu.com", "emetrick7f@harvard.edu", "9 915 652 394", "KqU6Oe", "625 987 850", 2, 5, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(204, 2020204, "Son Batholomew", "Cowap Ricardou", "2020204@universdiad.edu.com", "bricardouox@digg.com", "9 882 874 619", "IrcrP2", "577 142 824", 1, 1, 57, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(205, 2020205, "Agata Ali", "Cowins Grime", "2020205@universdiad.edu.com", "agrimegm@amazonaws.com", "2 811 640 507", "K1qYvH", "270 189 986", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(206, 2020206, "Isidore Gregoor", "Crady Shovelbottom", "2020206@universdiad.edu.com", "gshovelbottom4a@fda.gov", "1 184 234 990", "aVyGy4", "394 833 635", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(207, 2020207, "Correna Xenia", "Craigmyle Van der Kruys", "2020207@universdiad.edu.com", "xvanderkruys3x@cnet.com", "8 370 520 603", "wU8QrX", "247 880 900", 2, 3, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(208, 2020208, "Mischa Padget", "Craxford Trudgeon", "2020208@universdiad.edu.com", "ptrudgeonaj@51.la", "1 152 925 344", "Cqh8mI", "816 834 268", 1, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(209, 2020209, "Rubina Sisile", "Crocumbe Keer", "2020209@universdiad.edu.com", "skeermd@youtu.be", "4 210 995 379", "WjzuZh", "451 472 155", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(210, 2020210, "Johnath Isabel", "Cronin Bricksey", "2020210@universdiad.edu.com", "ibrickseyka@exblog.jp", "1 645 462 772", "uKnvcT", "862 389 988", 2, 2, 21, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(211, 2020211, "Bernadette Tedra", "Crowley Birtley", "2020211@universdiad.edu.com", "tbirtleyhn@mapquest.com", "3 790 750 588", "bDBj77", "378 600 703", 2, 1, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(212, 2020212, "Elvera Cynthea", "Crowson Corbin", "2020212@universdiad.edu.com", "ccorbin1s@godaddy.com", "5 398 918 589", "Ch0DCn", "965 160 350", 2, 2, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(213, 2020213, "Melisent Frank", "Cruden Riceards", "2020213@universdiad.edu.com", "friceardsmi@china.com.cn", "8 238 331 325", "gyToQd", "894 645 975", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(214, 2020214, "Rhetta Crystal", "Cruxton Dmisek", "2020214@universdiad.edu.com", "cdmisekj1@bbb.org", "1 903 772 863", "1XO8wY", "904 366 148", 2, 3, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(215, 2020215, "Vincent Siffre", "Cryer Gergolet", "2020215@universdiad.edu.com", "sgergoletgw@liveinternet.ru", "7 766 718 826", "GIowAT", "781 735 194", 1, 4, 59, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(216, 2020216, "Joell Cathie", "Cubuzzi McPeck", "2020216@universdiad.edu.com", "cmcpeckgt@cisco.com", "1 684 586 134", "HzAsAm", "270 231 176", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(217, 2020217, "Binni Nesta", "Cuckson Blankman", "2020217@universdiad.edu.com", "nblankmanac@addthis.com", "4 675 199 373", "cTcEL8", "451 537 439", 2, 2, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(218, 2020218, "Charlton Byrle", "Cuer Goare", "2020218@universdiad.edu.com", "bgoareni@shinystat.com", "1 174 859 188", "pmy7xJ", "492 281 444", 1, 4, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(219, 2020219, "Dina Adora", "Cuschieri Wogden", "2020219@universdiad.edu.com", "awogdenio@plala.or.jp", "1 496 784 522", "ZIqQZE", "210 891 343", 2, 1, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(220, 2020220, "Nicolas Kennett", "Cutchie Lassells", "2020220@universdiad.edu.com", "klassellseh@yelp.com", "6 187 509 785", "r26yy8", "582 822 262", 1, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(221, 2020221, "Melisse Beatrice", "Czajkowska Fagence", "2020221@universdiad.edu.com", "bfagencef1@omniture.com", "5 178 564 616", "cHyFQl", "494 400 598", 2, 1, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(222, 2020222, "Keary Isidro", "D' Angelo Beiderbeck", "2020222@universdiad.edu.com", "ibeiderbeckal@unblog.fr", "3 723 826 744", "G5pShv", "353 604 324", 1, 3, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(223, 2020223, "Elle Jolee", "Dabernott Arrington", "2020223@universdiad.edu.com", "jarringtonfr@blogspot.com", "3 236 604 965", "mvAxy4", "999 517 721", 2, 1, 11, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(224, 2020224, "Phebe Rena", "Dablin Berkeley", "2020224@universdiad.edu.com", "rberkeleymf@reddit.com", "10 637 685 784", "q77Hlc", "187 896 424", 2, 2, 60, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(225, 2020225, "Angelico Yurik", "Dalziel Bentame", "2020225@universdiad.edu.com", "ybentameg6@google.com", "10 283 468 960", "czyk19", "360 674 263", 1, 3, 21, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(226, 2020226, "Tristam Alaric", "Damiral Clausson", "2020226@universdiad.edu.com", "aclaussongl@icio.us", "3 806 104 560", "7Dyzmg", "715 537 667", 1, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(227, 2020227, "Betteanne Celestia", "Danford Danis", "2020227@universdiad.edu.com", "cdanisgv@imgur.com", "10 470 824 179", "0ZTwCt", "359 653 203", 2, 1, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(228, 2020228, "Rosemonde Missie", "Danher Schubert", "2020228@universdiad.edu.com", "mschubertct@vkontakte.ru", "10 850 220 306", "uctxgu", "203 511 771", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(229, 2020229, "Lukas Tedie", "Darkin Pyle", "2020229@universdiad.edu.com", "tpyle76@japanpost.jp", "4 201 567 329", "gyEKcL", "366 956 879", 1, 3, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(230, 2020230, "Colby Rudy", "Darville Allner", "2020230@universdiad.edu.com", "rallner7s@google.it", "4 490 274 317", "tcuuXU", "312 725 126", 1, 5, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(231, 2020231, "Mack Stavro", "Daubeny Stille", "2020231@universdiad.edu.com", "sstille2l@springer.com", "9 917 995 695", "RnWHBu", "756 311 974", 1, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(232, 2020232, "Kamillah Georgetta", "Daughtry Gildersleaves", "2020232@universdiad.edu.com", "ggildersleaves8@oakley.com", "5 259 465 569", "zHFevY", "889 260 361", 2, 3, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(233, 2020233, "Ruprecht Cosmo", "De Andisie Pariss", "2020233@universdiad.edu.com", "cpariss7z@alibaba.com", "7 900 388 816", "vlpDn7", "133 843 338", 1, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(234, 2020234, "Christie Alessandra", "De Andreis Bolstridge", "2020234@universdiad.edu.com", "abolstridgemn@irs.gov", "2 709 635 287", "Nb1rnQ", "881 398 998", 2, 3, 61, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(235, 2020235, "Selma Brina", "De Cristofalo Troctor", "2020235@universdiad.edu.com", "btroctorde@gravatar.com", "7 289 269 647", "21tJMO", "878 401 242", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(236, 2020236, "Missy Veriee", "De Fraine Dugan", "2020236@universdiad.edu.com", "vduganiq@umn.edu", "2 762 478 302", "CdZZ4U", "264 970 468", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(237, 2020237, "Benjamen Brand", "De Maria Lyburn", "2020237@universdiad.edu.com", "blyburnjt@flavors.me", "2 386 955 370", "pVvZL6", "349 676 351", 1, 2, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(238, 2020238, "Lanita Kalila", "De Metz Swannie", "2020238@universdiad.edu.com", "kswannieap@jiathis.com", "5 960 314 331", "sZl4x1", "838 118 191", 2, 5, 15, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(239, 2020239, "Patsy Keri", "Dearlove Rauprich", "2020239@universdiad.edu.com", "krauprichoo@yahoo.co.jp", "2 565 976 770", "WWrAyJ", "173 813 388", 2, 5, 62, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(240, 2020240, "Windy Roshelle", "Deaville Meanwell", "2020240@universdiad.edu.com", "rmeanwellb1@123-reg.co.uk", "6 709 516 693", "xoaF1l", "382 511 609", 2, 1, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(241, 2020241, "Gilbert Alonso", "Dederich Vesco", "2020241@universdiad.edu.com", "avesco3l@godaddy.com", "4 200 587 294", "jRgz0g", "426 170 799", 1, 3, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(242, 2020242, "Viola Suzie", "Deely Fildery", "2020242@universdiad.edu.com", "sfilderyjd@nbcnews.com", "9 633 418 334", "MnzCbt", "367 364 491", 2, 4, 63, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(243, 2020243, "Guillaume Bucky", "Deerness Gerren", "2020243@universdiad.edu.com", "bgerrenr0@skype.com", "5 959 634 945", "4rEnE6", "261 551 326", 1, 3, 64, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(244, 2020244, "Ula Bell", "Deerr McCurtin", "2020244@universdiad.edu.com", "bmccurtinqg@theatlantic.com", "5 991 470 762", "E0iCKz", "766 382 186", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(245, 2020245, "Gibby Gustavus", "Degoe Cochrane", "2020245@universdiad.edu.com", "gcochranea9@thetimes.co.uk", "2 776 671 501", "CIhKLz", "462 509 640", 1, 5, 14, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(246, 2020246, "Iver Kleon", "Dehmel Stephens", "2020246@universdiad.edu.com", "kstephensjk@elpais.com", "7 295 202 677", "7wFuos", "187 745 966", 1, 2, 47, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(247, 2020247, "Davey Colet", "deKnevet Bernt", "2020247@universdiad.edu.com", "cbernto@shop-pro.jp", "6 425 185 745", "aqJmCs", "584 458 323", 1, 3, 65, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(248, 2020248, "Costanza Shaine", "Delyth Melson", "2020248@universdiad.edu.com", "smelson50@webs.com", "3 198 773 573", "hrCMow", "702 240 963", 2, 3, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(249, 2020249, "Ruy Keane", "Denty Petrushka", "2020249@universdiad.edu.com", "kpetrushkaiw@google.com.au", "9 951 281 965", "n5Ke7N", "115 241 499", 1, 4, 66, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(250, 2020250, "Mickie Elmer", "Dessaur Rapaport", "2020250@universdiad.edu.com", "erapaport8r@nba.com", "7 310 193 805", "X3CQTK", "665 807 731", 1, 2, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(251, 2020251, "Roseline Sunny", "Destouche Sunman", "2020251@universdiad.edu.com", "ssunmanq@unblog.fr", "6 176 104 827", "iNVngr", "870 849 455", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(252, 2020252, "Roxine Angelika", "Dewhirst Handy", "2020252@universdiad.edu.com", "ahandyi2@arizona.edu", "6 905 924 609", "Wj5NwP", "528 153 878", 2, 1, 39, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(253, 2020253, "Kessiah Beulah", "Di Bartolommeo Sherwen", "2020253@universdiad.edu.com", "bsherwen4l@google.ru", "9 297 191 843", "8batgQ", "280 263 115", 2, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(254, 2020254, "Lissy Roxie", "Di Franceshci Jasper", "2020254@universdiad.edu.com", "rjasperef@sbwire.com", "4 847 648 961", "5jhpju", "506 773 962", 2, 2, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(255, 2020255, "Hill Carmine", "Dibley Mapletoft", "2020255@universdiad.edu.com", "cmapletoftfl@stanford.edu", "9 120 798 222", "M7VP2i", "375 406 935", 1, 4, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(256, 2020256, "Maribel Muffin", "Dickens MacAlaster", "2020256@universdiad.edu.com", "mmacalasterq7@theguardian.com", "2 779 810 784", "FC8XNZ", "644 269 650", 2, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(257, 2020257, "Leshia Keeley", "Didsbury Olle", "2020257@universdiad.edu.com", "kolledn@furl.net", "1 845 257 461", "iDM4g5", "119 488 849", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(258, 2020258, "Wit Yurik", "Diemer Higbin", "2020258@universdiad.edu.com", "yhigbin60@cam.ac.uk", "3 844 588 409", "MqDmJK", "664 848 163", 1, 4, 67, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(259, 2020259, "Hastings Wald", "Dionisetto Batters", "2020259@universdiad.edu.com", "wbattersa1@prweb.com", "5 132 234 459", "zYcDvU", "565 274 764", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(260, 2020260, "Becca Marja", "Domenico Alu", "2020260@universdiad.edu.com", "malu2t@csmonitor.com", "6 343 838 768", "dPAAg6", "576 308 978", 2, 5, 49, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(261, 2020261, "Donny Atalanta", "Dominichetti Somerbell", "2020261@universdiad.edu.com", "asomerbelln5@weebly.com", "3 463 907 502", "jff6s3", "673 155 591", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(262, 2020262, "Farleigh Tully", "Donwell Gilhool", "2020262@universdiad.edu.com", "tgilhool1z@weibo.com", "2 853 804 994", "XMMZSk", "135 552 817", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(263, 2020263, "Weidar Sigismundo", "Dooley Ferruzzi", "2020263@universdiad.edu.com", "sferruzzi4t@pagesperso-orange.fr", "3 698 857 336", "2jcvdv", "383 975 783", 1, 3, 16, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(264, 2020264, "Torin Cobb", "Dowgill Hendrix", "2020264@universdiad.edu.com", "chendrixm9@wiley.com", "7 461 442 467", "mLUmJD", "505 832 192", 1, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(265, 2020265, "Bill Morganne", "Dripp Yitzowitz", "2020265@universdiad.edu.com", "myitzowitz8p@technorati.com", "3 470 971 817", "0fT8d9", "158 541 208", 2, 1, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(266, 2020266, "Chadd Wadsworth", "Drogan Matthiae", "2020266@universdiad.edu.com", "wmatthiae5g@purevolume.com", "5 184 800 560", "xqafNW", "415 684 388", 1, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(267, 2020267, "Alfie Arlana", "Dudding Gasperi", "2020267@universdiad.edu.com", "agasperipz@wikispaces.com", "3 518 165 899", "PnXUSb", "403 807 510", 2, 4, 42, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(268, 2020268, "Karl Patton", "Duester Van Halen", "2020268@universdiad.edu.com", "pvanhalenbe@businessinsider.com", "6 830 172 424", "TDjUPC", "951 964 418", 1, 3, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(269, 2020269, "Beaufort Patrizio", "Dufall Gerrens", "2020269@universdiad.edu.com", "pgerrens73@nytimes.com", "6 533 263 965", "O9O8os", "802 805 733", 1, 3, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(270, 2020270, "Berty Ervin", "Duffin Cruft", "2020270@universdiad.edu.com", "ecrufti@yahoo.co.jp", "2 391 655 525", "O9yifA", "726 832 948", 1, 3, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(271, 2020271, "Andy Merilyn", "Duffrie Hadlow", "2020271@universdiad.edu.com", "mhadlow4o@bizjournals.com", "5 429 440 158", "3XdQYM", "192 295 144", 2, 1, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(272, 2020272, "Salome Joanna", "Duham Vasile", "2020272@universdiad.edu.com", "jvasilefy@google.ru", "5 254 925 236", "qU2nHy", "274 851 897", 2, 3, 11, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(273, 2020273, "Derrick Irwinn", "Dumbelton Grim", "2020273@universdiad.edu.com", "igrim2m@fema.gov", "6 763 491 305", "llJEvf", "742 908 193", 1, 5, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(274, 2020274, "Micheal Jasen", "Dumsday Paulat", "2020274@universdiad.edu.com", "jpaulat7q@sitemeter.com", "6 742 697 221", "jGpnsu", "342 953 993", 1, 3, 62, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(275, 2020275, "Cordey Donnamarie", "Dunbar Deely", "2020275@universdiad.edu.com", "ddeely5v@cbsnews.com", "2 207 226 307", "G20qzs", "734 484 527", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(276, 2020276, "Latia Nerty", "Dunnion Cordon", "2020276@universdiad.edu.com", "ncordonpe@furl.net", "3 186 426 736", "nmh32s", "776 882 582", 2, 5, 34, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(277, 2020277, "Garald Vergil", "Dunstone Tilly", "2020277@universdiad.edu.com", "vtillyq4@auda.org.au", "8 495 772 281", "XeQmBU", "881 590 700", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(278, 2020278, "Deanne Carolynn", "Durbyn McCarthy", "2020278@universdiad.edu.com", "cmccarthy14@who.int", "1 995 526 388", "xyHdkT", "593 853 910", 2, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(279, 2020279, "Sherwynd Gordy", "Durbyn Tant", "2020279@universdiad.edu.com", "gtantr3@scribd.com", "4 622 750 306", "wDNcNV", "836 825 446", 1, 1, 9, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(280, 2020280, "Levi Flinn", "Durran Seamon", "2020280@universdiad.edu.com", "fseamon4n@geocities.jp", "1 545 464 766", "AqyLdg", "948 297 350", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(281, 2020281, "Silvie Muriel", "Dussy Heggs", "2020281@universdiad.edu.com", "mheggsno@twitter.com", "1 287 738 763", "GY3U7H", "807 426 527", 2, 3, 68, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(282, 2020282, "Titus Yvor", "Dyers Rubinfeld", "2020282@universdiad.edu.com", "yrubinfeld1r@desdev.cn", "6 555 383 366", "bsTaNM", "511 604 877", 1, 2, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(283, 2020283, "Guthrie Normand", "Ebbers Westrey", "2020283@universdiad.edu.com", "nwestreyco@phpbb.com", "6 922 719 346", "AP5cVn", "622 798 596", 1, 2, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(284, 2020284, "Dermot Ebeneser", "Ecclestone Fairbourne", "2020284@universdiad.edu.com", "efairbourneg3@cocolog-nifty.com", "3 842 872 993", "bR163z", "385 672 957", 1, 4, 16, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(285, 2020285, "Carling Dav", "Edmund Kybbye", "2020285@universdiad.edu.com", "dkybbyelk@g.co", "6 978 469 282", "xZrOA0", "457 937 952", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(286, 2020286, "Ardene Mellie", "Edwicker Bugg", "2020286@universdiad.edu.com", "mbugg5i@youtube.com", "2 478 156 341", "OHEDQl", "702 118 436", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(287, 2020287, "Allx Elonore", "Eggers McMurraya", "2020287@universdiad.edu.com", "emcmurrayab2@google.es", "8 323 616 195", "aLJ9NV", "267 797 906", 2, 1, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(288, 2020288, "Lorenzo Ulysses", "Eglington Sprouls", "2020288@universdiad.edu.com", "usprouls3r@slate.com", "4 779 566 353", "s8J9cC", "552 371 604", 1, 5, 69, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(289, 2020289, "Obadias Wynn", "Eicke Astill", "2020289@universdiad.edu.com", "wastillbh@alibaba.com", "8 743 816 931", "DUGAEr", "144 257 488", 1, 1, 46, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(290, 2020290, "Patrice Bryanty", "Eixenberger Rabbage", "2020290@universdiad.edu.com", "brabbagepv@hud.gov", "1 188 369 223", "jHsDg5", "914 339 481", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(291, 2020291, "Swen Reid", "Elgy Kubica", "2020291@universdiad.edu.com", "rkubicarr@angelfire.com", "6 243 625 648", "Hq1Gce", "951 548 891", 1, 5, 28, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(292, 2020292, "Land Wye", "Ellington Sproat", "2020292@universdiad.edu.com", "wsproat5x@comcast.net", "3 601 266 575", "daFwrD", "914 836 607", 1, 1, 70, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(293, 2020293, "Ximenez Nevil", "Ellson Geerdts", "2020293@universdiad.edu.com", "ngeerdts9c@people.com.cn", "4 522 426 785", "7WXUAF", "747 903 326", 1, 3, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(294, 2020294, "Papageno Boonie", "Emblen Rothery", "2020294@universdiad.edu.com", "brothery7p@yelp.com", "7 551 897 666", "ijnEFd", "808 649 539", 1, 2, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(295, 2020295, "Dorie Antin", "Empson Nafzger", "2020295@universdiad.edu.com", "anafzgerdw@jimdo.com", "5 133 532 330", "fOSbGn", "586 476 749", 1, 1, 52, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(296, 2020296, "Jaclin Auroora", "Emptage Storton", "2020296@universdiad.edu.com", "astortonnc@hexun.com", "7 419 942 221", "StIwg3", "268 304 775", 2, 4, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(297, 2020297, "Dunc Giovanni", "Endicott Duff", "2020297@universdiad.edu.com", "gduffr5@answers.com", "7 177 969 763", "AXkyr8", "140 964 387", 1, 5, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(298, 2020298, "Onfroi Antoni", "Erie Lavell", "2020298@universdiad.edu.com", "alavelljf@topsy.com", "10 617 978 408", "fM3jiM", "313 358 426", 1, 5, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(299, 2020299, "Carlyle Merv", "Esmonde Barkhouse", "2020299@universdiad.edu.com", "mbarkhouseiv@ifeng.com", "10 277 978 300", "LQ5yoY", "268 439 288", 1, 5, 71, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(300, 2020300, "Lyell Maximilian", "Essery Lovitt", "2020300@universdiad.edu.com", "mlovitt20@e-recht24.de", "6 526 597 404", "TwO0Ab", "763 899 333", 1, 4, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(301, 2020301, "Clyve Neale", "Etchingham Beviss", "2020301@universdiad.edu.com", "nbevissrf@4shared.com", "1 176 714 696", "0O2QRo", "883 614 397", 1, 5, 72, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(302, 2020302, "Vanessa Margarita", "Etherson Curro", "2020302@universdiad.edu.com", "mcurro7g@auda.org.au", "4 619 600 707", "tbVdmp", "438 159 148", 2, 1, 72, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(303, 2020303, "Willamina Simonne", "Evennett Housecroft", "2020303@universdiad.edu.com", "shousecroftar@twitpic.com", "9 986 118 538", "wqwpC2", "580 319 505", 2, 4, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(304, 2020304, "Marcelo Aldous", "Eversfield Ilewicz", "2020304@universdiad.edu.com", "ailewicz3s@amazon.co.uk", "7 772 187 533", "afdSvO", "342 802 754", 1, 1, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(305, 2020305, "Enrica Mela", "Evitt Tabbernor", "2020305@universdiad.edu.com", "mtabbernorp9@flavors.me", "8 989 978 194", "MKZdLz", "227 752 849", 2, 5, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(306, 2020306, "Abrahan Rollie", "Faloon Krolak", "2020306@universdiad.edu.com", "rkrolaka0@gov.uk", "4 411 816 507", "WnTmrc", "524 138 494", 1, 2, 73, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(307, 2020307, "Alric Gard", "Fanshaw Vallery", "2020307@universdiad.edu.com", "gvallery7w@w3.org", "2 140 532 896", "53yaPt", "130 280 476", 1, 3, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(308, 2020308, "Warren Rustin", "Fasset Bethell", "2020308@universdiad.edu.com", "rbethelljo@purevolume.com", "8 717 434 220", "9kYGGs", "813 191 291", 1, 4, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(309, 2020309, "Alene Joey", "Faulds McCreedy", "2020309@universdiad.edu.com", "jmccreedy3c@auda.org.au", "10 482 596 369", "0dQq3r", "696 753 209", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(310, 2020310, "Nickolas Fabe", "Fayer Brookton", "2020310@universdiad.edu.com", "fbrookton6s@hud.gov", "9 342 673 237", "pvxImh", "539 272 618", 1, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(311, 2020311, "Findley Filmore", "Fenty Avrahamov", "2020311@universdiad.edu.com", "favrahamovkc@google.it", "2 639 702 405", "GBBH4I", "329 983 720", 1, 5, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(312, 2020312, "Caspar Claiborne", "Fermor Yon", "2020312@universdiad.edu.com", "cyonea@dion.ne.jp", "10 527 648 637", "J02yvY", "662 519 694", 1, 1, 74, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(313, 2020313, "Philippa Cosetta", "Ferrarini Preston", "2020313@universdiad.edu.com", "cpreston9r@ebay.com", "4 410 826 972", "ni387c", "690 575 956", 2, 4, 75, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(314, 2020314, "Martin Timofei", "Fettiplace Backler", "2020314@universdiad.edu.com", "tbackler7a@spiegel.de", "10 566 140 108", "7Ourhb", "977 516 979", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(315, 2020315, "Boot Olag", "Fiddler Rippingale", "2020315@universdiad.edu.com", "orippingalecn@youtu.be", "10 343 573 343", "zveplM", "491 543 147", 1, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(316, 2020316, "Fredric Leroi", "Fielder Littlefield", "2020316@universdiad.edu.com", "llittlefield13@microsoft.com", "3 104 830 911", "3RxIVw", "803 300 945", 1, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(317, 2020317, "Cello Evin", "Filippyev Tooby", "2020317@universdiad.edu.com", "etoobyb5@whitehouse.gov", "7 968 596 613", "aV3FO3", "593 346 497", 1, 5, 76, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(318, 2020318, "Rubina Joellen", "Finlay Rizzolo", "2020318@universdiad.edu.com", "jrizzolo7u@noaa.gov", "1 919 922 852", "KbDQAy", "520 987 886", 2, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(319, 2020319, "Jackquelin Moira", "Fisk Skiplorne", "2020319@universdiad.edu.com", "mskiplorne4z@hatena.ne.jp", "2 219 629 811", "5h1uXe", "622 215 360", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(320, 2020320, "Dominick Tucky", "FitzGeorge Weiner", "2020320@universdiad.edu.com", "tweinern8@cyberchimps.com", "5 971 439 505", "0OgGcs", "954 969 586", 1, 5, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(321, 2020321, "Levi Fidelio", "FitzGibbon Le Prevost", "2020321@universdiad.edu.com", "fleprevost4m@over-blog.com", "6 839 296 113", "iijzva", "448 256 536", 1, 3, 77, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(322, 2020322, "Danila Marline", "Fladgate Grinval", "2020322@universdiad.edu.com", "mgrinvalmm@oakley.com", "5 987 222 968", "BRKhun", "196 407 293", 2, 5, 44, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(323, 2020323, "Matti Malissa", "Flay Bulteel", "2020323@universdiad.edu.com", "mbulteelf2@twitter.com", "8 894 531 349", "WTvuE1", "568 737 104", 2, 4, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(324, 2020324, "Salvidor Gerek", "Flintoft Jenks", "2020324@universdiad.edu.com", "gjenksle@newyorker.com", "10 525 771 144", "oKxinc", "396 298 479", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(325, 2020325, "Liliane Annabela", "Flintuff Heinlein", "2020325@universdiad.edu.com", "aheinlein6c@discovery.com", "9 352 804 831", "kjMeOM", "450 524 222", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(326, 2020326, "Isaak Dolf", "Foat Bowld", "2020326@universdiad.edu.com", "dbowldbf@skype.com", "3 328 162 343", "TUqUP1", "826 814 523", 1, 2, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(327, 2020327, "Rhett Chick", "Follett Verson", "2020327@universdiad.edu.com", "cversongy@fda.gov", "10 572 586 607", "mWYBr6", "678 172 393", 1, 2, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(328, 2020328, "Darryl Cirilo", "Fooks Davley", "2020328@universdiad.edu.com", "cdavleybg@topsy.com", "7 756 829 903", "SyP12U", "661 665 987", 1, 2, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(329, 2020329, "Jacqueline Malva", "Footer Siddens", "2020329@universdiad.edu.com", "msiddens41@dell.com", "9 524 170 109", "mUtgZF", "950 889 700", 2, 4, 78, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(330, 2020330, "Rafael Clarance", "Forker Dumberrill", "2020330@universdiad.edu.com", "cdumberrilld1@ifeng.com", "9 477 669 110", "R7KWMK", "166 294 964", 1, 5, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(331, 2020331, "Sloan Xymenes", "Fowell Hinkensen", "2020331@universdiad.edu.com", "xhinkensend2@mapy.cz", "10 570 652 858", "m0bMEr", "316 747 243", 1, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(332, 2020332, "Mel Sheeree", "Franke Tryhorn", "2020332@universdiad.edu.com", "stryhorn7d@hexun.com", "5 436 855 990", "uoLsgi", "645 875 605", 2, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(333, 2020333, "Abelard Dewitt", "Freckingham Sheach", "2020333@universdiad.edu.com", "dsheach3n@hao123.com", "1 219 453 883", "DJOXJh", "972 430 266", 1, 3, 28, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(334, 2020334, "Kitty Veronika", "Freezor Fulks", "2020334@universdiad.edu.com", "vfulks3m@youtu.be", "9 293 139 835", "W20FsA", "507 848 689", 2, 3, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(335, 2020335, "Elbertina Audre", "Friday Brimley", "2020335@universdiad.edu.com", "abrimleyeg@reddit.com", "1 545 694 887", "1dc7Qr", "659 757 856", 2, 5, 11, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(336, 2020336, "Mendie Baron", "Frounks Readwing", "2020336@universdiad.edu.com", "breadwing2@studiopress.com", "4 705 790 249", "SarEzV", "844 449 593", 1, 2, 79, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(337, 2020337, "Anderea Tilly", "Fryman Midford", "2020337@universdiad.edu.com", "tmidfordr@mapy.cz", "1 347 461 400", "PECMYB", "827 984 676", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(338, 2020338, "Juliana Sharity", "Gadd McNab", "2020338@universdiad.edu.com", "smcnabg1@alibaba.com", "5 465 528 301", "m79Lqf", "522 123 490", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(339, 2020339, "Bord Thaxter", "Gadsden Durnall", "2020339@universdiad.edu.com", "tdurnall49@stanford.edu", "4 152 753 814", "kNxOZ0", "953 481 630", 1, 4, 80, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(340, 2020340, "Bessie Thea", "Gallienne Blunsen", "2020340@universdiad.edu.com", "tblunsenqu@who.int", "7 855 856 828", "F58KmA", "349 495 269", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(341, 2020341, "Steven Rossie", "Gallop Howsden", "2020341@universdiad.edu.com", "rhowsden71@tmall.com", "5 902 296 362", "GG49Ao", "644 324 920", 1, 5, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(342, 2020342, "Isidore Parke", "Gamage Nardoni", "2020342@universdiad.edu.com", "pnardonibb@cdc.gov", "7 280 109 602", "hoPEXE", "277 876 208", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(343, 2020343, "Shelbi Ethelyn", "Gammie Petrushkevich", "2020343@universdiad.edu.com", "epetrushkevichmu@sitemeter.com", "6 913 752 830", "VDhpTi", "663 109 245", 2, 3, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(344, 2020344, "Blisse Elyn", "Garbett Busst", "2020344@universdiad.edu.com", "ebusstjg@facebook.com", "5 573 570 679", "q7o51c", "262 849 766", 2, 3, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(345, 2020345, "Curcio Daron", "Garoghan Guinery", "2020345@universdiad.edu.com", "dguinery2j@cargocollective.com", "7 825 317 301", "LVsrCG", "892 900 268", 1, 1, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(346, 2020346, "Elwood Boris", "Garrelts Pimley", "2020346@universdiad.edu.com", "bpimleycp@dropbox.com", "1 102 455 340", "EF6443", "962 392 852", 1, 4, 81, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(347, 2020347, "Cynthie Nerte", "Garry Thaine", "2020347@universdiad.edu.com", "nthaine5j@goodreads.com", "9 352 267 981", "bu3b4S", "502 609 906", 2, 4, 82, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(348, 2020348, "Wittie Drew", "Gascoine McKerlie", "2020348@universdiad.edu.com", "dmckerlie9k@hc360.com", "10 614 865 564", "KwzRAJ", "287 309 373", 1, 5, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(349, 2020349, "Darrell Grange", "Geal Garstan", "2020349@universdiad.edu.com", "ggarstanfx@zdnet.com", "6 240 606 520", "ncfJuo", "314 692 136", 1, 4, 53, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(350, 2020350, "Rosemary Janette", "Geer Axell", "2020350@universdiad.edu.com", "jaxellj8@nymag.com", "7 204 483 638", "RFOyJH", "350 615 455", 2, 4, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(351, 2020351, "Judye Alexa", "Gehrtz Crawcour", "2020351@universdiad.edu.com", "acrawcourq3@github.com", "2 838 110 252", "OvudcN", "494 552 165", 2, 1, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(352, 2020352, "Jessey Prince", "Geldart Matyatin", "2020352@universdiad.edu.com", "pmatyatin9h@simplemachines.org", "6 242 501 661", "2HIbXC", "835 118 734", 1, 3, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(353, 2020353, "Tobe Melli", "Gerlts Blackall", "2020353@universdiad.edu.com", "mblackall9q@unblog.fr", "10 921 893 140", "vPxvuO", "464 519 353", 2, 4, 83, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(354, 2020354, "Angelia Chery", "Gero Trusse", "2020354@universdiad.edu.com", "ctrusse6v@list-manage.com", "10 322 496 761", "eEOpgX", "928 288 198", 2, 5, 54, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(355, 2020355, "Livvyy Fannie", "Getcliffe Bolingbroke", "2020355@universdiad.edu.com", "fbolingbroke2v@weebly.com", "5 299 449 427", "ITBffj", "762 109 649", 2, 3, 84, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(356, 2020356, "Arney Dimitry", "Giacomello Linkleter", "2020356@universdiad.edu.com", "dlinkletera2@telegraph.co.uk", "2 944 265 425", "GK9mk7", "386 188 949", 1, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(357, 2020357, "Lyell Berk", "Giacomuzzo Millins", "2020357@universdiad.edu.com", "bmillins6k@google.co.jp", "6 908 938 778", "ljLxzl", "554 663 173", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(358, 2020358, "Cleavland Demetre", "Giacopini Georghiou", "2020358@universdiad.edu.com", "dgeorghiouim@e-recht24.de", "3 305 657 110", "1q5XaF", "787 686 401", 1, 3, 12, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(359, 2020359, "Garner Timmie", "Giercke Treneer", "2020359@universdiad.edu.com", "ttreneer12@mayoclinic.com", "7 349 250 857", "EmUXMh", "322 517 800", 1, 3, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(360, 2020360, "Jerad Hagen", "Giffon Dawidman", "2020360@universdiad.edu.com", "hdawidman68@wikipedia.org", "2 835 581 698", "EIkeer", "304 432 804", 1, 4, 9, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(361, 2020361, "Toinette Sadye", "Gilgryst Scammonden", "2020361@universdiad.edu.com", "sscammonden81@weather.com", "4 897 394 616", "KfSf3P", "413 769 803", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(362, 2020362, "Taryn Georgiana", "Gillions Brill", "2020362@universdiad.edu.com", "gbrilleq@drupal.org", "10 365 869 733", "04pPda", "886 453 371", 2, 5, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(363, 2020363, "Martainn Desmund", "Giovannilli Dressel", "2020363@universdiad.edu.com", "ddresseli9@intel.com", "5 717 223 712", "gWILUf", "320 344 403", 1, 2, 42, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(364, 2020364, "Benjamen Euell", "Giovannini Woodall", "2020364@universdiad.edu.com", "ewoodalloh@ihg.com", "6 245 702 111", "ZqtFA3", "245 939 206", 1, 1, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(365, 2020365, "Ninon Morissa", "Giovannoni Forestall", "2020365@universdiad.edu.com", "mforestallo4@reverbnation.com", "8 337 327 861", "N7WGhF", "933 245 606", 2, 5, 85, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(366, 2020366, "Marika Babb", "Gittens Suttling", "2020366@universdiad.edu.com", "bsuttlingr2@wired.com", "8 492 988 608", "nx74hx", "822 915 474", 2, 1, 16, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(367, 2020367, "Bendicty Sergio", "Glanville Fernley", "2020367@universdiad.edu.com", "sfernley38@netvibes.com", "2 190 358 148", "apCOH5", "549 616 189", 1, 1, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(368, 2020368, "Connie Mariquilla", "Glasby Jacquemot", "2020368@universdiad.edu.com", "mjacquemothd@quantcast.com", "1 579 616 912", "ZUQw9G", "906 111 205", 2, 4, 12, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(369, 2020369, "Jodee Ninetta", "Glaysher Attwood", "2020369@universdiad.edu.com", "nattwood1m@i2i.jp", "8 917 899 456", "MI3mmQ", "503 158 763", 2, 2, 81, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(370, 2020370, "Ragnar Humbert", "Glencross Ruprechter", "2020370@universdiad.edu.com", "hruprechter9a@google.ca", "9 149 724 634", "gCAGOd", "436 542 131", 1, 5, 11, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(371, 2020371, "Querida Drona", "Glyne Engledow", "2020371@universdiad.edu.com", "dengledow3f@wsj.com", "10 142 714 519", "s1E5qw", "227 948 157", 2, 4, 86, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(372, 2020372, "Rice Muhammad", "Golden Blei", "2020372@universdiad.edu.com", "mblei2i@house.gov", "10 834 282 877", "tOKS4P", "450 690 395", 1, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(373, 2020373, "Fifine Flore", "Golledge Benbrick", "2020373@universdiad.edu.com", "fbenbricke8@t.co", "7 968 141 439", "fKaKiS", "876 789 453", 2, 3, 87, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(374, 2020374, "Isidoro Randi", "Gonin Kittoe", "2020374@universdiad.edu.com", "rkittoerp@reddit.com", "9 208 961 250", "A1r37s", "517 201 184", 1, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(375, 2020375, "Prinz Morton", "Goodboddy Tourry", "2020375@universdiad.edu.com", "mtourrypr@myspace.com", "7 430 659 287", "IFzv1e", "750 307 826", 1, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(376, 2020376, "Langsdon Sayre", "Goodding Henricsson", "2020376@universdiad.edu.com", "shenricsson6f@vinaora.com", "9 709 715 611", "PHd2Y1", "625 827 849", 1, 1, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(377, 2020377, "Gordy Costa", "Goolding Benedicte", "2020377@universdiad.edu.com", "cbenedicteas@lulu.com", "5 158 631 845", "cKLSL8", "232 671 962", 1, 4, 15, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(378, 2020378, "Northrop Redford", "Gornal Yurocjhin", "2020378@universdiad.edu.com", "ryurocjhinpx@rediff.com", "8 501 582 300", "MsySku", "300 695 141", 1, 3, 2, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(379, 2020379, "Dill Gabriello", "Gosenell Aspin", "2020379@universdiad.edu.com", "gaspin2f@weibo.com", "5 796 660 557", "tcP3K6", "208 908 451", 1, 2, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(380, 2020380, "Rolfe Conrad", "Gouley Frayling", "2020380@universdiad.edu.com", "cfrayling7m@vk.com", "5 531 659 390", "QUesPz", "804 932 216", 1, 2, 88, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(381, 2020381, "Randolf Lowell", "Gounard Garroway", "2020381@universdiad.edu.com", "lgarroway3d@ehow.com", "2 716 940 207", "M8c1jN", "258 150 740", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(382, 2020382, "Cristobal Wyn", "Gounet Van Geffen", "2020382@universdiad.edu.com", "wvangeffen6@g.co", "10 295 763 627", "pWj8gb", "937 617 800", 1, 5, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(383, 2020383, "Marris Lynna", "Gounin Halliburton", "2020383@universdiad.edu.com", "lhalliburtonhx@mtv.com", "2 173 920 590", "1wBCba", "377 376 580", 2, 1, 48, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(384, 2020384, "Wash Francklyn", "Govett Greatreax", "2020384@universdiad.edu.com", "fgreatreax4v@wiley.com", "9 503 211 204", "ZDdDCg", "633 938 926", 1, 1, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(385, 2020385, "Erika Dusty", "Gowers Dooley", "2020385@universdiad.edu.com", "ddooley6h@clickbank.net", "1 824 167 125", "4wRbEk", "875 570 493", 2, 3, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(386, 2020386, "Tasia Shandy", "Grabert Poore", "2020386@universdiad.edu.com", "spooremk@stumbleupon.com", "8 151 311 410", "osNIVM", "600 888 621", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(387, 2020387, "Kristo Adams", "Greatreax O' Dooley", "2020387@universdiad.edu.com", "aodooley6z@plala.or.jp", "8 265 848 898", "I8gdz2", "556 575 611", 1, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(388, 2020388, "Creigh Wilburt", "Greenier Van Hesteren", "2020388@universdiad.edu.com", "wvanhesterend7@reverbnation.com", "10 942 411 158", "NeaKhR", "167 982 146", 1, 5, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(389, 2020389, "Zea Zonnya", "Gregg Cater", "2020389@universdiad.edu.com", "zcaterpf@123-reg.co.uk", "4 617 278 920", "vb9DGH", "461 299 509", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(390, 2020390, "Cindee Olive", "Greggor Prentice", "2020390@universdiad.edu.com", "oprenticer6@privacy.gov.au", "5 213 994 650", "PYlJhd", "422 375 617", 2, 3, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(391, 2020391, "Adrian Haleigh", "Gregoli Hacquel", "2020391@universdiad.edu.com", "hhacquelhp@accuweather.com", "2 652 628 563", "HbYVa7", "383 388 564", 1, 4, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(392, 2020392, "Maximilianus Dudley", "Grim Berthomier", "2020392@universdiad.edu.com", "dberthomier5t@nationalgeographic.com", "1 336 179 167", "8IL9Hm", "114 609 302", 1, 5, 89, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(393, 2020393, "Adolf Andras", "Griss Schoolfield", "2020393@universdiad.edu.com", "aschoolfielddv@delicious.com", "10 719 866 782", "9Fbdxm", "482 360 996", 1, 1, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(394, 2020394, "Sydelle Candie", "Groom Palin", "2020394@universdiad.edu.com", "cpalinc3@archive.org", "2 577 318 173", "xygOjP", "902 274 137", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(395, 2020395, "Fawnia Tamarra", "Grout O'Carran", "2020395@universdiad.edu.com", "tocarrank0@phpbb.com", "2 724 806 822", "lIzFOT", "588 650 535", 2, 5, 81, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(396, 2020396, "Rodolfo Rabbi", "Gueinn Matt", "2020396@universdiad.edu.com", "rmatt8f@amazon.co.uk", "5 274 310 579", "IZPIEH", "140 809 842", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(397, 2020397, "Miguelita Roshelle", "Guilaem Parsall", "2020397@universdiad.edu.com", "rparsalldx@icq.com", "3 185 404 519", "yRqHIK", "160 358 948", 2, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(398, 2020398, "Timmi Josey", "Guillart Cammocke", "2020398@universdiad.edu.com", "jcammockecy@reddit.com", "8 386 787 160", "GosBSD", "368 658 656", 2, 5, 22, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(399, 2020399, "Nola Appolonia", "Guiso Ormiston", "2020399@universdiad.edu.com", "aormiston35@g.co", "2 770 348 179", "d1s1vn", "200 476 302", 2, 5, 90, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(400, 2020400, "Jozef Michele", "Guiu Delves", "2020400@universdiad.edu.com", "mdelvesjl@clickbank.net", "1 353 896 610", "xN7d3V", "406 514 201", 1, 4, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(401, 2020401, "Davy Osbourne", "Gurden Foulis", "2020401@universdiad.edu.com", "ofoulis6a@adobe.com", "5 359 677 116", "1thdJI", "122 585 823", 1, 2, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(402, 2020402, "Christa Hermina", "Gurry Van Merwe", "2020402@universdiad.edu.com", "hvanmerwep0@scribd.com", "7 446 130 406", "j5YGME", "915 540 578", 2, 4, 91, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(403, 2020403, "Mayor Shell", "Guthrum Chalfain", "2020403@universdiad.edu.com", "schalfain2z@mac.com", "8 813 550 844", "l11TzT", "781 856 370", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(404, 2020404, "Norry Betti", "Gutman Whiteoak", "2020404@universdiad.edu.com", "bwhiteoakbu@goodreads.com", "10 910 375 483", "jeeiqh", "612 478 951", 2, 2, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(405, 2020405, "Karel Andreana", "Gylle Chedzoy", "2020405@universdiad.edu.com", "achedzoy6r@github.io", "1 581 632 608", "sNpzUe", "510 837 786", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(406, 2020406, "Finn Swen", "Haggata Cumbridge", "2020406@universdiad.edu.com", "scumbridgeg5@homestead.com", "8 964 965 795", "cscCwN", "934 268 337", 1, 4, 15, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(407, 2020407, "Elane Carlota", "Haldene Riddock", "2020407@universdiad.edu.com", "criddockd4@infoseek.co.jp", "9 240 835 186", "wnoGS8", "952 399 517", 2, 3, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(408, 2020408, "Jared Benedetto", "Hall Churchouse", "2020408@universdiad.edu.com", "bchurchouseif@virginia.edu", "7 284 213 931", "eC5fgV", "760 131 644", 1, 2, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(409, 2020409, "Pedro Bondy", "Hallibone Bamb", "2020409@universdiad.edu.com", "bbambad@thetimes.co.uk", "4 121 162 343", "092whM", "821 560 613", 1, 3, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(410, 2020410, "Vonny Shalne", "Hamblyn Shimman", "2020410@universdiad.edu.com", "sshimmanbd@prlog.org", "9 253 246 456", "pepUEA", "573 426 561", 2, 3, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(411, 2020411, "Jaime Demetra", "Hamelyn Carles", "2020411@universdiad.edu.com", "dcarleslp@dell.com", "3 563 453 279", "HOVJmP", "503 886 750", 2, 5, 28, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(412, 2020412, "Vin Hewitt", "Hamelyn Ledur", "2020412@universdiad.edu.com", "hledurmy@usnews.com", "8 752 605 824", "RK2XsS", "482 821 520", 1, 1, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(413, 2020413, "Packston Valentine", "Hand Baldazzi", "2020413@universdiad.edu.com", "vbaldazzi6q@ocn.ne.jp", "5 169 902 334", "NZXryi", "284 436 279", 1, 5, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(414, 2020414, "Gerick Elisha", "Handsheart Flucks", "2020414@universdiad.edu.com", "eflucksab@auda.org.au", "8 246 912 709", "lBGU2u", "225 856 377", 1, 2, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(415, 2020415, "Lida Stormie", "Hanmore Gaye", "2020415@universdiad.edu.com", "sgayedj@privacy.gov.au", "4 712 345 690", "DATYGL", "104 727 544", 2, 4, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(416, 2020416, "Kristian Edsel", "Happert Rubinlicht", "2020416@universdiad.edu.com", "erubinlicht8e@hugedomains.com", "8 309 951 176", "MFtSDe", "893 337 314", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(417, 2020417, "Luisa Nicoli", "Happs Oller", "2020417@universdiad.edu.com", "noller2s@businessweek.com", "7 217 481 116", "U445wQ", "349 724 929", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(418, 2020418, "Bessie Keriann", "Hardiker Klebes", "2020418@universdiad.edu.com", "kklebes9x@cdc.gov", "7 902 165 171", "ifPcDE", "399 122 777", 2, 5, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(419, 2020419, "Barth Gregorio", "Hardwin Kearford", "2020419@universdiad.edu.com", "gkearford4h@google.co.uk", "6 721 925 520", "3bbrTZ", "205 666 219", 1, 1, 92, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(420, 2020420, "Joby Carlie", "Harold Ottam", "2020420@universdiad.edu.com", "cottami0@blogtalkradio.com", "8 758 733 384", "vWxrjh", "179 752 848", 2, 4, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(421, 2020421, "Lise Marie-jeanne", "Harty Golsthorp", "2020421@universdiad.edu.com", "mgolsthorpq1@paginegialle.it", "7 321 759 971", "xYA9k4", "970 734 319", 2, 5, 14, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(422, 2020422, "Sayres Ulberto", "Haseley Taberer", "2020422@universdiad.edu.com", "utabererii@businessinsider.com", "10 235 914 890", "7j3BwS", "449 294 908", 1, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(423, 2020423, "Say Monti", "Hatherley Arendt", "2020423@universdiad.edu.com", "marendt1@about.com", "9 124 759 697", "goJjFB", "579 810 471", 1, 3, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(424, 2020424, "Christoper Ken", "Hathorn Nussgen", "2020424@universdiad.edu.com", "knussgenk@yahoo.co.jp", "10 476 568 975", "PmJ4uU", "649 447 811", 1, 5, 14, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(425, 2020425, "Minetta Freddi", "Hatrey German", "2020425@universdiad.edu.com", "fgermanqs@csmonitor.com", "3 153 734 726", "pa2fUU", "304 790 953", 2, 2, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(426, 2020426, "Rica Marian", "Hawlgarth Kulas", "2020426@universdiad.edu.com", "mkulas66@ustream.tv", "8 219 332 425", "pjj4wx", "351 134 877", 2, 5, 81, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(427, 2020427, "Maure Sissy", "Hayfield Casely", "2020427@universdiad.edu.com", "scasely4y@aboutads.info", "8 969 576 173", "6gNlUA", "449 642 236", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(428, 2020428, "Kerk Aluino", "Hebbes Sporner", "2020428@universdiad.edu.com", "aspornerdi@dagondesign.com", "9 741 785 921", "xbDdE8", "965 534 415", 1, 4, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(429, 2020429, "Osmond Tyrone", "Heeley Cooch", "2020429@universdiad.edu.com", "tcoochfu@census.gov", "9 124 639 393", "ZT6mOa", "269 266 111", 1, 5, 10, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(430, 2020430, "Westleigh Luigi", "Heliot Geibel", "2020430@universdiad.edu.com", "lgeibel9n@fema.gov", "6 519 952 183", "UaSqfW", "190 740 494", 1, 1, 48, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(431, 2020431, "Abner Georg", "Hellwig Columbine", "2020431@universdiad.edu.com", "gcolumbinecq@google.de", "7 260 555 244", "TOO06G", "139 145 988", 1, 5, 93, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(432, 2020432, "Lilla Zonda", "Helstrom Lally", "2020432@universdiad.edu.com", "zlallylu@slashdot.org", "8 602 692 951", "pNKWM2", "503 923 754", 2, 2, 35, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(433, 2020433, "Delmer Stanfield", "Heselwood Patterfield", "2020433@universdiad.edu.com", "spatterfieldcc@home.pl", "2 938 405 302", "iR5hlh", "169 938 338", 1, 5, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(434, 2020434, "Holt Zachery", "Hessle Doll", "2020434@universdiad.edu.com", "zdollgq@xinhuanet.com", "1 277 675 649", "DOnBIr", "508 967 393", 1, 3, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(435, 2020435, "Donavon Reginauld", "Hestrop Ridler", "2020435@universdiad.edu.com", "rridler4q@abc.net.au", "5 231 656 268", "LuwN8G", "640 143 302", 1, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(436, 2020436, "Ben Tymon", "Hiers Cawthra", "2020436@universdiad.edu.com", "tcawthradc@mozilla.org", "5 295 482 985", "fM8fPb", "872 707 227", 1, 1, 94, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(437, 2020437, "Henderson Ogden", "Hindhaugh Ramelot", "2020437@universdiad.edu.com", "oramelot51@dailymotion.com", "5 535 290 698", "tE3bNE", "203 794 799", 1, 2, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(438, 2020438, "Stace Fallon", "Hing Kimmins", "2020438@universdiad.edu.com", "fkimminsls@google.de", "1 804 328 287", "hRkuhX", "885 380 807", 2, 3, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(439, 2020439, "Barri Sandro", "Hollows Chesterman", "2020439@universdiad.edu.com", "schestermanc2@archive.org", "1 651 537 364", "IWoSuc", "828 841 863", 1, 5, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(440, 2020440, "Constancy Ainslie", "Hollyar Twells", "2020440@universdiad.edu.com", "atwellsl3@is.gd", "10 432 778 954", "9HGV5M", "243 136 113", 2, 5, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(441, 2020441, "Rudolph Arlan", "Holme Slide", "2020441@universdiad.edu.com", "aslidege@smh.com.au", "10 660 818 231", "CNXbZl", "402 266 581", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(442, 2020442, "Reg Rriocard", "Horder Mico", "2020442@universdiad.edu.com", "rmicolc@moonfruit.com", "4 279 114 764", "1R84KV", "263 351 293", 1, 1, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(443, 2020443, "Ema Lynett", "Hoston Aingel", "2020443@universdiad.edu.com", "laingel1j@godaddy.com", "8 846 239 211", "0UGHHy", "584 263 336", 2, 4, 41, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(444, 2020444, "Philipa Harriot", "Houldcroft Dorling", "2020444@universdiad.edu.com", "hdorlingbp@craigslist.org", "7 792 914 914", "RX8KKZ", "450 310 315", 2, 3, 76, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(445, 2020445, "Charmaine Michele", "Houlton Stickler", "2020445@universdiad.edu.com", "msticklerej@shop-pro.jp", "3 605 156 895", "bZNsHg", "220 196 302", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(446, 2020446, "Isadore Dicky", "Howis Czaja", "2020446@universdiad.edu.com", "dczaja29@booking.com", "10 616 597 579", "NDk25Y", "993 439 456", 1, 2, 21, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(447, 2020447, "Kurt Stinky", "Hoyt Dunguy", "2020447@universdiad.edu.com", "sdunguyi8@hubpages.com", "3 541 828 475", "5411Y5", "855 772 519", 1, 3, 95, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(448, 2020448, "Coleman Fletch", "Hubberstey Jonczyk", "2020448@universdiad.edu.com", "fjonczyks@printfriendly.com", "2 901 919 520", "T1AE0j", "311 667 600", 1, 5, 2, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(449, 2020449, "Tate Travers", "Huby Devil", "2020449@universdiad.edu.com", "tdevilp6@vinaora.com", "1 113 586 210", "BL1kKk", "548 745 711", 1, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(450, 2020450, "Gwenette Adora", "Hudspith Jamary", "2020450@universdiad.edu.com", "ajamary6b@ameblo.jp", "7 981 680 927", "mEDh7l", "303 345 478", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(451, 2020451, "Heath Claiborne", "Husthwaite Licari", "2020451@universdiad.edu.com", "clicariev@csmonitor.com", "1 258 597 629", "8UGXdM", "629 656 633", 1, 2, 54, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(452, 2020452, "Emmalee Florella", "Huxtable Chaimson", "2020452@universdiad.edu.com", "fchaimsonoj@upenn.edu", "2 126 981 516", "uYyilc", "120 112 158", 2, 2, 74, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(453, 2020453, "Niven Maxwell", "Huygens Carlsson", "2020453@universdiad.edu.com", "mcarlssonkm@mapy.cz", "6 820 824 426", "F56ReE", "560 962 506", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(454, 2020454, "Trudie Leshia", "Hymas Kubczak", "2020454@universdiad.edu.com", "lkubczakdz@chron.com", "4 231 333 912", "gHMmIN", "458 556 705", 2, 5, 54, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(455, 2020455, "Lefty Jeffrey", "Iannini Paice", "2020455@universdiad.edu.com", "jpaice8k@devhub.com", "1 739 312 791", "3ND0k7", "714 852 236", 1, 1, 96, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(456, 2020456, "Lutero Holden", "Iliffe Pearsall", "2020456@universdiad.edu.com", "hpearsallln@bandcamp.com", "2 828 400 954", "GS1Nub", "396 430 571", 1, 1, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(457, 2020457, "Townsend Ebenezer", "Ingerith Anselmi", "2020457@universdiad.edu.com", "eanselmird@cdbaby.com", "10 696 440 537", "uAbYnj", "401 653 752", 1, 5, 35, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(458, 2020458, "Charles Josiah", "Ingrey Pedican", "2020458@universdiad.edu.com", "jpedicanly@friendfeed.com", "1 682 319 457", "2i7LxY", "459 422 478", 1, 2, 97, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(459, 2020459, "Carlynne Grayce", "Ingyon O'Gready", "2020459@universdiad.edu.com", "gogreadyf6@unc.edu", "7 899 908 949", "YACtaI", "663 416 207", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(460, 2020460, "Rozella Gabriell", "Isaq Fewell", "2020460@universdiad.edu.com", "gfewell6e@google.nl", "2 202 367 655", "0ZXZe8", "703 307 395", 2, 4, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(461, 2020461, "Edie Crysta", "Ivashin McCurdy", "2020461@universdiad.edu.com", "cmccurdy5@baidu.com", "9 101 830 325", "jM58BN", "348 582 487", 2, 2, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(462, 2020462, "Huntlee Blane", "Iwanowicz Mishow", "2020462@universdiad.edu.com", "bmishowa@ovh.net", "2 397 752 764", "D2UvQU", "570 278 392", 1, 5, 98, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(463, 2020463, "Noelani Cammie", "Izzard Masters", "2020463@universdiad.edu.com", "cmasterskt@latimes.com", "7 571 353 834", "dNnzkD", "149 261 795", 2, 5, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(464, 2020464, "Gilberte Glen", "Jacmard Lowndsborough", "2020464@universdiad.edu.com", "glowndsboroughl2@chronoengine.com", "10 317 114 695", "j2ChQz", "797 911 700", 2, 5, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(465, 2020465, "Trev Terrill", "Jakubczyk Ladbury", "2020465@universdiad.edu.com", "tladburyo1@tinyurl.com", "6 649 107 265", "G3qarS", "266 938 557", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(466, 2020466, "Rustie Gregory", "Jakubowski Skurray", "2020466@universdiad.edu.com", "gskurray5b@walmart.com", "6 402 924 667", "5nI16J", "360 366 941", 1, 2, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(467, 2020467, "Jacquelyn Daria", "Jandera Gallamore", "2020467@universdiad.edu.com", "dgallamore89@com.com", "8 173 454 610", "2tlLJc", "657 803 103", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(468, 2020468, "Elsie Carma", "Janouch Spears", "2020468@universdiad.edu.com", "cspears7e@squidoo.com", "6 753 923 579", "xo0S6v", "583 438 968", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(469, 2020469, "Jesus Pebrook", "Jarmain Langthorne", "2020469@universdiad.edu.com", "plangthorneqp@ocn.ne.jp", "9 983 772 602", "fvosPA", "691 270 879", 1, 3, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(470, 2020470, "Georgia Gennie", "Jarrard Cudby", "2020470@universdiad.edu.com", "gcudbynd@huffingtonpost.com", "3 103 260 632", "NfNkFV", "129 279 926", 2, 5, 99, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(471, 2020471, "Georgena Pier", "Jelf Ragat", "2020471@universdiad.edu.com", "pragatqy@answers.com", "10 225 353 952", "gTez1O", "221 142 958", 2, 3, 100, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(472, 2020472, "Maureene Aubree", "Jersh Pudney", "2020472@universdiad.edu.com", "apudney5r@microsoft.com", "4 859 578 163", "0fNdTT", "709 940 759", 2, 5, 76, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(473, 2020473, "Kaylee Selie", "Jess Peddie", "2020473@universdiad.edu.com", "speddiegd@abc.net.au", "2 666 838 486", "3i3NgV", "343 339 898", 2, 5, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(474, 2020474, "Ermin Chrissy", "Jessep Comettoi", "2020474@universdiad.edu.com", "ccomettoiiu@cbc.ca", "9 901 109 942", "Ls2rw0", "761 593 593", 1, 3, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(475, 2020475, "Olav Shurlock", "Jewitt Whickman", "2020475@universdiad.edu.com", "swhickman4x@theguardian.com", "4 420 457 723", "TgLFa3", "393 717 600", 1, 1, 68, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(476, 2020476, "Kendrick Archaimbaud", "Jillings Brugh", "2020476@universdiad.edu.com", "abrughh1@free.fr", "1 948 864 536", "5IyJGN", "575 967 604", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(477, 2020477, "Cindi Anallise", "Jiru Emson", "2020477@universdiad.edu.com", "aemsonfd@scribd.com", "8 419 718 756", "TFzgWn", "891 228 593", 2, 2, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(478, 2020478, "Gregorio Samson", "Jirus Thebe", "2020478@universdiad.edu.com", "sthebeqt@goo.gl", "6 516 803 756", "LTl4Co", "528 637 853", 1, 2, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(479, 2020479, "Miguelita Rosalind", "Johnsson Birdsey", "2020479@universdiad.edu.com", "rbirdsey5e@g.co", "7 724 984 213", "ZCBovd", "295 574 561", 2, 4, 98, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(480, 2020480, "Katherine Nelie", "Jollands Walklot", "2020480@universdiad.edu.com", "nwalklotdo@sphinn.com", "5 930 206 880", "jOWyiD", "652 660 372", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(481, 2020481, "Gloria Dorita", "Jones Ossipenko", "2020481@universdiad.edu.com", "dossipenkohl@arstechnica.com", "10 768 963 282", "VwJCTp", "837 681 396", 2, 3, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(482, 2020482, "Ursola Danyelle", "Josum Terbrug", "2020482@universdiad.edu.com", "dterbrugd5@wikipedia.org", "9 298 969 706", "JleaOM", "502 308 783", 2, 4, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(483, 2020483, "Paulie Xever", "Jozefczak Worgan", "2020483@universdiad.edu.com", "xworgan9g@imdb.com", "8 948 283 701", "KJ80BV", "617 544 535", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(484, 2020484, "Jennie Bernardine", "Jurn Ormrod", "2020484@universdiad.edu.com", "bormrodow@scientificamerican.com", "3 604 586 549", "C9ccNP", "910 583 897", 2, 3, 30, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(485, 2020485, "Dallon Nigel", "Kapiloff Tavernor", "2020485@universdiad.edu.com", "ntavernor8x@flickr.com", "9 377 571 661", "mB7iDy", "696 316 515", 1, 3, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(486, 2020486, "Janelle Flore", "Karlolczak Barwood", "2020486@universdiad.edu.com", "fbarwood61@dagondesign.com", "4 461 623 860", "Aq7E54", "120 208 853", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(487, 2020487, "Pablo Michail", "Kaye Willcock", "2020487@universdiad.edu.com", "mwillcock1q@shutterfly.com", "1 504 392 186", "MLrOUn", "562 867 125", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(488, 2020488, "Stanwood Merry", "Keast Bonafacino", "2020488@universdiad.edu.com", "mbonafacinokg@tiny.cc", "4 627 604 294", "utwEuX", "437 516 196", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(489, 2020489, "Frans Towney", "Kehir Rashleigh", "2020489@universdiad.edu.com", "trashleigham@oakley.com", "5 941 404 285", "X931Bn", "472 902 804", 1, 1, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(490, 2020490, "Kareem Alexandre", "Kemmer Niave", "2020490@universdiad.edu.com", "aniave4c@jugem.jp", "3 318 322 208", "Ypm537", "450 245 527", 1, 5, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(491, 2020491, "Maynord Puff", "Kennagh Bidmead", "2020491@universdiad.edu.com", "pbidmeadeu@upenn.edu", "8 306 989 633", "WdQWBH", "215 312 797", 1, 3, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(492, 2020492, "Isabeau Kristi", "Kennefick Frounks", "2020492@universdiad.edu.com", "kfrounksf5@studiopress.com", "4 919 818 784", "G6N1HT", "292 627 539", 2, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(493, 2020493, "Benjamin Nikolaus", "Ketts Greggor", "2020493@universdiad.edu.com", "ngreggorh7@walmart.com", "6 711 375 133", "zQlC0X", "354 103 109", 1, 5, 49, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(494, 2020494, "Willem Patten", "Kidston Bourget", "2020494@universdiad.edu.com", "pbourgeth5@reverbnation.com", "2 336 861 579", "MpxVvG", "223 123 926", 1, 3, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(495, 2020495, "Mendel Wylie", "Kieff Edgler", "2020495@universdiad.edu.com", "wedgleraq@spotify.com", "6 353 698 470", "e02RQc", "758 555 239", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(496, 2020496, "Sidney Reynolds", "Kilduff McClements", "2020496@universdiad.edu.com", "rmcclements67@who.int", "1 814 162 164", "03yoXQ", "403 732 159", 1, 4, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(497, 2020497, "Philomena Inge", "Killcross Aldwick", "2020497@universdiad.edu.com", "ialdwickft@desdev.cn", "4 693 509 354", "nmmgJe", "606 336 260", 2, 3, 101, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(498, 2020498, "Jayson Frederic", "Killingsworth Tuckie", "2020498@universdiad.edu.com", "ftuckiedd@ow.ly", "1 319 372 108", "0knROl", "153 931 844", 1, 4, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(499, 2020499, "Milicent Jacquenette", "Kimpton Oddey", "2020499@universdiad.edu.com", "joddeyms@reuters.com", "5 531 606 951", "bwjzUW", "153 840 793", 2, 4, 102, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(500, 2020500, "Aldous Raimund", "Kindleysides Younger", "2020500@universdiad.edu.com", "ryoungerj3@shinystat.com", "9 508 602 213", "O0pDvZ", "742 763 865", 1, 3, 103, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(501, 2020501, "Emogene Vin", "Kington Mobberley", "2020501@universdiad.edu.com", "vmobberleyiz@omniture.com", "6 667 717 591", "VrALzU", "299 223 749", 2, 2, 9, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(502, 2020502, "Cherri Joyan", "Klawi Buxcy", "2020502@universdiad.edu.com", "jbuxcylx@sfgate.com", "6 860 390 430", "UHiPkM", "494 682 111", 2, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(503, 2020503, "Charyl Jo ann", "Klebes Hayton", "2020503@universdiad.edu.com", "jhaytonny@pbs.org", "3 648 320 419", "Xhxg5N", "470 136 299", 2, 3, 10, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(504, 2020504, "Ric Eadmund", "Klementz Finker", "2020504@universdiad.edu.com", "efinkerib@dropbox.com", "10 851 668 149", "uzkEiL", "272 458 709", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(505, 2020505, "Garrek Patrice", "Klimecki Probert", "2020505@universdiad.edu.com", "pprobert5h@usa.gov", "9 920 503 365", "07N18D", "699 250 825", 1, 5, 12, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(506, 2020506, "Rafaellle Adler", "Klus Cady", "2020506@universdiad.edu.com", "acady9l@hp.com", "7 739 482 122", "MmkfDT", "372 141 360", 1, 1, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(507, 2020507, "Delila Marti", "Knibley Struthers", "2020507@universdiad.edu.com", "mstruthers5d@google.com.hk", "5 533 404 376", "LZGjCW", "324 480 178", 2, 4, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(508, 2020508, "Beverlee Kerri", "Knightsbridge Sheal", "2020508@universdiad.edu.com", "kshealra@msn.com", "6 608 634 777", "aFFeIP", "741 155 192", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(509, 2020509, "Kim Saloma", "Knowller Noble", "2020509@universdiad.edu.com", "snoblej6@ibm.com", "3 847 842 628", "jZWNIK", "981 621 251", 2, 3, 100, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(510, 2020510, "Valaria Camilla", "Kobelt Matyukon", "2020510@universdiad.edu.com", "cmatyukonau@timesonline.co.uk", "7 143 112 590", "Glb2kS", "489 903 268", 2, 3, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(511, 2020511, "Christiano Ugo", "Konerding Faux", "2020511@universdiad.edu.com", "ufauxc6@loc.gov", "6 819 781 837", "VGLkPl", "427 436 170", 1, 4, 104, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(512, 2020512, "Bruce Flemming", "Kowal Cressor", "2020512@universdiad.edu.com", "fcressord0@archive.org", "4 891 909 611", "yOVcZe", "440 252 391", 1, 4, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(513, 2020513, "Tremayne Lazaro", "Krolak St. Clair", "2020513@universdiad.edu.com", "lstclair6n@spiegel.de", "3 287 951 936", "Rd8qVQ", "187 672 438", 1, 1, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(514, 2020514, "Hallie Tommie", "Kunneke Bartolomeazzi", "2020514@universdiad.edu.com", "tbartolomeazzi82@europa.eu", "1 622 421 826", "XkwvE8", "434 745 303", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(515, 2020515, "Starlene Letta", "Kupke Helsdon", "2020515@universdiad.edu.com", "lhelsdonr7@discuz.net", "1 119 341 743", "d8GCya", "795 658 956", 2, 4, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(516, 2020516, "Stacee Bartholomeo", "Kynton Swait", "2020516@universdiad.edu.com", "bswaited@joomla.org", "3 796 331 581", "LRIg7r", "964 393 260", 1, 4, 94, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(517, 2020517, "Anestassia Grete", "Lacknor Pexton", "2020517@universdiad.edu.com", "gpexton8g@dropbox.com", "2 895 509 239", "8BmoJ7", "873 950 661", 2, 1, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(518, 2020518, "Othilia Billy", "Lagen Macek", "2020518@universdiad.edu.com", "bmacekfq@nbcnews.com", "1 984 991 927", "oDsob1", "710 894 777", 2, 1, 15, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(519, 2020519, "Isadora Kara-lynn", "Lamyman Raden", "2020519@universdiad.edu.com", "kradenbw@ameblo.jp", "1 182 108 547", "5p8f5D", "947 139 895", 2, 2, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(520, 2020520, "Ferdinande Dorolisa", "Lanaway Elstob", "2020520@universdiad.edu.com", "delstobf@barnesandnoble.com", "7 168 716 821", "PUZEbx", "589 524 347", 2, 3, 28, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(521, 2020521, "Lorrin Adelaida", "Langworthy Peddie", "2020521@universdiad.edu.com", "apeddieoa@last.fm", "6 253 943 884", "GxGcaR", "644 194 302", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(522, 2020522, "Elisabeth Ellyn", "Lansbury Antonoyev", "2020522@universdiad.edu.com", "eantonoyev26@google.co.uk", "10 167 986 640", "7TXGkr", "204 161 778", 2, 2, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(523, 2020523, "Timmie Harmonie", "Lapish Jovey", "2020523@universdiad.edu.com", "hjoveyfn@rambler.ru", "4 268 149 259", "4PbcG1", "151 475 550", 2, 5, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(524, 2020524, "Goober Rusty", "Larham Sands", "2020524@universdiad.edu.com", "rsandslt@wunderground.com", "7 536 199 129", "ltRJz4", "537 621 651", 1, 4, 105, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(525, 2020525, "Noelani Andriette", "Laverick Blyth", "2020525@universdiad.edu.com", "ablythlh@tamu.edu", "2 845 513 161", "wLtzG7", "687 740 252", 2, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(526, 2020526, "Ainslee Edi", "Lavigne McCrum", "2020526@universdiad.edu.com", "emccrum27@mediafire.com", "8 383 551 587", "CghoDP", "836 310 175", 2, 1, 106, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(527, 2020527, "Deanna Sibilla", "Lawrenson Gledhall", "2020527@universdiad.edu.com", "sgledhallcu@reverbnation.com", "8 155 779 969", "KEe4Ae", "160 904 339", 2, 2, 107, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(528, 2020528, "Brennen Meryl", "Lawty Minucci", "2020528@universdiad.edu.com", "mminucci4d@youtube.com", "2 821 764 824", "8bGfoO", "281 814 256", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(529, 2020529, "Quincey Burl", "Le Guin Dunthorn", "2020529@universdiad.edu.com", "bdunthorn8y@businessweek.com", "4 293 256 732", "IktYps", "285 613 371", 1, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(530, 2020530, "Leonidas Martin", "Leale Nisot", "2020530@universdiad.edu.com", "mnisot4j@elegantthemes.com", "1 205 318 638", "SmQOaE", "313 741 525", 1, 2, 26, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(531, 2020531, "Gordan Gav", "Leathard Miebes", "2020531@universdiad.edu.com", "gmiebespb@meetup.com", "8 309 484 980", "Ps0KRy", "934 820 137", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(532, 2020532, "Keriann Jenica", "Lecordier Orr", "2020532@universdiad.edu.com", "jorr53@zdnet.com", "4 556 697 512", "bT1VHh", "252 752 458", 2, 4, 46, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(533, 2020533, "Morry Stavros", "Leefe Costanza", "2020533@universdiad.edu.com", "scostanzah6@dmoz.org", "3 727 177 900", "mi1ubB", "383 938 460", 1, 2, 98, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(534, 2020534, "Violette Marrilee", "Legan Mallabar", "2020534@universdiad.edu.com", "mmallabarja@naver.com", "1 147 293 389", "10ZrH7", "744 276 534", 2, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(535, 2020535, "Pierre Lefty", "Leyden Olanda", "2020535@universdiad.edu.com", "lolandag2@howstuffworks.com", "9 618 130 795", "hNrKNI", "440 495 747", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(536, 2020536, "Genovera Marja", "Liddell Bembrigg", "2020536@universdiad.edu.com", "mbembriggjq@about.com", "10 132 405 832", "E6eCwB", "158 842 560", 2, 4, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(537, 2020537, "Gael Don", "Lindberg Pollack", "2020537@universdiad.edu.com", "dpollack24@addtoany.com", "6 537 172 812", "pGLTPd", "980 506 258", 1, 5, 78, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(538, 2020538, "Edin Elka", "Lindelof Dolle", "2020538@universdiad.edu.com", "edolleai@last.fm", "6 636 686 143", "N8RC97", "671 163 558", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(539, 2020539, "Cari Adriane", "Lints Maccraw", "2020539@universdiad.edu.com", "amaccraw1b@ycombinator.com", "10 707 315 741", "JNw8YK", "559 569 591", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(540, 2020540, "Daisy Rodie", "Lipsett Caldeiro", "2020540@universdiad.edu.com", "rcaldeiro8b@home.pl", "7 535 134 785", "iVY7dC", "587 157 118", 2, 5, 69, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(541, 2020541, "Wilhelm Pincas", "Liversidge Withrington", "2020541@universdiad.edu.com", "pwithringtonqm@sitemeter.com", "8 518 832 374", "lbD9JO", "671 271 932", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(542, 2020542, "Rebekkah Rubetta", "Loadwick Spiby", "2020542@universdiad.edu.com", "rspibycw@washington.edu", "1 964 548 430", "y5N0Pg", "953 605 358", 2, 3, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(543, 2020543, "Lulita Letta", "Lober Prettejohns", "2020543@universdiad.edu.com", "lprettejohns8m@shinystat.com", "2 148 790 633", "n6CNwL", "581 948 416", 2, 5, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(544, 2020544, "Eada Arlyn", "Logesdale Dumbrill", "2020544@universdiad.edu.com", "adumbrillgk@techcrunch.com", "1 398 231 957", "orFgKa", "439 950 967", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(545, 2020545, "Angeline Jillana", "Loiterton Sayburn", "2020545@universdiad.edu.com", "jsayburnjx@rambler.ru", "5 325 849 837", "ZAfIht", "843 377 726", 2, 5, 108, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(546, 2020546, "Shela Corabel", "Longworth Brimmell", "2020546@universdiad.edu.com", "cbrimmell5w@discuz.net", "4 677 103 470", "FxpCDL", "492 366 162", 2, 3, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(547, 2020547, "Raddy Ikey", "Lovart Giuroni", "2020547@universdiad.edu.com", "igiuronim1@ow.ly", "2 155 670 986", "tijZbD", "154 771 677", 1, 5, 97, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(548, 2020548, "Mariam Emlynne", "MacAlees Seiter", "2020548@universdiad.edu.com", "eseiterpk@github.io", "10 822 753 158", "83jgeU", "914 586 688", 2, 4, 46, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(549, 2020549, "Etty Mellie", "MacArdle Klimuk", "2020549@universdiad.edu.com", "mklimukk7@ehow.com", "2 468 211 935", "D85UTC", "565 459 348", 2, 3, 98, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(550, 2020550, "Charley Whit", "MacCartan Pointin", "2020550@universdiad.edu.com", "wpointin2w@altervista.org", "9 871 202 479", "8hPQWN", "793 954 447", 1, 2, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(551, 2020551, "Eugenie Lexis", "MacGauhy Deek", "2020551@universdiad.edu.com", "ldeek83@state.tx.us", "9 466 964 177", "27uRcE", "669 122 558", 2, 5, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(552, 2020552, "Enid Constanta", "MacGinley Allston", "2020552@universdiad.edu.com", "callstoncz@slideshare.net", "7 487 651 116", "t7135J", "982 562 255", 2, 3, 42, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(553, 2020553, "Kelcy Blaire", "MacGiolla Prosh", "2020553@universdiad.edu.com", "bproshg@nationalgeographic.com", "9 189 710 498", "HTAtTz", "917 913 393", 2, 1, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(554, 2020554, "Lannie Jules", "Macken McNea", "2020554@universdiad.edu.com", "jmcneaqe@reuters.com", "5 717 806 662", "yLxnu7", "397 419 645", 1, 1, 2, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(555, 2020555, "Myrvyn Gearalt", "MacMeekan Krink", "2020555@universdiad.edu.com", "gkrink9w@freewebs.com", "10 723 703 343", "NEj4H7", "677 681 357", 1, 4, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(556, 2020556, "Gwyneth Ariana", "MacMenemy Ales0", "2020556@universdiad.edu.com", "aalescl@odnoklassniki.ru", "6 518 139 428", "1vRhC7", "873 937 294", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(557, 2020557, "Francoise Doris", "MacNeillie Stronghill", "2020557@universdiad.edu.com", "dstronghillji@cafepress.com", "5 685 195 505", "UNXV91", "591 972 216", 2, 4, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(558, 2020558, "Ardath Raf", "Maddie Devil", "2020558@universdiad.edu.com", "rdevil3@usda.gov", "5 334 132 915", "LDAwsi", "211 334 563", 2, 5, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(559, 2020559, "Pooh Malanie", "Mainston Compson", "2020559@universdiad.edu.com", "mcompson8w@artisteer.com", "5 179 383 183", "GjINEv", "767 684 236", 2, 1, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(560, 2020560, "Gussi Lindy", "Maletratt Toma", "2020560@universdiad.edu.com", "ltomacj@imgur.com", "4 960 421 783", "An0fNF", "223 996 426", 2, 3, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(561, 2020561, "Jamison Mead", "Mallen Leonida", "2020561@universdiad.edu.com", "mleonidadu@hp.com", "3 627 701 475", "ebVGfC", "106 193 695", 1, 5, 30, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(562, 2020562, "Francesca Analise", "Manclark Milne", "2020562@universdiad.edu.com", "amilneg7@salon.com", "10 527 319 836", "eVP9Nh", "159 565 141", 2, 3, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(563, 2020563, "Axel Welbie", "Manoelli McCaughan", "2020563@universdiad.edu.com", "wmccaughanl@wordpress.org", "7 792 461 337", "yiTg5f", "247 479 302", 1, 3, 53, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(564, 2020564, "Merle Fin", "Mansbridge Crottagh", "2020564@universdiad.edu.com", "fcrottagh42@hao123.com", "1 642 924 343", "t0M76h", "927 238 925", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(565, 2020565, "Misti Frannie", "Mansford Baitman", "2020565@universdiad.edu.com", "fbaitmanph@miibeian.gov.cn", "5 171 859 981", "lysbV7", "932 226 840", 2, 5, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(566, 2020566, "Evvie Morgen", "Manuely Habens", "2020566@universdiad.edu.com", "mhabens5n@un.org", "4 627 813 536", "hpgWA8", "621 445 437", 2, 3, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(567, 2020567, "Elisha Marlie", "Marchelli Conws", "2020567@universdiad.edu.com", "mconws6l@lycos.com", "5 303 411 609", "Tl9zYD", "497 896 723", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(568, 2020568, "Edward Fremont", "Marini Karpenya", "2020568@universdiad.edu.com", "fkarpenyafa@baidu.com", "1 388 990 688", "e7nmEt", "477 765 433", 1, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(569, 2020569, "Gillan Nedi", "Marrion Illidge", "2020569@universdiad.edu.com", "nillidgeo0@mayoclinic.com", "2 448 380 274", "Kkgo9e", "336 769 460", 2, 5, 14, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(570, 2020570, "Roi Kain", "Martelet McGawn", "2020570@universdiad.edu.com", "kmcgawncx@squarespace.com", "3 735 898 873", "hMjX3q", "369 480 324", 1, 4, 25, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(571, 2020571, "Claretta Cariotta", "Martlew Eckly", "2020571@universdiad.edu.com", "ceckly3g@youtu.be", "9 398 981 466", "8jUwOM", "176 763 679", 2, 1, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(572, 2020572, "Woodrow Rayner", "Massy Ledington", "2020572@universdiad.edu.com", "rledington6j@over-blog.com", "5 523 752 142", "FwFge4", "350 474 887", 1, 1, 30, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(573, 2020573, "Gaven Algernon", "Matevosian Sutty", "2020573@universdiad.edu.com", "asuttyit@yandex.ru", "3 357 473 194", "AJnFAq", "439 604 375", 1, 2, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(574, 2020574, "Gwendolyn Heloise", "Matoshin Pittwood", "2020574@universdiad.edu.com", "hpittwood44@moonfruit.com", "7 378 481 535", "RNwSe0", "394 878 819", 2, 3, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(575, 2020575, "Rebekkah Daveen", "Matuszewski Persian", "2020575@universdiad.edu.com", "dpersianpa@jiathis.com", "2 913 869 531", "y47aLF", "685 115 346", 2, 1, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(576, 2020576, "Emmerich Brewster", "Matzkaitis Crann", "2020576@universdiad.edu.com", "bcrannm4@paypal.com", "1 412 642 488", "Zft6gs", "229 179 725", 1, 3, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(577, 2020577, "Juanita Toni", "Maunders Peart", "2020577@universdiad.edu.com", "tpeartrj@slashdot.org", "5 989 702 424", "4rNDnM", "254 153 996", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(578, 2020578, "Dora Anny", "Mayman Saill", "2020578@universdiad.edu.com", "asaill4r@so-net.ne.jp", "6 293 762 449", "9lks2T", "508 160 420", 2, 5, 35, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(579, 2020579, "Sauncho Olivero", "Mayte Thyer", "2020579@universdiad.edu.com", "othyer7h@apache.org", "10 958 902 854", "xiSNCE", "941 767 563", 1, 3, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(580, 2020580, "Earl Giselbert", "Mazzia Vedeniktov", "2020580@universdiad.edu.com", "gvedeniktov5s@redcross.org", "10 246 871 948", "xbeghT", "954 779 332", 1, 1, 51, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(581, 2020581, "Farleigh Gran", "McCafferty Corbett", "2020581@universdiad.edu.com", "gcorbetthq@businessweek.com", "4 274 766 168", "SI2PkR", "646 918 227", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(582, 2020582, "Jase Godfree", "McCaffrey Krishtopaittis", "2020582@universdiad.edu.com", "gkrishtopaittisla@mit.edu", "6 273 234 693", "Im8hfn", "740 801 326", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(583, 2020583, "Percival Edward", "McCloud Archambault", "2020583@universdiad.edu.com", "earchambaultf7@mashable.com", "5 867 642 238", "UXpd7Z", "670 424 787", 1, 2, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(584, 2020584, "Doug Alexio", "McCool Dell Casa", "2020584@universdiad.edu.com", "adellcasai6@nasa.gov", "10 109 687 279", "ueOVte", "736 684 849", 1, 2, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(585, 2020585, "Bertha Dorise", "McCowen Stitcher", "2020585@universdiad.edu.com", "dstitchercg@meetup.com", "2 607 911 672", "uKA33L", "431 644 932", 2, 4, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(586, 2020586, "Emlynn Marja", "McCullagh McElane", "2020586@universdiad.edu.com", "mmcelanepo@admin.ch", "3 382 767 990", "x3unDi", "850 577 114", 2, 5, 26, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(587, 2020587, "Clarance Ali", "McDoual Cappel", "2020587@universdiad.edu.com", "acappel5l@imageshack.us", "4 234 280 505", "fbaXev", "218 710 305", 1, 3, 25, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(588, 2020588, "Kleon Waite", "McGilleghole Dominighi", "2020588@universdiad.edu.com", "wdominighipl@java.com", "6 748 875 363", "zaJLk6", "697 238 710", 1, 3, 2, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(589, 2020589, "Alaster Gregory", "McGlynn Masden", "2020589@universdiad.edu.com", "gmasdengf@hugedomains.com", "1 880 204 320", "jAyFJE", "315 523 214", 1, 2, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(590, 2020590, "Ashia Lark", "McIlmorow Fruser", "2020590@universdiad.edu.com", "lfruserql@economist.com", "7 531 323 745", "G5eLPA", "805 550 165", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(591, 2020591, "Donnajean Arlen", "McKennan Skeen", "2020591@universdiad.edu.com", "askeenbv@zdnet.com", "3 388 449 470", "Kvr45s", "961 792 775", 2, 4, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(592, 2020592, "Carly Dagmar", "McKenny Curnnokk", "2020592@universdiad.edu.com", "dcurnnokkrn@paginegialle.it", "10 781 367 842", "6V5tUg", "256 783 980", 2, 5, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(593, 2020593, "Frances Phyllida", "McLagan Fussie", "2020593@universdiad.edu.com", "pfussiepn@ted.com", "8 411 582 438", "0Y5uFi", "623 614 489", 2, 5, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(594, 2020594, "Brendin Krisha", "Mcmanaman Kippie", "2020594@universdiad.edu.com", "kkippie72@gravatar.com", "1 257 170 787", "NESOct", "880 722 207", 1, 5, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(595, 2020595, "Gage Harwilll", "McNaughton McIllroy", "2020595@universdiad.edu.com", "hmcillroymv@reddit.com", "7 563 321 367", "BboBdI", "689 174 622", 1, 4, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(596, 2020596, "Burt Jedd", "McNirlan Guerrazzi", "2020596@universdiad.edu.com", "jguerrazzi9o@dot.gov", "2 513 580 378", "BgiVtF", "944 183 819", 1, 5, 71, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(597, 2020597, "Genvieve Carolee", "McTrustrie Fones", "2020597@universdiad.edu.com", "cfoneser@issuu.com", "4 881 533 516", "ToZrgO", "631 173 462", 2, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(598, 2020598, "Christopher Muffin", "McVanamy Ronchka", "2020598@universdiad.edu.com", "mronchkaj9@ucoz.ru", "4 872 848 543", "N5vuo5", "392 908 670", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(599, 2020599, "Mayer Howard", "Meace Moxom", "2020599@universdiad.edu.com", "hmoxoma3@amazon.co.uk", "10 527 727 701", "GrHvlW", "735 734 392", 1, 3, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(600, 2020600, "Sibel Liz", "Medmore Gwynn", "2020600@universdiad.edu.com", "lgwynnoi@ucla.edu", "9 670 942 151", "Fsgjwt", "209 488 630", 2, 2, 69, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(601, 2020601, "Fergus Collin", "Meechan Julien", "2020601@universdiad.edu.com", "cjuliena8@cargocollective.com", "9 350 131 356", "iIfrkI", "853 850 270", 1, 1, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(602, 2020602, "Siward Salomon", "Melan Kimmins", "2020602@universdiad.edu.com", "skimmins90@wunderground.com", "5 187 888 269", "c34J4C", "363 322 197", 1, 3, 18, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(603, 2020603, "Cassaundra Noellyn", "Melato Lahiff", "2020603@universdiad.edu.com", "nlahiffo9@utexas.edu", "6 278 466 937", "cvrEGy", "108 291 777", 2, 2, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(604, 2020604, "Melloney Vittoria", "Melato Jakubowicz", "2020604@universdiad.edu.com", "vjakubowiczr4@is.gd", "7 908 768 512", "u6xfAH", "148 709 664", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(605, 2020605, "Lovell Nevins", "Melmoth Manderson", "2020605@universdiad.edu.com", "nmandersonhk@scientificamerican.com", "5 895 331 582", "s0708d", "145 571 422", 1, 3, 109, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(606, 2020606, "Camey Steffen", "Meneux Dow", "2020606@universdiad.edu.com", "sdowqj@reddit.com", "7 838 876 577", "cnNrua", "645 420 611", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(607, 2020607, "Barrett Charlton", "Menilove Tosh", "2020607@universdiad.edu.com", "ctoshdb@ifeng.com", "4 157 503 413", "YaLFeo", "499 818 434", 1, 2, 9, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(608, 2020608, "Dillie Aldin", "Merner Glaisner", "2020608@universdiad.edu.com", "aglaisneray@csmonitor.com", "8 604 537 554", "yz8VUZ", "674 733 864", 1, 2, 68, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(609, 2020609, "Gabriella Maryjo", "Middlemiss Penni", "2020609@universdiad.edu.com", "mpennio6@patch.com", "5 441 211 696", "F5jkRC", "340 900 297", 2, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(610, 2020610, "Jerrilyn Julianna", "Midner Penhaligon", "2020610@universdiad.edu.com", "jpenhaligonov@bbb.org", "5 575 654 197", "kySDqA", "138 113 465", 2, 4, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(611, 2020611, "Mathe Wolfgang", "Milius Peaple", "2020611@universdiad.edu.com", "wpeaple1d@newsvine.com", "10 812 545 932", "Q3qZfs", "494 727 986", 1, 2, 110, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(612, 2020612, "Brendis Trumaine", "Millen Brakewell", "2020612@universdiad.edu.com", "tbrakewellpg@bbc.co.uk", "6 227 954 520", "ADFy42", "281 610 139", 1, 4, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(613, 2020613, "Lennie Farley", "Millett Stoller", "2020613@universdiad.edu.com", "fstollerou@yale.edu", "7 518 711 691", "Jp0Ytk", "513 804 709", 1, 3, 87, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(614, 2020614, "Sinclare Ikey", "Milvarnie Duxbury", "2020614@universdiad.edu.com", "iduxburylv@epa.gov", "9 544 563 310", "tsOPJu", "203 189 797", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(615, 2020615, "Ferdinande Janina", "Minchella Le Strange", "2020615@universdiad.edu.com", "jlestrange2o@liveinternet.ru", "5 353 490 382", "kNnmtq", "564 909 468", 2, 4, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(616, 2020616, "Ernestus Artus", "Mincini Albarez", "2020616@universdiad.edu.com", "aalbarezfo@illinois.edu", "5 812 440 947", "Udy0sm", "619 830 897", 1, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(617, 2020617, "Dallas Bryn", "Mitchall Paolone", "2020617@universdiad.edu.com", "bpaoloneh2@istockphoto.com", "7 330 248 164", "XUM8W1", "930 902 805", 1, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(618, 2020618, "Fredelia Allianora", "Mitskevich Bethel", "2020618@universdiad.edu.com", "abethel3h@mit.edu", "7 538 325 509", "oDdlfV", "705 760 737", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(619, 2020619, "Berkley Kristos", "Moakler Honniebal", "2020619@universdiad.edu.com", "khonniebalfe@cdc.gov", "4 867 279 987", "YhHKjU", "397 211 518", 1, 5, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(620, 2020620, "Patience Nari", "Moncey Klausen", "2020620@universdiad.edu.com", "nklausenpy@independent.co.uk", "10 618 443 627", "IcCF0g", "657 104 374", 2, 1, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(621, 2020621, "Mervin Torrence", "Monro Cardon", "2020621@universdiad.edu.com", "tcardone1@ucoz.ru", "8 405 111 204", "M3i3Gq", "593 981 414", 1, 4, 47, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(622, 2020622, "Hadria Nicole", "Moralee Malyon", "2020622@universdiad.edu.com", "nmalyonjm@thetimes.co.uk", "9 139 565 354", "M7Yz9c", "128 142 634", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(623, 2020623, "Griffie Lester", "Moreno Petris", "2020623@universdiad.edu.com", "lpetriskv@drupal.org", "6 114 154 422", "7ffbPV", "436 653 940", 1, 2, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(624, 2020624, "Andie Barron", "Mosedall Blitz", "2020624@universdiad.edu.com", "bblitz7t@state.gov", "4 842 629 472", "bP1tso", "404 141 694", 1, 3, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(625, 2020625, "Lizette Melisenda", "Mosley Mackiewicz", "2020625@universdiad.edu.com", "mmackiewiczb6@symantec.com", "6 137 835 122", "UNVT06", "759 968 155", 2, 4, 15, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(626, 2020626, "Darnall Hercule", "Motto Theurer", "2020626@universdiad.edu.com", "htheurerqq@prnewswire.com", "9 886 378 245", "hVNpND", "464 252 885", 1, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(627, 2020627, "Augustine Ichabod", "Mound Andreini", "2020627@universdiad.edu.com", "iandreini3k@stanford.edu", "5 980 570 674", "Teo8HR", "999 340 286", 1, 3, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(628, 2020628, "Alvin Chip", "Mountjoy Layfield", "2020628@universdiad.edu.com", "clayfieldke@spotify.com", "3 161 573 541", "WkaAyX", "760 520 553", 1, 4, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(629, 2020629, "Willey Shepard", "Mountney Deverill", "2020629@universdiad.edu.com", "sdeverillos@cloudflare.com", "9 991 710 552", "CEEpSL", "955 153 691", 1, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(630, 2020630, "Cacilie Rhoda", "Mozzi Godfroy", "2020630@universdiad.edu.com", "rgodfroyrb@buzzfeed.com", "2 176 247 821", "7Blyrr", "776 661 351", 2, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(631, 2020631, "Irv Chaunce", "Mullett Stanluck", "2020631@universdiad.edu.com", "cstanluckrg@vistaprint.com", "8 422 494 862", "AqlxDe", "880 230 607", 1, 2, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(632, 2020632, "Gray Rodrique", "Munden Ibeson", "2020632@universdiad.edu.com", "ribesonnl@t.co", "7 157 859 554", "LfR4BO", "625 514 855", 1, 4, 46, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(633, 2020633, "Tomas Weber", "Murby Philippard", "2020633@universdiad.edu.com", "wphilippard98@about.me", "8 251 668 507", "jtTISW", "599 262 359", 1, 5, 48, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(634, 2020634, "Blancha Jolyn", "Murcott Hubbard", "2020634@universdiad.edu.com", "jhubbardaf@princeton.edu", "9 456 852 756", "6DslwX", "249 219 492", 2, 1, 107, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(635, 2020635, "Neill Freemon", "Murphy Mengue", "2020635@universdiad.edu.com", "fmengue8a@xinhuanet.com", "9 663 122 736", "EqQZv5", "626 762 563", 1, 1, 76, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(636, 2020636, "Amabel Daniele", "Murrish Mosedill", "2020636@universdiad.edu.com", "dmosedillei@biblegateway.com", "7 360 457 123", "TPsNQJ", "597 902 888", 2, 3, 71, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(637, 2020637, "Seline Alberta", "Napoli Dilawey", "2020637@universdiad.edu.com", "adilawey16@baidu.com", "8 799 781 998", "vMSUtD", "352 171 503", 2, 4, 52, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(638, 2020638, "Enoch Salvador", "Nardoni Tranckle", "2020638@universdiad.edu.com", "stranckleod@wikimedia.org", "7 468 473 815", "mb9t9A", "939 427 318", 1, 3, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(639, 2020639, "Ashlee Laurette", "Naulty Pelchat", "2020639@universdiad.edu.com", "lpelchat87@imageshack.us", "1 920 759 500", "0Yh0Ge", "775 457 279", 2, 2, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(640, 2020640, "Joseph Jarrid", "Negro Sherman", "2020640@universdiad.edu.com", "jsherman63@multiply.com", "3 466 345 620", "Mk4xAi", "482 434 422", 1, 2, 98, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(641, 2020641, "Dionis Meredith", "Nelm Ivushkin", "2020641@universdiad.edu.com", "mivushkinml@ifeng.com", "3 942 282 618", "sv9kk4", "662 638 298", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(642, 2020642, "Giff Vinny", "Nelmes Adriaan", "2020642@universdiad.edu.com", "vadriaan6u@sciencedirect.com", "2 676 828 648", "ivHs8Q", "124 474 343", 1, 5, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(643, 2020643, "Frazier Micah", "Newlan Fourmy", "2020643@universdiad.edu.com", "mfourmy43@xrea.com", "10 316 971 824", "Z3Kw0q", "773 408 327", 1, 5, 111, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(644, 2020644, "Alisa Vitia", "Nickols Tanswell", "2020644@universdiad.edu.com", "vtanswellgp@g.co", "9 382 402 698", "CeREVN", "681 660 826", 2, 4, 112, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(645, 2020645, "Cammy Zak", "Noell Tebbet", "2020645@universdiad.edu.com", "ztebbetmr@nifty.com", "4 748 197 224", "ewT0jO", "698 830 897", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(646, 2020646, "Hammad Brion", "Northey Debill", "2020646@universdiad.edu.com", "bdebilljh@wufoo.com", "8 447 908 121", "bpTxlG", "136 454 619", 1, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(647, 2020647, "Tina Allissa", "Nuschke Pearson", "2020647@universdiad.edu.com", "apearson52@jiathis.com", "5 301 755 241", "gvKEzA", "863 780 541", 2, 5, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(648, 2020648, "Ichabod Martainn", "O' Sullivan Spykings", "2020648@universdiad.edu.com", "mspykings2n@spotify.com", "7 594 918 990", "EBLNI4", "369 648 458", 1, 3, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(649, 2020649, "Margaux Tory", "O'Beirne Allpress", "2020649@universdiad.edu.com", "tallpressmc@technorati.com", "7 235 727 838", "xLSdH3", "349 451 748", 2, 5, 56, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(650, 2020650, "Georgeanne Anica", "O'Breen Knoller", "2020650@universdiad.edu.com", "aknollerfb@tinyurl.com", "2 860 445 336", "4uMe0P", "939 840 406", 2, 2, 113, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(651, 2020651, "Tiffanie Emmalee", "O'Day Mullinder", "2020651@universdiad.edu.com", "emullinder5u@npr.org", "7 622 867 761", "WkR5Xj", "332 146 309", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(652, 2020652, "Cassius Field", "O'Dwyer Braywood", "2020652@universdiad.edu.com", "fbraywood1t@soundcloud.com", "4 464 992 604", "gOPiHy", "867 853 942", 1, 5, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(653, 2020653, "Audrye Marylynne", "O'Mailey Griston", "2020653@universdiad.edu.com", "mgriston8n@feedburner.com", "3 106 533 595", "LQgEjc", "350 962 850", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(654, 2020654, "Luz Anna-diana", "O'Neary Denziloe", "2020654@universdiad.edu.com", "adenziloej@facebook.com", "10 209 682 620", "WeGfQI", "149 194 864", 2, 4, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(655, 2020655, "Lennard Dun", "O'Shevlin Koubek", "2020655@universdiad.edu.com", "dkoubek23@nasa.gov", "3 498 452 762", "gLUOUX", "452 859 933", 1, 2, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(656, 2020656, "Briant Jerald", "Oldknow Waye", "2020656@universdiad.edu.com", "jwayeq2@trellian.com", "3 370 533 885", "IfT77I", "586 264 997", 1, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(657, 2020657, "Teddy Perice", "Oldland Dunbobbin", "2020657@universdiad.edu.com", "pdunbobbini3@free.fr", "1 728 928 311", "hpMbTv", "646 899 356", 1, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(658, 2020658, "Bryana Mavra", "Olkowicz Kinsley", "2020658@universdiad.edu.com", "mkinsleykx@scientificamerican.com", "2 910 107 468", "JdN5FW", "187 546 664", 2, 1, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(659, 2020659, "Halsy Merrel", "Ollie Shevlin", "2020659@universdiad.edu.com", "mshevlin8c@liveinternet.ru", "6 393 949 531", "IkgiVw", "257 969 269", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(660, 2020660, "Grissel Brandy", "Olyet Balden", "2020660@universdiad.edu.com", "bbaldenmq@jimdo.com", "3 264 375 642", "C5F6b2", "486 701 910", 2, 3, 114, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(661, 2020661, "Lock Kendricks", "Olyonov Sims", "2020661@universdiad.edu.com", "ksimsx@who.int", "10 522 571 655", "yb42ky", "177 914 167", 1, 3, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(662, 2020662, "Corrinne Carissa", "Oppy Rowth", "2020662@universdiad.edu.com", "crowthgi@canalblog.com", "9 184 127 451", "BrQw30", "286 216 817", 2, 2, 14, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(663, 2020663, "Bernette Ronnica", "Orbine Lemm", "2020663@universdiad.edu.com", "rlemm3b@youtu.be", "2 106 597 970", "mYeSLN", "201 754 600", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(664, 2020664, "Maisey Timi", "Orth Danshin", "2020664@universdiad.edu.com", "tdanshinci@google.nl", "5 946 725 288", "RUe47Y", "522 568 374", 2, 4, 11, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(665, 2020665, "Margarette Lida", "Ortler Vasyagin", "2020665@universdiad.edu.com", "lvasyagin3o@ameblo.jp", "8 835 214 726", "9PGfqI", "701 193 319", 2, 1, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(666, 2020666, "Tadd Morten", "Ossenna Bradd", "2020666@universdiad.edu.com", "mbradd1h@ca.gov", "7 836 489 370", "fHXQmB", "598 490 167", 1, 5, 108, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(667, 2020667, "Yuri Artie", "Oulett Lewinton", "2020667@universdiad.edu.com", "alewintonao@live.com", "5 502 540 274", "2SZf4F", "515 121 384", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(668, 2020668, "Grady Walsh", "Oulett Gallatly", "2020668@universdiad.edu.com", "wgallatlydh@twitter.com", "7 705 914 420", "S3uC5J", "713 593 471", 1, 4, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(669, 2020669, "Prudence Kanya", "Owlner Sopper", "2020669@universdiad.edu.com", "ksopperi7@bizjournals.com", "6 664 531 190", "xSZIrb", "694 854 635", 2, 4, 74, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(670, 2020670, "Vassili Noel", "Paddell Chese", "2020670@universdiad.edu.com", "nchese2k@altervista.org", "1 347 174 104", "ea2Ghg", "635 440 624", 1, 1, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(671, 2020671, "Ann-marie Dorolisa", "Paeckmeyer Hamblington", "2020671@universdiad.edu.com", "dhamblington8v@freewebs.com", "4 447 702 236", "GFuDtt", "854 789 443", 2, 3, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(672, 2020672, "Trevar Augy", "Pakenham Thornbarrow", "2020672@universdiad.edu.com", "athornbarrow25@angelfire.com", "4 986 434 373", "sZYFlK", "148 649 859", 1, 4, 51, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(673, 2020673, "Barny Rooney", "Palia Kingzet", "2020673@universdiad.edu.com", "rkingzet7c@1688.com", "10 878 201 263", "CW14km", "331 322 626", 1, 1, 115, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(674, 2020674, "Nickolaus Alasdair", "Paolazzi Oran", "2020674@universdiad.edu.com", "aoranmx@hatena.ne.jp", "7 607 882 742", "XnMBnc", "298 112 666", 1, 4, 87, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(675, 2020675, "Nils Constantino", "Paradyce Masterson", "2020675@universdiad.edu.com", "cmastersonj4@constantcontact.com", "5 927 318 498", "YvqPAH", "218 149 728", 1, 1, 97, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(676, 2020676, "Marris Lexy", "Pardi Wardrope", "2020676@universdiad.edu.com", "lwardropeh3@google.cn", "4 642 774 261", "MKGD4r", "654 195 644", 2, 2, 101, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(677, 2020677, "Marybelle Cecelia", "Parzis Littefair", "2020677@universdiad.edu.com", "clittefairm3@cmu.edu", "5 961 501 527", "4oEGf0", "185 759 525", 2, 2, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(678, 2020678, "Siobhan Claudina", "Pasquale Feaveryear", "2020678@universdiad.edu.com", "cfeaveryeara7@fc2.com", "1 285 218 259", "JvcC5f", "420 212 320", 2, 3, 75, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(679, 2020679, "Yorker Zebulon", "Patchett Jerrold", "2020679@universdiad.edu.com", "zjerroldgu@buzzfeed.com", "7 168 323 395", "U7jloV", "385 851 415", 1, 2, 34, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(680, 2020680, "Filberto Davy", "Patterson Golagley", "2020680@universdiad.edu.com", "dgolagley58@nymag.com", "6 901 655 637", "sT4sh3", "166 185 151", 1, 5, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(681, 2020681, "Venus Corenda", "Pauel Haseman", "2020681@universdiad.edu.com", "chasemanqf@studiopress.com", "1 263 965 612", "OCakeE", "486 621 359", 2, 5, 76, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(682, 2020682, "Lindy Lettie", "Pauletto Tann", "2020682@universdiad.edu.com", "ltannjy@elpais.com", "8 939 903 266", "ZnuoQj", "191 182 803", 2, 5, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(683, 2020683, "Gabriell Melodee", "Pautard Geal", "2020683@universdiad.edu.com", "mgealag@sphinn.com", "3 327 810 388", "0sHoNR", "988 249 788", 2, 5, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(684, 2020684, "Bonnibelle Charlotta", "Peart Wedgbrow", "2020684@universdiad.edu.com", "cwedgbrowpp@weebly.com", "4 253 382 228", "gL2bKF", "515 958 213", 2, 3, 11, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(685, 2020685, "Hilton Ward", "Pecht Sawford", "2020685@universdiad.edu.com", "wsawfordjz@ucoz.ru", "1 304 709 485", "7r87bT", "450 209 134", 1, 3, 77, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(686, 2020686, "Dalton Symon", "Pegram McIleen", "2020686@universdiad.edu.com", "smcileenlf@tiny.cc", "9 981 959 418", "WRbq58", "797 225 703", 1, 5, 52, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(687, 2020687, "Huberto Waylin", "Pendlebury Mair", "2020687@universdiad.edu.com", "wmair48@reverbnation.com", "4 921 552 843", "cmLsSY", "287 118 345", 1, 2, 15, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(688, 2020688, "Gavin Tammy", "Pendre Kesby", "2020688@universdiad.edu.com", "tkesbygn@cisco.com", "1 236 569 651", "BFqces", "140 241 282", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(689, 2020689, "Jolyn Velma", "Penhaleurack Maylin", "2020689@universdiad.edu.com", "vmaylinkb@ebay.com", "7 830 744 878", "1MEfsz", "250 479 926", 2, 5, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(690, 2020690, "Dannie Shelba", "Penn Espadas", "2020690@universdiad.edu.com", "sespadasel@craigslist.org", "2 719 204 974", "GeE0FK", "381 792 427", 2, 1, 104, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(691, 2020691, "Elena Demetria", "Pentony Ogilvie", "2020691@universdiad.edu.com", "dogilviepd@theglobeandmail.com", "4 743 437 796", "tfkEED", "700 735 514", 2, 5, 84, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(692, 2020692, "Cory Sam", "Peracco Ord", "2020692@universdiad.edu.com", "sordr9@weebly.com", "6 152 465 909", "xMS5kl", "751 560 931", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(693, 2020693, "Helyn Malynda", "Percy Greenan", "2020693@universdiad.edu.com", "mgreenank9@nbcnews.com", "4 681 590 944", "cbCWMx", "184 636 305", 2, 1, 15, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(694, 2020694, "Zelig Mitchell", "Perrigo Ellacombe", "2020694@universdiad.edu.com", "mellacombenh@lycos.com", "3 364 538 611", "8DHXWu", "288 143 601", 1, 5, 9, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(695, 2020695, "Dun Porty", "Perritt Cassius", "2020695@universdiad.edu.com", "pcassiusbm@kickstarter.com", "9 230 233 382", "PjNdaf", "179 889 755", 1, 5, 116, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(696, 2020696, "Georgeanna Vivianne", "Pescud Heaviside", "2020696@universdiad.edu.com", "vheavisideds@mlb.com", "9 734 996 333", "2ULm3K", "804 293 909", 2, 3, 49, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(697, 2020697, "Irvine Leonerd", "Pethrick Lanceter", "2020697@universdiad.edu.com", "llanceterho@paypal.com", "9 187 749 954", "kNwjWD", "884 485 827", 1, 2, 28, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(698, 2020698, "Herman Lorenzo", "Petric Charlton", "2020698@universdiad.edu.com", "lcharlton84@cornell.edu", "10 216 505 518", "mf4Lhd", "308 640 484", 1, 4, 38, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(699, 2020699, "Frederich Baillie", "Petrov Mathey", "2020699@universdiad.edu.com", "bmathey7o@cocolog-nifty.com", "7 232 271 596", "dndSD4", "278 333 389", 1, 3, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(700, 2020700, "Wilfred Franciskus", "Petrovsky Coupar", "2020700@universdiad.edu.com", "fcoupar2c@about.me", "7 242 601 515", "WUWlzo", "859 168 287", 1, 5, 2, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(701, 2020701, "Bail Fabe", "Petz Veltmann", "2020701@universdiad.edu.com", "fveltmann55@paginegialle.it", "8 782 639 469", "WEBBTS", "665 256 149", 1, 1, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(702, 2020702, "Arielle Libbi", "Phalp Tugman", "2020702@universdiad.edu.com", "ltugman7y@fema.gov", "9 230 834 146", "koUOxt", "837 368 708", 2, 3, 80, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(703, 2020703, "Grace Charmain", "Pharaoh Palmer", "2020703@universdiad.edu.com", "cpalmerp1@wiley.com", "4 181 723 632", "tDcrb1", "460 838 991", 2, 3, 117, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(704, 2020704, "Johny Darrel", "Phebey Bachanski", "2020704@universdiad.edu.com", "dbachanskikp@admin.ch", "5 421 303 603", "vjx26p", "848 223 748", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(705, 2020705, "Zollie Micheal", "Philippault Sclanders", "2020705@universdiad.edu.com", "msclanders59@bloglines.com", "7 673 498 575", "ga4u6H", "215 709 390", 1, 1, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(706, 2020706, "Delano Shell", "Philippault Cowins", "2020706@universdiad.edu.com", "scowinsl6@ameblo.jp", "10 125 428 493", "hn8MRP", "560 250 786", 1, 2, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(707, 2020707, "Davon Temple", "Piens Keoghan", "2020707@universdiad.edu.com", "tkeoghannf@xing.com", "1 459 276 862", "2NNycg", "503 361 619", 1, 3, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(708, 2020708, "Clayborne Alessandro", "Pietasch Gosnall", "2020708@universdiad.edu.com", "agosnallkr@edublogs.org", "1 455 570 541", "hS6BON", "586 986 273", 1, 4, 118, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(709, 2020709, "Jose Tristan", "Piffe Jonsson", "2020709@universdiad.edu.com", "tjonssonn3@ameblo.jp", "6 652 147 801", "YE8Wzy", "985 559 269", 1, 5, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(710, 2020710, "Herschel Wolfy", "Pinkard Tunna", "2020710@universdiad.edu.com", "wtunna5m@cbslocal.com", "10 885 104 102", "zDkyQz", "393 163 323", 1, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(711, 2020711, "Carly Ailbert", "Pinner Vescovo", "2020711@universdiad.edu.com", "avescovob8@ox.ac.uk", "2 830 133 880", "yDLQlX", "408 268 272", 1, 2, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(712, 2020712, "Gayelord Glenn", "Pinniger McCool", "2020712@universdiad.edu.com", "gmccoolmo@indiatimes.com", "5 447 608 812", "8wyVic", "229 790 913", 1, 3, 47, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(713, 2020713, "Stephen Pepe", "Pippard Solleme", "2020713@universdiad.edu.com", "psollemenb@oracle.com", "7 633 978 403", "0pQ6aJ", "461 358 874", 1, 5, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(714, 2020714, "Aviva Pam", "Pirri Barrowclough", "2020714@universdiad.edu.com", "pbarrowcloughdl@washingtonpost.com", "10 462 442 195", "WPrtAA", "451 196 318", 2, 5, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(715, 2020715, "Prissie Celie", "Piscopello Yurkevich", "2020715@universdiad.edu.com", "cyurkevichc4@cbslocal.com", "8 846 410 454", "qoIAPM", "883 625 215", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(716, 2020716, "Christiane Wanids", "Piser Ferrai", "2020716@universdiad.edu.com", "wferraiih@surveymonkey.com", "3 114 381 223", "3f2BIZ", "106 246 721", 2, 3, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(717, 2020717, "Khalil Elias", "Pistol Ephgrave", "2020717@universdiad.edu.com", "eephgrave37@sciencedirect.com", "6 968 467 585", "RPWZqk", "346 668 234", 1, 2, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(718, 2020718, "Marlowe Shalom", "Pitchford Seale", "2020718@universdiad.edu.com", "sseale2h@npr.org", "2 458 797 751", "PXnYyN", "875 293 314", 1, 1, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(719, 2020719, "Christa Joellen", "Pittendreigh Winstone", "2020719@universdiad.edu.com", "jwinstonega@xing.com", "8 798 620 437", "8pHC4I", "711 183 949", 2, 1, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(720, 2020720, "Stanton Dionisio", "Pitts Renackowna", "2020720@universdiad.edu.com", "drenackownafm@reverbnation.com", "8 601 823 283", "y6fGV2", "436 351 755", 1, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(721, 2020721, "Malinde Darlene", "Plait Giraudat", "2020721@universdiad.edu.com", "dgiraudatma@squidoo.com", "5 764 501 300", "zKIdzf", "973 816 334", 2, 3, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(722, 2020722, "Erminie Ilse", "Poate Alvarado", "2020722@universdiad.edu.com", "ialvaradob9@oakley.com", "4 798 316 692", "Pi6xJM", "447 288 486", 2, 3, 48, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(723, 2020723, "Joannes Rikki", "Pohling Cronchey", "2020723@universdiad.edu.com", "rcroncheygz@typepad.com", "5 326 786 818", "DsMKv2", "906 740 152", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(724, 2020724, "Courtney Guillermo", "Polhill Hundal", "2020724@universdiad.edu.com", "ghundale7@indiatimes.com", "3 288 512 259", "H5SQXG", "893 692 136", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(725, 2020725, "Georgy Lambert", "Popplewell Goode", "2020725@universdiad.edu.com", "lgooden1@wikispaces.com", "10 270 349 969", "BKG5ID", "345 352 690", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(726, 2020726, "Benetta Davida", "Posselwhite Roughey", "2020726@universdiad.edu.com", "droughey75@tumblr.com", "7 594 270 794", "lbkoeU", "667 736 270", 2, 4, 83, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(727, 2020727, "Giacobo Linoel", "Postans Edwicker", "2020727@universdiad.edu.com", "ledwickerew@sbwire.com", "7 772 312 398", "mNQ9Uz", "187 832 131", 1, 2, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(728, 2020728, "Kristina Margery", "Povall Tidbold", "2020728@universdiad.edu.com", "mtidboldie@arizona.edu", "9 668 168 344", "IKENSF", "538 928 797", 2, 3, 96, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(729, 2020729, "Cristin Bernetta", "Pow Petrollo", "2020729@universdiad.edu.com", "bpetrollo9p@vk.com", "1 785 607 855", "yeiQ5M", "844 727 607", 2, 3, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(730, 2020730, "Maurice Ashlin", "Powelee Milsted", "2020730@universdiad.edu.com", "amilstedn7@ed.gov", "1 610 175 412", "734RJJ", "207 510 247", 1, 3, 35, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(731, 2020731, "Walliw Olenka", "Powley Iacovaccio", "2020731@universdiad.edu.com", "oiacovacciofz@furl.net", "3 593 677 490", "TrCcGr", "414 378 241", 2, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(732, 2020732, "Jocelyne Ailey", "Poyser Spirritt", "2020732@universdiad.edu.com", "aspirritt30@csmonitor.com", "1 837 301 599", "9ngHgd", "537 231 818", 2, 1, 119, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(733, 2020733, "Berny Bill", "Pozzi Bunch", "2020733@universdiad.edu.com", "bbunchok@nhs.uk", "6 557 598 700", "HQSJZS", "809 674 201", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(734, 2020734, "Katrinka Willyt", "Prati Yitzhok", "2020734@universdiad.edu.com", "wyitzhoknu@devhub.com", "1 806 407 800", "ycNV4T", "443 760 415", 2, 3, 71, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(735, 2020735, "Pincus Dalli", "Pressnell Bly", "2020735@universdiad.edu.com", "dblyp@cnbc.com", "1 682 612 356", "eEf35R", "712 111 255", 1, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(736, 2020736, "Sax Ruprecht", "Priddy Primett", "2020736@universdiad.edu.com", "rprimettu@latimes.com", "7 304 493 940", "KOIN0x", "707 161 677", 1, 3, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(737, 2020737, "Ricardo Caz", "Priddy Flag", "2020737@universdiad.edu.com", "cflagey@webeden.co.uk", "3 955 701 859", "DC5KVt", "602 566 501", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(738, 2020738, "Cortney Mallorie", "Priestman McGahern", "2020738@universdiad.edu.com", "mmcgahernh0@mac.com", "8 698 845 521", "FmcjHg", "947 704 538", 2, 3, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(739, 2020739, "Lishe Becki", "Probyn Behling", "2020739@universdiad.edu.com", "bbehling2r@chronoengine.com", "5 551 623 152", "giPKXs", "524 517 256", 2, 4, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(740, 2020740, "Guthrie Conant", "Pudge Marquess", "2020740@universdiad.edu.com", "cmarquessf9@apache.org", "10 478 340 734", "n4lZSR", "962 814 272", 1, 1, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(741, 2020741, "Daisie Inga", "Pughe Webborn", "2020741@universdiad.edu.com", "iwebbornnn@mozilla.com", "8 318 749 313", "xhy2eo", "990 703 801", 2, 3, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(742, 2020742, "Danica Illa", "Pulteneye Batstone", "2020742@universdiad.edu.com", "ibatstone3j@wufoo.com", "10 151 851 316", "nVbmoI", "373 367 140", 2, 1, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(743, 2020743, "Sherwin Hamnet", "Purcell Aindrais", "2020743@universdiad.edu.com", "haindraisk4@bbb.org", "6 502 512 679", "XfQKFj", "638 827 278", 1, 1, 26, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(744, 2020744, "Vite Bil", "Purrier Burl", "2020744@universdiad.edu.com", "bburl8d@sphinn.com", "10 883 776 564", "DpgbHJ", "504 561 172", 1, 5, 120, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(745, 2020745, "Francesca Kacie", "Purse Gilliatt", "2020745@universdiad.edu.com", "kgilliatt56@scribd.com", "7 580 540 546", "sdfuVZ", "210 750 111", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(746, 2020746, "Bella Bird", "Puttan Alman", "2020746@universdiad.edu.com", "balman3i@booking.com", "7 642 480 648", "WLQJzx", "602 247 177", 2, 3, 121, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(747, 2020747, "Allie Joelie", "Python Lummus", "2020747@universdiad.edu.com", "jlummus5p@ihg.com", "5 624 540 933", "lHUr8a", "646 330 545", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(748, 2020748, "Dexter Alphonse", "Qualtro Charlo", "2020748@universdiad.edu.com", "acharloom@mapy.cz", "2 266 595 134", "3uBw1C", "435 537 380", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(749, 2020749, "Adiana Delcina", "Quarrell Wawer", "2020749@universdiad.edu.com", "dwawer2x@senate.gov", "9 766 584 482", "t2XA6d", "482 254 946", 2, 3, 35, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(750, 2020750, "Stoddard Angel", "Quarry Grigoriscu", "2020750@universdiad.edu.com", "agrigoriscu2u@bbc.co.uk", "1 557 415 253", "CepsMj", "729 422 898", 2, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(751, 2020751, "Ilsa Dolly", "Quene Troyes", "2020751@universdiad.edu.com", "dtroyes4k@yandex.ru", "2 209 931 871", "McWS8d", "657 333 702", 2, 5, 11, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(752, 2020752, "Athena Kellie", "Quinn Dow", "2020752@universdiad.edu.com", "kdowhz@narod.ru", "10 819 593 413", "ksh2Gz", "479 287 339", 2, 2, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(753, 2020753, "Pernell Durward", "Rabbitts Blazejewski", "2020753@universdiad.edu.com", "dblazejewskiet@npr.org", "9 332 929 726", "qh3ckg", "682 450 169", 1, 5, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(754, 2020754, "Burgess Sammy", "Raddan Marfield", "2020754@universdiad.edu.com", "smarfield3e@github.com", "10 277 512 375", "JjqrAs", "926 800 506", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(755, 2020755, "De witt Wood", "Radenhurst Baugham", "2020755@universdiad.edu.com", "wbaugham64@constantcontact.com", "3 124 238 519", "mlGCYM", "769 101 239", 1, 4, 28, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(756, 2020756, "Gerek Cello", "Rainon Oneil", "2020756@universdiad.edu.com", "coneil6x@hud.gov", "8 442 715 389", "1gAVZP", "795 341 531", 1, 3, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(757, 2020757, "Gabriele Lukas", "Randle Basketfield", "2020757@universdiad.edu.com", "lbasketfieldk6@people.com.cn", "6 194 787 151", "OwI88t", "923 165 364", 1, 5, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(758, 2020758, "Paddy Reinaldos", "Rany Bruyett", "2020758@universdiad.edu.com", "rbruyett5a@domainmarket.com", "4 622 240 553", "qyqrcS", "411 326 796", 1, 3, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(759, 2020759, "Neil Fraser", "Rapper Twinbourne", "2020759@universdiad.edu.com", "ftwinbourneki@diigo.com", "7 680 531 595", "19WK1A", "818 274 491", 1, 5, 2, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(760, 2020760, "Vonni Constantine", "Rasper Lippard", "2020760@universdiad.edu.com", "clippardre@yellowpages.com", "9 166 217 737", "qUYmvW", "526 420 443", 2, 5, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(761, 2020761, "Jonell Leeanne", "Raun Viollet", "2020761@universdiad.edu.com", "lviolletck@princeton.edu", "4 683 224 196", "pgrYAP", "407 436 607", 2, 2, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(762, 2020762, "Taddeusz Berty", "Ravilious Ghest", "2020762@universdiad.edu.com", "bghest28@google.nl", "3 277 218 998", "w4gfSL", "958 481 531", 1, 3, 71, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(763, 2020763, "Fairlie Hoebart", "Raysdale Copo", "2020763@universdiad.edu.com", "hcopojp@si.edu", "10 557 535 392", "usiAAJ", "323 980 912", 1, 5, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(764, 2020764, "Reyna Dulciana", "Razzell Conechie", "2020764@universdiad.edu.com", "dconechiedr@taobao.com", "2 158 424 208", "SJHfWq", "773 655 913", 2, 3, 79, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(765, 2020765, "Teresita Theresita", "Reason Cashin", "2020765@universdiad.edu.com", "tcashinp8@java.com", "3 909 969 623", "zd8ezr", "964 982 310", 2, 3, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(766, 2020766, "Sibelle Jerrylee", "Reddyhoff Phythean", "2020766@universdiad.edu.com", "jphythean57@craigslist.org", "5 261 851 374", "w22bm7", "123 303 560", 2, 5, 122, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(767, 2020767, "Town Hershel", "Redwood Morando", "2020767@universdiad.edu.com", "hmorandonp@google.com.hk", "4 267 646 890", "NhWvGI", "910 561 229", 1, 5, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(768, 2020768, "Asia Rakel", "Reightley Lempke", "2020768@universdiad.edu.com", "rlempker1@tmall.com", "1 672 994 629", "s5fQlN", "266 259 114", 2, 1, 2, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(769, 2020769, "Ashby Martin", "Reihm Kemble", "2020769@universdiad.edu.com", "mkembleic@dailymotion.com", "3 547 114 846", "kkbavr", "592 748 617", 1, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(770, 2020770, "Callida Merline", "Renbold Mungin", "2020770@universdiad.edu.com", "mmungingx@constantcontact.com", "1 200 686 127", "VU14vd", "875 536 633", 2, 5, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(771, 2020771, "Hamlin Burk", "Revie Bewfield", "2020771@universdiad.edu.com", "bbewfieldm@ning.com", "2 246 567 198", "wqvgjg", "936 561 787", 1, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(772, 2020772, "Humphrey Aylmar", "Reynoollds Paladini", "2020772@universdiad.edu.com", "apaladiniq9@csmonitor.com", "3 267 296 400", "RM2hRi", "857 732 490", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(773, 2020773, "Patricio Rancell", "Rhodus Pauletto", "2020773@universdiad.edu.com", "rpaulettofh@springer.com", "6 450 314 584", "qXXnMM", "690 813 911", 1, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(774, 2020774, "Dedra Bertie", "Ribbon Duchesne", "2020774@universdiad.edu.com", "bduchesnecr@hostgator.com", "8 129 675 497", "XBO4sj", "939 239 368", 2, 1, 37, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(775, 2020775, "Gallard Delmer", "Ricardin Odams", "2020775@universdiad.edu.com", "dodamsnv@mozilla.org", "2 419 716 381", "SMxOlm", "362 665 731", 1, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(776, 2020776, "Carson Loren", "Richards Syvret", "2020776@universdiad.edu.com", "lsyvretku@ihg.com", "2 545 925 849", "UeQKYs", "179 515 597", 1, 5, 14, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(777, 2020777, "Auroora Consuela", "Richardt Gimbart", "2020777@universdiad.edu.com", "cgimbartb@elpais.com", "2 118 693 832", "Ru5zBb", "649 733 836", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(778, 2020778, "Riccardo Tucker", "Richmont Vanichkov", "2020778@universdiad.edu.com", "tvanichkovi5@ycombinator.com", "6 558 499 704", "IdsiIf", "290 987 611", 1, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(779, 2020779, "Kasper Ringo", "Rickwood Mapletoft", "2020779@universdiad.edu.com", "rmapletoftfw@guardian.co.uk", "4 630 160 125", "gMQYh1", "123 882 851", 1, 3, 39, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(780, 2020780, "Minda Jeane", "Rief Spilling", "2020780@universdiad.edu.com", "jspilling77@hc360.com", "8 934 887 881", "ROG2FN", "505 116 881", 2, 5, 123, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(781, 2020781, "Dalston Trent", "Riseborough Faunch", "2020781@universdiad.edu.com", "tfauncheb@yellowbook.com", "8 870 539 752", "aDSnlx", "962 954 715", 1, 5, 28, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(782, 2020782, "Marlene Aggy", "Rishbrook Fairley", "2020782@universdiad.edu.com", "afairleyp3@sohu.com", "2 180 176 265", "pP63jd", "150 265 226", 2, 2, 35, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(783, 2020783, "Linette Adelaide", "Roast Borrill", "2020783@universdiad.edu.com", "aborrill2g@home.pl", "1 990 179 317", "xfILpp", "484 201 963", 2, 2, 124, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(784, 2020784, "Catie Lanae", "Robathon Sawood", "2020784@universdiad.edu.com", "lsawoodon@furl.net", "7 762 737 167", "ojjpUV", "755 186 321", 2, 5, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(785, 2020785, "Blair Randolf", "Rodbourne Attew", "2020785@universdiad.edu.com", "rattew95@tiny.cc", "6 950 365 840", "jDiCmV", "914 599 541", 1, 4, 106, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(786, 2020786, "Paige Manolo", "Rogerson Durrans", "2020786@universdiad.edu.com", "mdurransen@yellowpages.com", "6 217 806 515", "cpuaZ1", "256 391 924", 1, 5, 49, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(787, 2020787, "Kennan Marv", "Rolland Macauley", "2020787@universdiad.edu.com", "mmacauleym5@php.net", "4 351 277 261", "i09URp", "245 427 290", 1, 2, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(788, 2020788, "Herculie Malchy", "Romagnosi Stidever", "2020788@universdiad.edu.com", "mstidever4b@prnewswire.com", "3 547 286 935", "sAaIwx", "710 881 867", 1, 4, 74, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(789, 2020789, "Ellissa Veda", "Romaynes Goney", "2020789@universdiad.edu.com", "vgoney1l@123-reg.co.uk", "2 736 659 863", "KOSfkM", "463 711 402", 2, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(790, 2020790, "Euell Judon", "Roscam Bednall", "2020790@universdiad.edu.com", "jbednalla6@google.fr", "5 938 612 529", "hOhIUB", "293 648 262", 1, 5, 14, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(791, 2020791, "Laetitia Ermina", "Roscamp Letherbury", "2020791@universdiad.edu.com", "eletherbury9i@sitemeter.com", "5 640 628 600", "N2qzlf", "281 754 272", 2, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(792, 2020792, "Diane Mariele", "Rose Lunnon", "2020792@universdiad.edu.com", "mlunnonnt@yellowpages.com", "9 532 441 283", "BZcUST", "556 557 108", 2, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(793, 2020793, "Dionne Tedi", "Rosenau McRory", "2020793@universdiad.edu.com", "tmcroryrh@github.com", "3 771 133 547", "7nHHqE", "806 848 514", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(794, 2020794, "Rawley Patric", "Rosenwasser Omond", "2020794@universdiad.edu.com", "pomondkd@pcworld.com", "5 248 372 112", "qoH7fq", "889 205 236", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(795, 2020795, "Gorden Eamon", "Rountree Heys", "2020795@universdiad.edu.com", "eheysex@storify.com", "8 933 154 275", "1U4YXj", "531 585 431", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(796, 2020796, "Maggee Daloris", "Rozenzweig Annwyl", "2020796@universdiad.edu.com", "dannwylgs@netlog.com", "9 249 507 510", "EGoDUT", "401 215 907", 2, 2, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(797, 2020797, "Nata Cortney", "Rubury Hunday", "2020797@universdiad.edu.com", "chunday2p@yahoo.com", "10 980 966 621", "eZq52o", "675 174 514", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(798, 2020798, "Wandie Chloris", "Ruddick Rousell", "2020798@universdiad.edu.com", "crousell34@angelfire.com", "2 791 813 665", "4BhlvX", "150 950 652", 2, 2, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(799, 2020799, "Mireille Ilene", "Ruffey O'Tuohy", "2020799@universdiad.edu.com", "iotuohybz@aboutads.info", "6 546 208 836", "pMadc0", "814 324 396", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(800, 2020800, "Ali Karney", "Ruler Kubasiewicz", "2020800@universdiad.edu.com", "kkubasiewiczb4@va.gov", "5 691 844 307", "fleYwb", "146 219 383", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(801, 2020801, "Dede Valentine", "Rushbury Dunge", "2020801@universdiad.edu.com", "vdungepi@oakley.com", "1 648 804 230", "8QEZsO", "608 193 560", 2, 3, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(802, 2020802, "Katerine Pippa", "Ruske Boobyer", "2020802@universdiad.edu.com", "pboobyerbs@timesonline.co.uk", "10 138 874 203", "V1TydM", "498 125 791", 2, 3, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(803, 2020803, "Myra Delcine", "Rust Braemer", "2020803@universdiad.edu.com", "dbraemer1g@phpbb.com", "5 768 200 512", "EgpiRY", "603 721 912", 2, 1, 2, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(804, 2020804, "Brnaba Arni", "Ryder Oxburgh", "2020804@universdiad.edu.com", "aoxburghna@list-manage.com", "8 443 402 116", "mOIKln", "421 947 254", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(805, 2020805, "Dean Parker", "Ryman Common", "2020805@universdiad.edu.com", "pcommon1y@typepad.com", "2 364 476 219", "ft4QbN", "978 379 181", 1, 2, 60, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(806, 2020806, "Perice Sylas", "Ryman Stoll", "2020806@universdiad.edu.com", "sstollpj@moonfruit.com", "3 717 259 787", "LpBeLS", "303 908 710", 1, 2, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(807, 2020807, "Hillary Ermin", "Sabattier Headley", "2020807@universdiad.edu.com", "eheadleyqc@bing.com", "10 676 761 391", "VrQ6s7", "470 387 514", 1, 1, 67, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(808, 2020808, "Kellen Cassandre", "Saggs Boud", "2020808@universdiad.edu.com", "cboud1f@ycombinator.com", "4 866 906 966", "0Phh6V", "588 596 968", 2, 5, 39, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(809, 2020809, "Candis Jeralee", "Saiz McGilroy", "2020809@universdiad.edu.com", "jmcgilroy62@ibm.com", "7 462 886 889", "XsFokp", "110 934 761", 2, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(810, 2020810, "Maurine Christen", "Salisbury Catcheside", "2020810@universdiad.edu.com", "ccatchesidecs@buzzfeed.com", "2 961 595 208", "EZxNGk", "321 942 962", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(811, 2020811, "Marilin Stacia", "Salvadori Trusler", "2020811@universdiad.edu.com", "strusler19@ebay.co.uk", "9 479 303 943", "SVdSmY", "925 795 513", 2, 2, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(812, 2020812, "Adriaens Emalia", "Sandyford Mosco", "2020812@universdiad.edu.com", "emoscok2@yandex.ru", "7 982 601 699", "Ts4pJT", "477 390 665", 2, 5, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(813, 2020813, "Calhoun Allin", "Sansum Ballinger", "2020813@universdiad.edu.com", "aballinger6i@fda.gov", "9 954 124 355", "XZfMpF", "397 499 933", 1, 5, 2, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(814, 2020814, "Silvanus Hamlin", "Sattin Breton", "2020814@universdiad.edu.com", "hbretond3@people.com.cn", "6 970 965 105", "dc7qNJ", "186 407 507", 1, 5, 110, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(815, 2020815, "Pennie Raine", "Savery Withinshaw", "2020815@universdiad.edu.com", "rwithinshaw1k@163.com", "2 679 682 142", "my0Tqa", "802 748 836", 2, 2, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(816, 2020816, "Gaven Lloyd", "Scalia Corhard", "2020816@universdiad.edu.com", "lcorhardpw@spiegel.de", "5 554 479 436", "Y4Tvsx", "136 442 450", 1, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(817, 2020817, "Callida Prue", "Schimon Bristoe", "2020817@universdiad.edu.com", "pbristoebx@phpbb.com", "2 787 594 760", "4gOtiH", "583 530 966", 2, 5, 35, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(818, 2020818, "Benny Marietta", "Schruyers Langman", "2020818@universdiad.edu.com", "mlangmanc5@yandex.ru", "8 347 866 996", "jTb2C0", "551 212 956", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(819, 2020819, "Aggy Tory", "Schustl Kimblen", "2020819@universdiad.edu.com", "tkimblence@twitpic.com", "2 539 937 220", "u8YEo3", "720 242 142", 2, 3, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(820, 2020820, "Hube Abraham", "Scotchbourouge Dashper", "2020820@universdiad.edu.com", "adashper9s@nifty.com", "5 439 857 545", "JShrJa", "373 951 121", 1, 1, 72, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(821, 2020821, "Kane Rory", "Scotford Micklem", "2020821@universdiad.edu.com", "rmicklemez@delicious.com", "10 593 289 389", "GZiApx", "554 859 914", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(822, 2020822, "Falito Galvan", "Scotsbrook Belli", "2020822@universdiad.edu.com", "gbellibt@hp.com", "5 179 666 373", "t9BeI5", "135 594 260", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(823, 2020823, "Roderick Silvan", "Scupham Insall", "2020823@universdiad.edu.com", "sinsalldq@aol.com", "5 431 713 950", "2WVHIj", "265 486 355", 1, 3, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(824, 2020824, "Nils Decca", "Scutter Simione", "2020824@universdiad.edu.com", "dsimionekq@zimbio.com", "3 427 749 417", "GsZQLr", "273 974 656", 1, 2, 125, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(825, 2020825, "Nils Engelbert", "Searight Febry", "2020825@universdiad.edu.com", "efebryp4@clickbank.net", "1 815 972 338", "YoiF4i", "967 169 436", 1, 3, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(826, 2020826, "Duffy Barton", "Seger Catterall", "2020826@universdiad.edu.com", "bcatterall6d@friendfeed.com", "10 900 635 287", "QcXgFq", "696 686 199", 1, 5, 30, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(827, 2020827, "Caralie Fawnia", "Segeswoeth Aimeric", "2020827@universdiad.edu.com", "faimericju@google.nl", "1 193 827 473", "GwyGTr", "211 187 658", 2, 4, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(828, 2020828, "Urban Kelby", "Selcraig Pllu", "2020828@universdiad.edu.com", "kpllu7v@wikia.com", "5 687 186 324", "zFfvOK", "379 652 603", 1, 3, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(829, 2020829, "Goddard Rod", "Semens Neesam", "2020829@universdiad.edu.com", "rneesamkk@mayoclinic.com", "3 795 950 132", "2WYPV8", "439 687 195", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(830, 2020830, "Skye Mortie", "Sentinella Dike", "2020830@universdiad.edu.com", "mdiked9@redcross.org", "7 329 965 585", "gWipbX", "245 405 584", 1, 5, 9, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(831, 2020831, "Berkley Ennis", "Shakesby Brudenell", "2020831@universdiad.edu.com", "ebrudenell8q@google.ca", "1 614 246 250", "Z9kB9b", "490 690 231", 1, 3, 71, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(832, 2020832, "Wendi Lacie", "Sheavills Patty", "2020832@universdiad.edu.com", "lpattyhg@unicef.org", "4 148 636 988", "1nvgLj", "513 729 423", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(833, 2020833, "Galvin Leslie", "Shenfisch Janoch", "2020833@universdiad.edu.com", "ljanochop@gravatar.com", "1 345 125 294", "vy6tl2", "197 203 209", 1, 4, 44, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(834, 2020834, "Arlyne Zabrina", "Sherwill Boothman", "2020834@universdiad.edu.com", "zboothmanlr@senate.gov", "9 212 521 294", "FCTotc", "180 500 152", 2, 5, 14, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(835, 2020835, "Lewie Barret", "Shillaker Diess", "2020835@universdiad.edu.com", "bdiessdf@linkedin.com", "6 212 632 209", "U5ZZrH", "599 216 244", 1, 1, 126, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(836, 2020836, "Ardelle Clareta", "Shovlar Ganter", "2020836@universdiad.edu.com", "cganterlg@sohu.com", "6 339 567 659", "RuFCsA", "358 982 651", 2, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(837, 2020837, "Vivienne Annie", "Sibbert Samme", "2020837@universdiad.edu.com", "asammed6@phpbb.com", "4 685 394 599", "z40udw", "838 824 405", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(838, 2020838, "Claudius Emmet", "Sibthorp Crumbie", "2020838@universdiad.edu.com", "ecrumbie8i@wsj.com", "8 853 374 357", "3gOmHe", "241 886 966", 1, 3, 66, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(839, 2020839, "Suzy Consolata", "Sibun Mellmoth", "2020839@universdiad.edu.com", "cmellmoth8j@wikipedia.org", "4 931 474 708", "PkUxtt", "403 820 837", 2, 2, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(840, 2020840, "Akim Stillman", "Sipson Swindall", "2020840@universdiad.edu.com", "sswindall4s@dailymail.co.uk", "3 494 750 760", "H1Sv93", "968 196 755", 1, 4, 28, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(841, 2020841, "Blayne Will", "Sketh Friatt", "2020841@universdiad.edu.com", "wfriattl8@reddit.com", "8 500 375 170", "bjxzuF", "878 743 235", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(842, 2020842, "Eula Dody", "Skewes Welbourn", "2020842@universdiad.edu.com", "dwelbournnr@msn.com", "9 880 748 127", "71QR0Y", "844 547 587", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(843, 2020843, "Gallagher Randall", "Skilbeck Bebis", "2020843@universdiad.edu.com", "rbebis3z@wix.com", "10 305 576 880", "b0hUPk", "520 110 921", 1, 3, 35, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(844, 2020844, "Amory Early", "Skirlin Gianni", "2020844@universdiad.edu.com", "egianni70@newsvine.com", "7 157 864 989", "DsitZq", "398 101 782", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(845, 2020845, "Janetta Meridith", "Skitch Olennikov", "2020845@universdiad.edu.com", "molennikovfj@amazon.com", "1 623 808 667", "8H4TlE", "695 221 558", 2, 4, 14, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(846, 2020846, "Rustie Nate", "Skitterel Rich", "2020846@universdiad.edu.com", "nrichpq@jalbum.net", "5 256 902 458", "bBH55c", "914 630 676", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(847, 2020847, "Heddi Willette", "Skoggins Brevitt", "2020847@universdiad.edu.com", "wbrevitt4e@alexa.com", "3 424 903 995", "Xa5zeQ", "389 895 525", 2, 1, 80, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(848, 2020848, "Laird Gregor", "Sleith Chagg", "2020848@universdiad.edu.com", "gchagg1w@cloudflare.com", "6 741 153 818", "FAmM95", "681 283 435", 1, 2, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(849, 2020849, "Bastien Rockwell", "Slingsby Hourstan", "2020849@universdiad.edu.com", "rhourstan5f@usda.gov", "3 679 702 395", "dJhk4N", "834 264 388", 1, 5, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(850, 2020850, "Fabiano Waldemar", "Slowan Aronstam", "2020850@universdiad.edu.com", "waronstamo7@shutterfly.com", "3 284 582 794", "oRnLI9", "555 988 585", 1, 3, 10, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(851, 2020851, "Glynda Edy", "Smaling Trinkwon", "2020851@universdiad.edu.com", "etrinkwongg@yolasite.com", "7 620 423 542", "vhDCcM", "391 297 620", 2, 1, 115, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(852, 2020852, "Greggory Lock", "Smallshaw Featonby", "2020852@universdiad.edu.com", "lfeatonbyf0@canalblog.com", "6 694 981 659", "oFiQzR", "555 935 697", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(853, 2020853, "Fancie Joscelin", "Smythe Paver", "2020853@universdiad.edu.com", "jpaveree@about.me", "2 806 132 447", "kzP3BQ", "569 621 225", 2, 5, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(854, 2020854, "Giacomo Vassili", "Snead Sigsworth", "2020854@universdiad.edu.com", "vsigsworthem@printfriendly.com", "1 914 322 851", "6pmE13", "272 335 253", 1, 3, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(855, 2020855, "Joceline Queenie", "Snipe Simmgen", "2020855@universdiad.edu.com", "qsimmgenah@hatena.ne.jp", "5 666 229 167", "crznmD", "441 117 277", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(856, 2020856, "Lil Laina", "Snowball Inett", "2020856@universdiad.edu.com", "linettrm@wordpress.org", "1 961 586 611", "aL90Y2", "610 889 860", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(857, 2020857, "Murvyn Merill", "Somerville Gouldie", "2020857@universdiad.edu.com", "mgouldiekj@nyu.edu", "5 704 655 920", "KTtVPx", "248 834 539", 1, 1, 108, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(858, 2020858, "June Cynde", "Souten Heffer", "2020858@universdiad.edu.com", "chefferkz@theatlantic.com", "4 866 725 991", "I8Nh9H", "170 364 790", 2, 1, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(859, 2020859, "Emerson Brose", "Spadari Burchess", "2020859@universdiad.edu.com", "bburchessli@elegantthemes.com", "8 330 884 955", "iQTTid", "955 661 426", 1, 3, 11, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(860, 2020860, "Pauly Grantham", "Sparkwill Corsan", "2020860@universdiad.edu.com", "gcorsan96@washingtonpost.com", "9 316 899 226", "cUKYF6", "533 910 964", 1, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(861, 2020861, "Peri Babs", "Spelwood Dayley", "2020861@universdiad.edu.com", "bdayleyq6@ca.gov", "10 221 585 882", "XJUAEX", "543 805 308", 2, 3, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(862, 2020862, "Shoshanna Lou", "Spencook Kenderdine", "2020862@universdiad.edu.com", "lkenderdinenw@msn.com", "8 601 182 299", "ykfBHW", "863 708 216", 2, 1, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(863, 2020863, "Bernadette Annaliese", "Spendlove Stitson", "2020863@universdiad.edu.com", "astitsonbl@boston.com", "4 391 861 408", "vsIoct", "280 592 823", 2, 3, 28, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(864, 2020864, "Laurent Tyrone", "Spillett Burnip", "2020864@universdiad.edu.com", "tburnip97@slashdot.org", "10 870 266 898", "CTBVe9", "521 478 752", 1, 3, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(865, 2020865, "Karon Celestyn", "Spilsted Belchem", "2020865@universdiad.edu.com", "cbelchem21@bizjournals.com", "1 938 432 435", "RVQC3Y", "837 991 885", 2, 4, 24, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(866, 2020866, "Inge Terrijo", "Spinage Selley", "2020866@universdiad.edu.com", "tselleyqd@google.com", "6 961 431 810", "niQpNg", "214 336 383", 2, 4, 81, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(867, 2020867, "Malva Fifi", "Spiteri Cahen", "2020867@universdiad.edu.com", "fcahen1a@indiatimes.com", "10 779 600 621", "Gs4hO2", "283 235 251", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(868, 2020868, "Kleon Dolph", "Splevin Madden", "2020868@universdiad.edu.com", "dmadden9v@twitter.com", "9 279 247 688", "U4AE5X", "318 348 588", 1, 1, 52, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(869, 2020869, "Alexia Pippa", "Spong Youle", "2020869@universdiad.edu.com", "pyoulee2@ihg.com", "4 935 693 503", "OMTn4q", "149 214 524", 2, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(870, 2020870, "Dun Wallace", "Spread Ferrulli", "2020870@universdiad.edu.com", "wferrulliax@noaa.gov", "6 890 402 702", "uWXcZI", "287 560 737", 1, 4, 42, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(871, 2020871, "Olvan Sayre", "Spring Antonignetti", "2020871@universdiad.edu.com", "santonignettiks@tripadvisor.com", "7 828 298 822", "jDMQWV", "757 299 501", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(872, 2020872, "Wes Boyd", "Squelch Ellaway", "2020872@universdiad.edu.com", "bellawayec@is.gd", "7 930 755 189", "j4Pe5B", "202 920 781", 1, 1, 88, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(873, 2020873, "Reyna Agnesse", "Stainfield Enefer", "2020873@universdiad.edu.com", "aeneferhj@lycos.com", "2 557 770 735", "Mt8TNp", "756 672 958", 2, 2, 60, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(874, 2020874, "Sayre Gualterio", "Stallion Fleay", "2020874@universdiad.edu.com", "gfleay4i@skype.com", "7 226 529 345", "ucpllD", "811 109 361", 1, 5, 30, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(875, 2020875, "Patti Hildegarde", "Standering Norster", "2020875@universdiad.edu.com", "hnorster3p@wiley.com", "3 777 869 495", "jCXUtZ", "524 235 610", 2, 4, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(876, 2020876, "Maryrose Roberta", "Stansbury Gregol", "2020876@universdiad.edu.com", "rgregolb3@people.com.cn", "10 267 580 778", "FOT0R1", "324 605 775", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(877, 2020877, "Paule Orella", "Stapleton Cuerdale", "2020877@universdiad.edu.com", "ocuerdalepm@so-net.ne.jp", "5 302 324 903", "CKTsoo", "585 878 549", 2, 1, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(878, 2020878, "Gale Silva", "Starsmeare Dach", "2020878@universdiad.edu.com", "sdachq5@amazon.com", "9 699 988 307", "yjRaLA", "423 159 734", 2, 4, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(879, 2020879, "Dianemarie Ronalda", "Steinor Piperley", "2020879@universdiad.edu.com", "rpiperleyqz@bloglovin.com", "2 298 503 556", "Z7R10o", "616 597 671", 2, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(880, 2020880, "Zebedee Milton", "Steuart Rains", "2020880@universdiad.edu.com", "mrainsbc@geocities.jp", "1 847 198 428", "bXz1pg", "797 394 842", 1, 5, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(881, 2020881, "Emmanuel Eugenius", "Steynor Haseldine", "2020881@universdiad.edu.com", "ehaseldineqk@answers.com", "9 476 448 598", "4hlLk0", "838 970 270", 1, 4, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(882, 2020882, "Lars Evelin", "Stigers Wheelton", "2020882@universdiad.edu.com", "ewheeltonis@cdc.gov", "1 566 990 296", "Gs5uKd", "496 805 312", 1, 3, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(883, 2020883, "Ellwood Bron", "Stoad Bride", "2020883@universdiad.edu.com", "bbridejw@indiatimes.com", "1 962 639 204", "fboLxE", "160 748 423", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(884, 2020884, "Jorey Brinn", "Stoffer Godfray", "2020884@universdiad.edu.com", "bgodfrayaz@buzzfeed.com", "1 674 576 657", "pW5xNp", "921 662 613", 2, 1, 75, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(885, 2020885, "Jobye Theda", "Stolz Streeter", "2020885@universdiad.edu.com", "tstreeterqh@smugmug.com", "8 971 968 199", "KR0phw", "393 685 703", 2, 2, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(886, 2020886, "Kellsie Tarra", "Stonbridge Basey", "2020886@universdiad.edu.com", "tbaseyf3@boston.com", "7 936 798 987", "dIJpzN", "491 623 565", 2, 1, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(887, 2020887, "Virge Mordecai", "Straker Botterman", "2020887@universdiad.edu.com", "mbottermancm@woothemes.com", "2 329 655 753", "25aluq", "163 499 728", 1, 3, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(888, 2020888, "Corrie Vasilis", "Straniero Keller", "2020888@universdiad.edu.com", "vkellerkl@goo.gl", "4 727 474 444", "FakFlB", "347 120 225", 1, 5, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(889, 2020889, "Rafael Jeremy", "Strathearn Boylund", "2020889@universdiad.edu.com", "jboylundmw@fda.gov", "10 999 484 921", "PxsINe", "708 793 413", 1, 1, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(890, 2020890, "Perkin Lefty", "Stratten Maberley", "2020890@universdiad.edu.com", "lmaberleyc0@quantcast.com", "10 902 400 977", "4AeF3j", "139 427 908", 1, 3, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(891, 2020891, "Morna Patrice", "Strawbridge Copins", "2020891@universdiad.edu.com", "pcopinsi4@people.com.cn", "3 136 397 995", "ztGqXn", "500 219 696", 2, 5, 9, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(892, 2020892, "Alberto Henderson", "Strewthers Hebard", "2020892@universdiad.edu.com", "hhebard94@blogs.com", "2 834 877 164", "MFKiUv", "424 170 277", 1, 1, 52, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(893, 2020893, "Dori Mina", "Strowther Swallow", "2020893@universdiad.edu.com", "mswallow10@blinklist.com", "2 567 993 481", "wFjnsw", "157 317 414", 2, 1, 53, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(894, 2020894, "Siegfried Keven", "Struys Whitefoot", "2020894@universdiad.edu.com", "kwhitefoot15@a8.net", "2 668 464 766", "EbTqTN", "522 256 410", 1, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(895, 2020895, "Rosalie Lavina", "Summerson Secombe", "2020895@universdiad.edu.com", "lsecombeqb@example.com", "9 774 389 556", "MLixcr", "680 928 528", 2, 3, 16, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(896, 2020896, "Jeddy Pyotr", "Sutliff Knowles", "2020896@universdiad.edu.com", "pknowlesdp@earthlink.net", "1 293 921 235", "kdi8Lc", "716 271 172", 1, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(897, 2020897, "Lancelot Colman", "Swaine Crevy", "2020897@universdiad.edu.com", "ccrevyk5@jigsy.com", "6 871 618 633", "eWwob0", "831 435 389", 1, 4, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(898, 2020898, "Godart Emmery", "Swanger Margrie", "2020898@universdiad.edu.com", "emargriehi@scribd.com", "7 780 872 301", "sLVLI1", "451 972 265", 1, 2, 127, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(899, 2020899, "Margery Berry", "Sweetzer Guillard", "2020899@universdiad.edu.com", "bguillardp2@sina.com.cn", "7 125 465 373", "4ez3KO", "326 983 679", 2, 3, 9, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(900, 2020900, "Coralyn Kassandra", "Swettenham Skews", "2020900@universdiad.edu.com", "kskewsot@surveymonkey.com", "1 504 677 758", "WGMpU3", "900 653 727", 2, 2, 128, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(901, 2020901, "Say Reider", "Sword Filippucci", "2020901@universdiad.edu.com", "rfilippuccihr@google.fr", "7 711 959 664", "TE7tua", "661 626 269", 1, 3, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(902, 2020902, "Ermentrude Aggy", "Talloe Gribbell", "2020902@universdiad.edu.com", "agribbell9j@apple.com", "9 962 345 302", "ZUv7li", "413 672 244", 2, 2, 35, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(903, 2020903, "Giorgio Tuckie", "Tapley Cauderlie", "2020903@universdiad.edu.com", "tcauderlief4@shareasale.com", "8 849 433 549", "FzByfW", "936 196 772", 1, 5, 52, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(904, 2020904, "Wilt Stefano", "Taunton Braunds", "2020904@universdiad.edu.com", "sbraundsht@dmoz.org", "8 595 921 417", "615Ss5", "414 964 810", 1, 2, 129, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(905, 2020905, "Hildagarde Amandi", "Taylder Eich", "2020905@universdiad.edu.com", "aeichlj@opensource.org", "9 153 158 266", "oRN0Lg", "712 343 124", 2, 5, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(906, 2020906, "Jack Randy", "Teas Mariet", "2020906@universdiad.edu.com", "rmarietob@odnoklassniki.ru", "8 691 297 455", "jHQ7G5", "397 428 740", 1, 2, 80, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(907, 2020907, "Brade Clementius", "Tebbe Bly", "2020907@universdiad.edu.com", "cblymz@alexa.com", "1 980 442 898", "EOsH6c", "996 127 974", 1, 5, 46, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(908, 2020908, "Adamo Jeromy", "Tellenbrok O'Kenny", "2020908@universdiad.edu.com", "jokenny2q@globo.com", "8 643 375 300", "Lku3Ik", "141 257 185", 1, 4, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(909, 2020909, "Lawry Ferdie", "Temblett Fenemore", "2020909@universdiad.edu.com", "ffenemore7r@youtube.com", "3 279 547 994", "PSl7RS", "189 613 903", 1, 3, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(910, 2020910, "Cyrille Artemas", "Terbruggen Hurworth", "2020910@universdiad.edu.com", "ahurworthkf@google.com.hk", "1 147 710 247", "NzeV2F", "981 429 395", 1, 4, 38, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(911, 2020911, "Vassili Sollie", "Teresi Syvret", "2020911@universdiad.edu.com", "ssyvretba@mozilla.com", "5 933 737 295", "mtdXET", "729 588 139", 1, 5, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(912, 2020912, "Jeri Kynthia", "Thacke Rewan", "2020912@universdiad.edu.com", "krewanw@theguardian.com", "4 444 371 423", "braNTS", "655 636 795", 2, 2, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(913, 2020913, "Davidde Cary", "Thain Bartkiewicz", "2020913@universdiad.edu.com", "cbartkiewiczj0@vimeo.com", "5 547 426 715", "dU1pbU", "573 770 705", 1, 4, 12, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(914, 2020914, "Dunc Dalston", "Thomsen Hambelton", "2020914@universdiad.edu.com", "dhambeltone0@hexun.com", "4 545 391 889", "ImUOOF", "559 901 472", 1, 1, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(915, 2020915, "Morten Guillaume", "Threadkell Minchenton", "2020915@universdiad.edu.com", "gminchenton5o@ucoz.com", "8 537 279 365", "wA4dcU", "393 748 668", 1, 2, 9, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(916, 2020916, "Kellina Dodi", "Thurner Sunderland", "2020916@universdiad.edu.com", "dsunderland9b@chicagotribune.com", "5 995 560 908", "0W0mgL", "848 838 380", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(917, 2020917, "Pennie Cirstoforo", "Tidey Griffith", "2020917@universdiad.edu.com", "cgriffith5q@seesaa.net", "7 680 776 463", "BUqFqs", "788 874 254", 1, 5, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(918, 2020918, "Kayla Roxie", "Tinghill Sloane", "2020918@universdiad.edu.com", "rsloane3a@barnesandnoble.com", "1 579 959 225", "AQ2SCM", "963 365 733", 2, 2, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(919, 2020919, "Aksel Alix", "Tinsley Rooms", "2020919@universdiad.edu.com", "aroomsg9@nih.gov", "10 775 739 526", "24rnac", "964 682 117", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(920, 2020920, "Zedekiah Nikolaos", "Tixier Alessandone", "2020920@universdiad.edu.com", "nalessandonehm@nasa.gov", "7 489 389 983", "63IDGm", "485 261 130", 1, 2, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(921, 2020921, "Adams Carolus", "Tolcher Sill", "2020921@universdiad.edu.com", "csillhs@odnoklassniki.ru", "1 409 921 200", "zbyVWL", "797 539 769", 1, 4, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(922, 2020922, "Chevy Owen", "Tollemache Rosenblad", "2020922@universdiad.edu.com", "orosenbladan@dion.ne.jp", "1 467 716 713", "aTjom7", "606 906 691", 1, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(923, 2020923, "Dianne Marlane", "Tomaschke Hugli", "2020923@universdiad.edu.com", "mhuglipt@zimbio.com", "3 116 696 196", "lqua3K", "458 740 618", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(924, 2020924, "Orin Godfrey", "Tooze Turley", "2020924@universdiad.edu.com", "gturleynj@nationalgeographic.com", "4 137 545 180", "XW9D7z", "379 371 102", 1, 4, 60, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(925, 2020925, "Fara Minerva", "Tourne Doonican", "2020925@universdiad.edu.com", "mdoonicanl5@cdc.gov", "9 936 418 316", "cEq1nT", "644 826 380", 2, 4, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(926, 2020926, "Olivie Andeee", "Trenholm Sunock", "2020926@universdiad.edu.com", "asunockk3@jalbum.net", "4 460 662 421", "zA3y2d", "473 931 831", 2, 1, 49, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(927, 2020927, "Livvy Tina", "Trenoweth Ducker", "2020927@universdiad.edu.com", "tduckergc@mediafire.com", "6 749 693 470", "QhUcJJ", "245 531 905", 2, 1, 123, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(928, 2020928, "Garrard Thom", "Treppas Netherclift", "2020928@universdiad.edu.com", "tnetherclift46@bloglines.com", "8 845 303 139", "uxjSHY", "375 972 817", 1, 3, 15, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(929, 2020929, "Marthena Willabella", "Trevains Cleef", "2020929@universdiad.edu.com", "wcleefcb@tinyurl.com", "10 137 442 761", "vaufXp", "612 929 419", 2, 1, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(930, 2020930, "Kendricks Howard", "Trevains McTeer", "2020930@universdiad.edu.com", "hmcteere3@joomla.org", "9 390 458 922", "pTG4Yj", "355 585 520", 1, 1, 76, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(931, 2020931, "Batholomew Bengt", "Trinkwon Taaffe", "2020931@universdiad.edu.com", "btaaffeav@samsung.com", "7 597 696 597", "lj7k1T", "692 911 282", 1, 1, 49, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(932, 2020932, "Daisey Bari", "Trippick Loade", "2020932@universdiad.edu.com", "bloadedk@examiner.com", "4 256 239 615", "3DhCtJ", "820 379 411", 2, 2, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(933, 2020933, "Allistir Hewet", "Troake Wetwood", "2020933@universdiad.edu.com", "hwetwoodnq@unicef.org", "6 213 945 269", "yO5L8F", "846 774 596", 1, 1, 79, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(934, 2020934, "Boniface Eddy", "Trolley Severn", "2020934@universdiad.edu.com", "esevernh@meetup.com", "3 965 173 869", "WxFuVn", "597 630 436", 1, 1, 130, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(935, 2020935, "Ulrikaumeko Jodi", "Trotton Soltan", "2020935@universdiad.edu.com", "jsoltan54@360.cn", "6 385 188 960", "YIdJ1c", "925 138 246", 2, 5, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(936, 2020936, "Keith Corey", "Trudgion Bree", "2020936@universdiad.edu.com", "cbree1o@g.co", "7 179 115 369", "ESLaTD", "785 727 604", 1, 3, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(937, 2020937, "Pascale Natale", "Truelock Doree", "2020937@universdiad.edu.com", "ndoree5z@ihg.com", "2 142 714 995", "8uU2wH", "240 153 329", 1, 3, 4, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(938, 2020938, "Chico Klement", "Trusslove Speedin", "2020938@universdiad.edu.com", "kspeedinhw@mac.com", "5 585 417 828", "3u3uaT", "304 243 444", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(939, 2020939, "Care Mordecai", "Tudge Pattemore", "2020939@universdiad.edu.com", "mpattemore92@discuz.net", "4 945 350 734", "4WuxYD", "143 661 895", 1, 2, 30, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(940, 2020940, "Norina Beitris", "Turfitt Stranahan", "2020940@universdiad.edu.com", "bstranahanfi@sohu.com", "3 993 372 810", "6rIszS", "803 348 330", 2, 4, 114, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(941, 2020941, "Chris Michel", "Turvey Bamb", "2020941@universdiad.edu.com", "mbambor@ebay.com", "2 564 630 764", "9oBqtl", "417 384 420", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(942, 2020942, "Ericha Kacy", "Upstell Hazeldine", "2020942@universdiad.edu.com", "khazeldinem2@mashable.com", "9 407 179 939", "Rb0laM", "534 135 521", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(943, 2020943, "Laurens Gardner", "Valenta Durn", "2020943@universdiad.edu.com", "gdurno2@xrea.com", "6 264 733 269", "eS1PpQ", "446 259 102", 1, 5, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(944, 2020944, "Yard Daron", "Valentim Oxbrow", "2020944@universdiad.edu.com", "doxbrow6p@addtoany.com", "1 259 663 148", "ZvfV5z", "631 169 258", 1, 5, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(945, 2020945, "Krishna Cletus", "Van Castele Simeonov", "2020945@universdiad.edu.com", "csimeonovoz@icq.com", "4 698 287 639", "MSZpK9", "341 434 599", 1, 4, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(946, 2020946, "Frederic Garrik", "Vaskov Syratt", "2020946@universdiad.edu.com", "gsyrattch@un.org", "8 871 717 970", "cBSrUO", "223 719 506", 1, 1, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(947, 2020947, "Olin Woodie", "Veevers Gann", "2020947@universdiad.edu.com", "wgann6o@hubpages.com", "8 577 920 594", "TBSTL4", "730 970 131", 1, 3, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(948, 2020948, "Daune Justinn", "Verdon De la Eglise", "2020948@universdiad.edu.com", "jdelaeglisedg@4shared.com", "5 932 329 904", "KqOk3f", "336 318 284", 2, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(949, 2020949, "Dominick Inger", "Veryan Rulf", "2020949@universdiad.edu.com", "irulfnz@upenn.edu", "9 559 153 118", "XSiO72", "392 310 626", 1, 3, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(950, 2020950, "Fina Ansley", "Vidgeon Woltering", "2020950@universdiad.edu.com", "awoltering9t@imdb.com", "5 551 652 215", "a0UQb9", "445 542 721", 2, 5, 14, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(951, 2020951, "Tessa Sioux", "Vila Hubbold", "2020951@universdiad.edu.com", "shubbold31@amazon.de", "1 306 504 950", "F2H5TV", "438 994 820", 2, 1, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(952, 2020952, "Hesther Donelle", "Vinker Pinching", "2020952@universdiad.edu.com", "dpinching4p@simplemachines.org", "3 331 229 290", "hmfWPz", "349 689 213", 2, 4, 11, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(953, 2020953, "Helli Jacynth", "Volke Duell", "2020953@universdiad.edu.com", "jduellat@shop-pro.jp", "8 226 181 961", "WEyklI", "519 770 974", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(954, 2020954, "Katharine Dominga", "Wabe Martinets", "2020954@universdiad.edu.com", "dmartinetsbo@aboutads.info", "5 683 248 343", "ALdfdj", "898 803 412", 2, 2, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(955, 2020955, "Lawton Matthieu", "Wabe MacUchadair", "2020955@universdiad.edu.com", "mmacuchadairij@alexa.com", "8 479 841 373", "D8IrfI", "319 134 993", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(956, 2020956, "Alta Caryn", "Wadwell Reglar", "2020956@universdiad.edu.com", "creglarak@bigcartel.com", "4 240 784 453", "u3IvgT", "829 275 964", 2, 2, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(957, 2020957, "Pauly Eli", "Walkingshaw Beri", "2020957@universdiad.edu.com", "eberiiy@statcounter.com", "2 506 363 593", "haCY7L", "486 456 436", 1, 4, 131, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(958, 2020958, "Cullin Baxter", "Walkley Yielding", "2020958@universdiad.edu.com", "byielding6g@tamu.edu", "4 818 373 950", "3r0TrJ", "902 842 417", 1, 1, 30, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(959, 2020959, "Maren Lenna", "Wallis Kirsopp", "2020959@universdiad.edu.com", "lkirsopppc@ifeng.com", "1 728 345 670", "2xObna", "890 992 103", 2, 2, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(960, 2020960, "Lammond Moise", "Walpole Battill", "2020960@universdiad.edu.com", "mbattill8o@youtube.com", "2 422 313 212", "Pn9Aht", "673 415 199", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(961, 2020961, "Chen Webster", "Wandtke Cattermole", "2020961@universdiad.edu.com", "wcattermoled@utexas.edu", "4 310 446 642", "YzpmEy", "456 920 567", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(962, 2020962, "Johann Donny", "Wapple Abrashkov", "2020962@universdiad.edu.com", "dabrashkovlm@meetup.com", "3 706 479 637", "PxIReR", "871 996 164", 1, 2, 79, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(963, 2020963, "Odelia Alex", "Warters Miell", "2020963@universdiad.edu.com", "amiellro@dell.com", "6 375 665 539", "PtucWe", "724 329 239", 2, 1, 95, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(964, 2020964, "Abbott Mahmoud", "Waterhous Muriel", "2020964@universdiad.edu.com", "mmurielll@businessinsider.com", "5 789 760 174", "lMOyLC", "890 386 656", 1, 1, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(965, 2020965, "Lucienne Leeanne", "Weddeburn - Scrimgeour Parades", "2020965@universdiad.edu.com", "lparadesf8@creativecommons.org", "1 416 706 549", "x2IDjd", "136 269 359", 2, 1, 62, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(966, 2020966, "Malynda Sharron", "Wedderburn Woolpert", "2020966@universdiad.edu.com", "swoolpert9@clickbank.net", "3 122 417 655", "S0CAWO", "349 944 913", 2, 5, 3, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(967, 2020967, "Rhody Rowe", "Weeds Tern", "2020967@universdiad.edu.com", "rtern9d@taobao.com", "5 593 636 319", "aC3gee", "478 223 791", 2, 4, 62, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(968, 2020968, "Scarlett Nelli", "Welburn Vickress", "2020968@universdiad.edu.com", "nvickressn9@seesaa.net", "5 942 669 289", "o1D3ov", "413 991 510", 2, 5, 49, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(969, 2020969, "Merci Sarine", "Werndly Clavey", "2020969@universdiad.edu.com", "sclaveymb@google.nl", "6 555 888 735", "8HDOJq", "631 697 442", 2, 1, 17, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(970, 2020970, "Avery Darnall", "Whardley Camin", "2020970@universdiad.edu.com", "dcaminjb@walmart.com", "5 146 945 515", "8VOdQM", "401 807 754", 1, 4, 130, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(971, 2020971, "Jarrad Duffy", "Whates Loftus", "2020971@universdiad.edu.com", "dloftusqv@cyberchimps.com", "1 480 643 368", "xnZlVP", "866 373 536", 1, 2, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(972, 2020972, "Adah Maure", "Wheadon Steddall", "2020972@universdiad.edu.com", "msteddall3y@mayoclinic.com", "2 827 199 863", "pHBhiy", "726 413 660", 2, 4, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(973, 2020973, "Tommi Lynett", "Whistan Leatt", "2020973@universdiad.edu.com", "lleatt65@1688.com", "2 363 743 580", "NwGDMi", "277 103 957", 2, 1, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(974, 2020974, "Jewell Danya", "Whitebread Dewerson", "2020974@universdiad.edu.com", "ddewersonky@abc.net.au", "8 642 820 937", "nc7a55", "361 933 917", 2, 4, 132, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(975, 2020975, "Alisha Ronda", "Whitfeld Tyas", "2020975@universdiad.edu.com", "rtyasl0@tinypic.com", "4 129 954 470", "PgaZqy", "363 389 501", 2, 4, 95, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(976, 2020976, "Mozelle Rebeca", "Whitrod Lorente", "2020976@universdiad.edu.com", "rlorentem6@google.de", "9 595 472 478", "69oJa3", "606 362 102", 2, 5, 8, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(977, 2020977, "Manon Ellen", "Wickardt Willers", "2020977@universdiad.edu.com", "ewillers6w@army.mil", "6 946 240 260", "VNz6Bq", "479 613 788", 2, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(978, 2020978, "Pier Lyndsie", "Wickliffe Marple", "2020978@universdiad.edu.com", "lmarple47@craigslist.org", "6 394 697 237", "xjxGOF", "345 903 950", 2, 2, 33, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(979, 2020979, "Murray Fredrick", "Wickmann Skate", "2020979@universdiad.edu.com", "fskateip@nifty.com", "9 529 624 363", "VJvJNT", "368 306 445", 1, 3, 18, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(980, 2020980, "Nataline Leodora", "Wightman Cheves", "2020980@universdiad.edu.com", "lcheveskw@bbc.co.uk", "6 632 831 687", "ddsiTq", "740 653 936", 2, 4, 5, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(981, 2020981, "Randee Sheelagh", "Wilcinskis Steanyng", "2020981@universdiad.edu.com", "ssteanyngrc@opera.com", "6 800 464 174", "V9BsK1", "642 285 251", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(982, 2020982, "Charil Davita", "Wilfinger Cashen", "2020982@universdiad.edu.com", "dcashenn2@tinypic.com", "3 833 297 901", "PAQszj", "520 811 152", 2, 4, 16, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(983, 2020983, "Barron Alvin", "Wimpeney Lalonde", "2020983@universdiad.edu.com", "alalonde3v@google.ca", "1 351 899 260", "FFK39j", "691 459 290", 1, 1, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(984, 2020984, "Emlyn Sheeree", "Wintle Wayon", "2020984@universdiad.edu.com", "swayonq8@slideshare.net", "9 335 769 663", "Ru6vzq", "515 155 384", 2, 4, 31, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(985, 2020985, "Brittney Diann", "Wixey Kalinsky", "2020985@universdiad.edu.com", "dkalinskyh8@nydailynews.com", "10 269 475 622", "zT62JV", "395 238 818", 2, 2, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(986, 2020986, "Corrina Roselia", "Woolley O'Corrane", "2020986@universdiad.edu.com", "rocorrane85@list-manage.com", "3 410 463 121", "u9p7SY", "642 827 833", 2, 4, 50, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(987, 2020987, "Talya Beverlie", "Woolward Le Noir", "2020987@universdiad.edu.com", "blenoir5k@mapy.cz", "8 220 539 451", "QhzdIg", "418 784 109", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(988, 2020988, "Eugine Dorian", "Worlock Gorhardt", "2020988@universdiad.edu.com", "dgorhardtps@hugedomains.com", "6 834 108 407", "Z7IWGa", "564 359 198", 2, 5, 58, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(989, 2020989, "Stafani Orsola", "Worms Crosskill", "2020989@universdiad.edu.com", "ocrosskilla4@furl.net", "8 105 960 127", "SWFrPw", "459 235 591", 2, 5, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(990, 2020990, "Annetta Addy", "Worsham Filipczynski", "2020990@universdiad.edu.com", "afilipczynskiof@yahoo.co.jp", "1 174 287 224", "sTVTGv", "807 607 246", 2, 1, 95, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(991, 2020991, "Bar Lyon", "Wortt Waddy", "2020991@universdiad.edu.com", "lwaddyda@sakura.ne.jp", "5 571 783 460", "R7TViF", "845 416 313", 1, 5, 62, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(992, 2020992, "Billie Dionisio", "Wyer Vittore", "2020992@universdiad.edu.com", "dvittoreo5@linkedin.com", "10 726 332 887", "mgxS5L", "438 862 895", 1, 5, 7, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(993, 2020993, "Ugo Antone", "Wyldish Byng", "2020993@universdiad.edu.com", "abyng4g@cpanel.net", "6 742 758 202", "ORfeev", "517 585 307", 1, 4, 14, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(994, 2020994, "Britt Marje", "Yackiminie Sweeten", "2020994@universdiad.edu.com", "msweetenkh@is.gd", "8 498 303 939", "Pbvv14", "842 345 142", 2, 5, 42, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(995, 2020995, "Ichabod Duane", "Yeskov O'Kerin", "2020995@universdiad.edu.com", "dokerinhv@chron.com", "6 535 426 716", "6qaWgb", "736 169 685", 1, 4, 6, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(996, 2020996, "Antonin Tadeo", "Yo Caskey", "2020996@universdiad.edu.com", "tcaskeyo3@ovh.net", "2 605 789 590", "tgahyH", "935 709 989", 1, 5, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(997, 2020997, "Leena Lib", "Zaczek Browell", "2020997@universdiad.edu.com", "lbrowell4w@cdbaby.com", "3 669 724 944", "YptaYi", "506 847 610", 2, 4, 1, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(998, 2020998, "Putnem Erwin", "Zarfat Toderbrugge", "2020998@universdiad.edu.com", "etoderbruggecv@symantec.com", "7 653 818 992", "7OIEH7", "439 911 148", 1, 5, 13, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(999, 2020999, "Bent Birch", "Zolini Clohisey", "2020999@universdiad.edu.com", "bclohiseydm@vkontakte.ru", "2 456 202 680", "SO7dT6", "151 409 715", 1, 1, 16, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"),
(1000, 2021000, "Omar Murdoch", "Zottoli Heynel", "2021000@universdiad.edu.com", "mheynelnx@g.co", "6 531 938 134", "04dwb4", "800 986 147", 1, 1, 23, "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png");
-- migrate:down
DELETE FROM students; | 249.064548 | 276 | 0.704068 |
80d6d91150213585974304f3d2bfd2cf5483a1f7 | 3,327 | java | Java | anno4j-core/src/test/java/com/github/anno4j/model/SelectorTest.java | anno4j/anno4j | 264d843f50f8035dca8494055f41149a1317eeef | [
"Apache-2.0"
] | 41 | 2015-05-15T16:56:43.000Z | 2022-03-24T18:41:30.000Z | anno4j-core/src/test/java/com/github/anno4j/model/SelectorTest.java | anno4j/anno4j | 264d843f50f8035dca8494055f41149a1317eeef | [
"Apache-2.0"
] | 150 | 2015-05-15T14:45:08.000Z | 2020-12-16T11:21:47.000Z | anno4j-core/src/test/java/com/github/anno4j/model/SelectorTest.java | schlegel/anno4j | 264d843f50f8035dca8494055f41149a1317eeef | [
"Apache-2.0"
] | 23 | 2015-07-15T06:22:03.000Z | 2022-03-24T18:41:34.000Z | package com.github.anno4j.model;
import com.github.anno4j.Anno4j;
import com.github.anno4j.model.impl.ResourceObject;
import com.github.anno4j.model.impl.selector.CSSSelector;
import com.github.anno4j.model.impl.selector.DataPositionSelector;
import com.github.anno4j.model.impl.selector.FragmentSelector;
import com.github.anno4j.model.impl.targets.SpecificResource;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.openrdf.repository.RepositoryException;
import org.openrdf.repository.object.ObjectConnection;
import java.util.HashSet;
import java.util.List;
import static org.junit.Assert.assertEquals;
/**
* Test suite for the selectors of an annotation.
* This test uses a fragment selector, that is conform to the W3C Media Fragments. Other selectors can be used accordingly.
*
* A simple annotation is set up, provided with a respective selector, then persisted and queried.
*/
public class SelectorTest {
public final static String SOME_PAGE = "http://example.org/";
private Anno4j anno4j;
@Before
public void setUp() throws Exception {
this.anno4j = new Anno4j();
}
@Test
public void testSelector() throws Exception {
// Create annotation
Annotation annotation = anno4j.createObject(Annotation.class);
ResourceObject randomObject = anno4j.createObject(ResourceObject.class);
randomObject.setResourceAsString(SOME_PAGE + "randomobject");
// Create specific resource and selector
SpecificResource specificResource = anno4j.createObject(SpecificResource.class);
// Create selector
FragmentSelector fragmentSelector = anno4j.createObject(FragmentSelector.class);
fragmentSelector.setValue("#xywh=50,50,640,480");
// Connect all entities
specificResource.setSource(randomObject);
specificResource.setSelector(fragmentSelector);
annotation.addTarget(specificResource);
// Query object
List<FragmentSelector> result = anno4j.findAll(FragmentSelector.class);
FragmentSelector resultObject = result.get(0);
// Tests
assertEquals(fragmentSelector.getResource(), resultObject.getResource());
assertEquals(fragmentSelector.getValue(), resultObject.getValue());
}
@Test
public void testRefinedBy() throws RepositoryException, IllegalAccessException, InstantiationException {
CSSSelector selector = this.anno4j.createObject(CSSSelector.class);
CSSSelector result = this.anno4j.findByID(CSSSelector.class, selector.getResourceAsString());
assertEquals(0, result.getRefinedSelectors().size());
selector.addRefinedSelector(this.anno4j.createObject(DataPositionSelector.class));
result = this.anno4j.findByID(CSSSelector.class, selector.getResourceAsString());
assertEquals(1, result.getRefinedSelectors().size());
HashSet<Selector> selectors = new HashSet<>();
selectors.add(this.anno4j.createObject(FragmentSelector.class));
selectors.add(this.anno4j.createObject(FragmentSelector.class));
selector.setRefinedSelectors(selectors);
result = this.anno4j.findByID(CSSSelector.class, selector.getResourceAsString());
assertEquals(2, result.getRefinedSelectors().size());
}
} | 36.56044 | 123 | 0.738503 |
0941783a94efc6bcd546bd51383ec5ab6056507f | 4,649 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_586.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_586.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_586.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r8
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x1b5c8, %r13
clflush (%r13)
nop
nop
nop
nop
nop
and %rbx, %rbx
movl $0x61626364, (%r13)
nop
nop
xor $52716, %rcx
lea addresses_WT_ht+0x183c8, %rsi
lea addresses_WT_ht+0x16d30, %rdi
nop
nop
cmp %r8, %r8
mov $82, %rcx
rep movsl
nop
nop
nop
and $44832, %rbx
lea addresses_WT_ht+0xb148, %rsi
lea addresses_WT_ht+0x8d96, %rdi
nop
xor %rax, %rax
mov $119, %rcx
rep movsl
sub %rax, %rax
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbx
pop %rax
pop %r8
pop %r13
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r14
push %rbp
push %rcx
push %rsi
// Faulty Load
lea addresses_RW+0x1f9c8, %rcx
nop
nop
xor $21925, %r14
mov (%rcx), %r10
lea oracles, %rbp
and $0xff, %r10
shlq $12, %r10
mov (%rbp,%r10,1), %r10
pop %rsi
pop %rcx
pop %rbp
pop %r14
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': False, 'size': 2, 'type': 'addresses_RW', 'congruent': 0}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'same': True, 'NT': False, 'AVXalign': False, 'size': 8, 'type': 'addresses_RW', 'congruent': 0}}
<gen_prepare_buffer>
{'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 4, 'type': 'addresses_WC_ht', 'congruent': 8}, 'OP': 'STOR'}
{'dst': {'same': False, 'congruent': 2, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 7, 'type': 'addresses_WT_ht'}}
{'dst': {'same': False, 'congruent': 1, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 6, 'type': 'addresses_WT_ht'}}
{'32': 21829}
32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32
*/
| 52.235955 | 2,999 | 0.662938 |
797001174c9cb259d9abfb94c67db8da5034f689 | 984 | dart | Dart | milkton_executive/lib/app/views/landing/landingView.dart | GEPTON-INFOTECH/dragonfly | 6044f76493f61676eae395ba860324eafb97424e | [
"Apache-2.0"
] | 1 | 2021-11-17T11:54:35.000Z | 2021-11-17T11:54:35.000Z | milkton_executive/lib/app/views/landing/landingView.dart | GEPTON-INFOTECH/dragonfly | 6044f76493f61676eae395ba860324eafb97424e | [
"Apache-2.0"
] | 3 | 2021-06-21T20:18:23.000Z | 2021-08-30T20:46:19.000Z | milkton_executive/lib/app/views/landing/landingView.dart | GEPTON-INFOTECH/dragonfly | 6044f76493f61676eae395ba860324eafb97424e | [
"Apache-2.0"
] | null | null | null | import 'package:flutter/material.dart';
import 'package:milkton_executive/app/views/home/homeView.dart';
import 'package:milkton_executive/app/views/login/loginScreen.dart';
import 'package:shared_preferences/shared_preferences.dart';
class LandingView extends StatefulWidget {
@override
_LandingViewState createState() => _LandingViewState();
}
class _LandingViewState extends State<LandingView> {
bool _isLoggedIn;
@override
Widget build(BuildContext context) {
return FutureBuilder(
future: checkLogin(),
builder: (context, response) {
if (_isLoggedIn == null) {
return LoginView();
} else {
if (_isLoggedIn) {
return HomeView();
} else {
return LoginView();
}
}
},
);
}
Future checkLogin() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
setState(() {
_isLoggedIn = prefs.getBool('isLoggedIn');
});
}
}
| 25.230769 | 68 | 0.651423 |
6fc4b1dc5e708628b657916e1ff078663cfb2780 | 965 | lua | Lua | lua/config/plugins/vim-markdown.lua | kraxli/lvim-config | 39dcbfd90ee294e18563b57bf804e5898aa67ad4 | [
"MIT"
] | 1 | 2022-03-30T05:41:48.000Z | 2022-03-30T05:41:48.000Z | lua/config/plugins/vim-markdown.lua | kraxli/lvim-config | 39dcbfd90ee294e18563b57bf804e5898aa67ad4 | [
"MIT"
] | null | null | null | lua/config/plugins/vim-markdown.lua | kraxli/lvim-config | 39dcbfd90ee294e18563b57bf804e5898aa67ad4 | [
"MIT"
] | 1 | 2022-03-30T05:41:52.000Z | 2022-03-30T05:41:52.000Z |
vim.cmd([[
let g:vim_markdown_frontmatter = 1
let g:vim_markdown_strikethrough = 1
let g:vim_markdown_folding_disabled = 1
let g:vim_markdown_conceal = 1
let g:vim_markdown_conceal_code_blocks = 1
let g:vim_markdown_new_list_item_indent = 0
let g:vim_markdown_toc_autofit = 0
let g:vim_markdown_follow_anchor = 0
let g:vim_markdown_no_extensions_in_markdown = 1
let g:vim_markdown_edit_url_in = 'vsplit'
" let g:vim_markdown_fenced_languages = [
" \ 'c++=cpp',
" \ 'viml=vim',
" \ 'bash=sh',
" \ 'ini=dosini',
" \ 'js=javascript',
" \ 'json=javascript',
" \ 'jsx=javascriptreact',
" \ 'tsx=typescriptreact',
" \ 'docker=Dockerfile',
" \ 'makefile=make',
" \ 'py=python'
" \ ]
" --------------------------------------------"
" Plugin MarkdownPreview
" --------------------------------------------"
command! Pv :MarkdownPreview
]])
| 29.242424 | 52 | 0.558549 |
c3a51d856680fd54798bdc5c8eabbbdf8234b1a9 | 4,019 | swift | Swift | SnackView/SnackView Library/SnackView Items/SVTextFieldItem.swift | lcg5450/SnackView | d7119dade821992a20dd0b33ef7ac4fc43848ae3 | [
"Apache-2.0"
] | null | null | null | SnackView/SnackView Library/SnackView Items/SVTextFieldItem.swift | lcg5450/SnackView | d7119dade821992a20dd0b33ef7ac4fc43848ae3 | [
"Apache-2.0"
] | null | null | null | SnackView/SnackView Library/SnackView Items/SVTextFieldItem.swift | lcg5450/SnackView | d7119dade821992a20dd0b33ef7ac4fc43848ae3 | [
"Apache-2.0"
] | 1 | 2019-12-02T11:10:41.000Z | 2019-12-02T11:10:41.000Z | //
// SVTextFieldItem.swift
// SnackView
//
// Created by Luca Casula on 15/11/17.
// Copyright © 2017 Luca Casula. All rights reserved.
//
import UIKit
/** SVTextFieldItem is an SVItem with which to show a placeholder text and a UITextField.
You can access to text field content using the 'text' property of SVTextFieldItem.
*/
public class SVTextFieldItem: SVItem {
private(set) var placeholder: String
private(set) var isSecure: Bool
// MARK: - Private variables
private var textField: UITextField!
// MARK: - Public variables
public var text: String? {
get {
return self.textField.text
}
set {
self.textField.text = newValue
}
}
// MARK: - Initialization Method
/**
Initialization method for SVTextFieldItem view. You can customize this item with a placeholder text and with a boolean value to set UITextField as secure text entry.
- parameter placeholder: The placeholder text to show on left item and as placeholder for UITextField
- parameter isSecureField: A boolean value to indicate if UITextField is secure text entry
**Note that label text on the left will be rendered as uppercased text**.
To force the placeholder text to be rendered in multi-line please enter **\n** where you want the text to wrap.
**Here an example of wrapped text**:
```
SVTextFieldItem(withPlaceholder: "Repeat\nPassword",
isSecureField: true)
```
*/
public init(withPlaceholder placeholder: String, isSecureField isSecure: Bool) {
self.placeholder = placeholder
self.isSecure = isSecure
super.init()
//Add title item
let titleLabel = UILabel()
titleLabel.translatesAutoresizingMaskIntoConstraints = false
titleLabel.text = placeholder.uppercased()
titleLabel.textAlignment = .right
titleLabel.textColor = grayTextColor
titleLabel.font = UIFont.systemFont(ofSize: 14)
titleLabel.numberOfLines = 0
self.addSubview(titleLabel)
//Add constraints to titleLabel
let titleHContraints = NSLayoutConstraint.constraints(withVisualFormat: "H:|-[titleLabel(==\(self.leftContentWidth))]", options: [], metrics: nil, views: ["titleLabel": titleLabel])
self.addConstraints(titleHContraints)
let titleVContraints = NSLayoutConstraint.constraints(withVisualFormat: "V:|-[titleLabel(>=28)]-|", options: [], metrics: nil, views: ["titleLabel": titleLabel])
self.addConstraints(titleVContraints)
//Add text field item
textField = UITextField()
textField.isSecureTextEntry = isSecure
textField.translatesAutoresizingMaskIntoConstraints = false
textField.borderStyle = .none
textField.placeholder = self.removeNewLine(fromString: placeholder)
self.addSubview(textField)
//Add constraints to textField
if let _textField = textField {
let textFieldHContraints = NSLayoutConstraint.constraints(withVisualFormat: "H:[titleLabel]-[textfield]-|", options: [], metrics: nil, views: ["titleLabel": titleLabel, "textfield": _textField])
self.addConstraints(textFieldHContraints)
let textFieldVContraints = NSLayoutConstraint.constraints(withVisualFormat: "V:|-[textfield]-|", options: [], metrics: nil, views: ["textfield": _textField])
self.addConstraints(textFieldVContraints)
}
}
required public convenience init?(coder aDecoder: NSCoder) {
return nil
}
// MARK: - Custom stuff
/** This is a private function that remove the occurence of strings **\n** and **\r** and replace it with a white space. */
private func removeNewLine(fromString string: String) -> String {
var result = string.replacingOccurrences(of: "\r", with: " ")
result = result.replacingOccurrences(of: "\n", with: " ")
return result
}
}
| 37.915094 | 206 | 0.66957 |
ffef0061fae8f590eb4c5285993628e65ce44452 | 801 | html | HTML | platforms/android/app/src/main/assets/www/templates/addon-user-profile-field-menu.html | lewiscarr/andnowww | 52fd9c8abd1d324b965eeef4410628352c714384 | [
"Apache-2.0"
] | null | null | null | platforms/android/app/src/main/assets/www/templates/addon-user-profile-field-menu.html | lewiscarr/andnowww | 52fd9c8abd1d324b965eeef4410628352c714384 | [
"Apache-2.0"
] | 4 | 2021-05-11T17:04:53.000Z | 2022-02-26T07:53:53.000Z | platforms/android/app/src/main/assets/www/templates/addon-user-profile-field-menu.html | lewiscarr/andnowww | 52fd9c8abd1d324b965eeef4410628352c714384 | [
"Apache-2.0"
] | 1 | 2021-05-07T14:35:10.000Z | 2021-05-07T14:35:10.000Z | <ion-item *ngIf="!edit && field && field.name"><h2>{{ field.name }}</h2><p><core-format-text [text]="field.value" [contextLevel]="contextLevel" [contextInstanceId]="contextInstanceId" [courseId]="courseId"></core-format-text></p></ion-item><ion-item *ngIf="edit && field && field.shortname" text-wrap [formGroup]="form"><ion-label stacked [core-mark-required]="field.required">{{ field.name }}</ion-label><ion-select [formControlName]="field.modelName" [placeholder]="'core.choosedots' | translate" interface="action-sheet"><ion-option value="">{{ 'core.choosedots' | translate }}</ion-option><ion-option *ngFor="let option of field.options" [value]="option">{{option}}</ion-option></ion-select><core-input-errors item-content [control]="form.controls[field.modelName]"></core-input-errors></ion-item> | 801 | 801 | 0.716604 |
fd57972c8c5e9a1a6c8f824ffb7ba9fcec77dc30 | 2,926 | h | C | inc/lcd_hd44780.h | Furmanchuk/glsk_board | d892e1332cae46735ab9ff258ae0e653164dc9b5 | [
"MIT"
] | null | null | null | inc/lcd_hd44780.h | Furmanchuk/glsk_board | d892e1332cae46735ab9ff258ae0e653164dc9b5 | [
"MIT"
] | null | null | null | inc/lcd_hd44780.h | Furmanchuk/glsk_board | d892e1332cae46735ab9ff258ae0e653164dc9b5 | [
"MIT"
] | null | null | null | /**
* libsk GL-SK on-board LCD abstraction layer
*
* The display is WH1602B (based on HD44780 controller)
*/
#include "errors.h"
#include "pin.h"
#include <stdint.h>
/** Pointer to delay(uint32_t var) function defined as type */
typedef void (*sk_delay_func_t)(uint32_t);
struct sk_lcd {
/** HD44780 data pins (DB0..DB7 or DB4..DB7) represented as :c:type:`sk_pin_group` */
sk_pin_group *pin_group_data;
/** HD44780 register select pin (RS) represented as :c:type:`sk_pin` */
sk_pin *pin_rs;
/** HD44780 enable pin (E) represented as :c:type:`sk_pin` */
sk_pin *pin_en;
/** HD44780 enable pin (R/W) represented as :c:type:`sk_pin`.
* Set to NULL if not used (always grounded on board) */
sk_pin *pin_rw;
/** Display backlight pin. Set to NULL if not used */
sk_pin *pin_bkl;
/** Pointer to backlight control function (i.e. to set backlight LED PWM level).
* Set to NULL if not used. This way only two levels will be possible
* (0 for OFF and != 0 for ON) */
void (*set_backlight_func)(uint8_t);
/** Pointer to user-provided delay function with microsecond resolution.
* Set to NULL to use ms delay as a fallback */
sk_delay_func_t delay_func_us;
/** Pointer to user-provided delay function with millisecond resolution.
* Set to NULL to use us delay as a fallback */
sk_delay_func_t delay_func_ms;
/** Function which maps characters to LCD symbol table values.
* Set to NULL to use :c:func:`lcd_charmap_none` as default */
uint8_t (*charmap_func)(const char);
/** True for 4-bit HD44780 interface, False for 8-bit. Only 4-bit IF is supported for now */
unsigned int is4bitinterface : 1;
};
sk_err sk_lcd_set_backlight(struct sk_lcd *lcd, uint8_t level);
void lcd_print_char(struct sk_lcd *lcd, char ch);
/**
* Write string in DDRAM
*
* Note:
* It is possible to display a string of 16 characters
*/
void lcd_print_str(struct sk_lcd *lcd, char *str);
void lcd_clear(struct sk_lcd *lcd);
/**
* Set cursor position
* @x value range [0..16]
* @y value range [0..1]
*/
void lcd_set_cursor(struct sk_lcd *lcd, uint8_t x, uint8_t y);
// void __write_spec_symbol(struct sk_lcd *lcd);
/**
* Put character at current position on LCD
* @lcd: LCD object (:c:type:`sk_lcd`)
* @ch: char to be mapped using charmap_func and sent to LCD
*/
void sk_lcd_putchar(struct sk_lcd *lcd, const char ch);
/** Return cursor to begin (X=0, Y=0) position*/
void lcd_return_home(struct sk_lcd *lcd);
// Character map functions
// Charmap function maps characters to LCD symbol table values
/** Don't map. Use direct symbol values (1:1) */
uint8_t sk_lcd_charmap_none(const char c);
/** CP1251 (aka Windows-1251) char map
*
* This requires to compile with
* -finput-charset=UTF-8 as our sources are encoded in UTF-8
* -fexec-charset=cp1251 as we expect each char to be encoded in CP1251 when executing
*/
uint8_t sk_lcd_charmap_cp1251(const char c);
| 28.970297 | 93 | 0.706425 |
efafbb9a24982830e082cb59089ad4b4071044e6 | 291 | dart | Dart | match/lib/widgets/matchers_button.dart | ttskch/flutter-playground | 0e0ebfc48b54b308a3ae31843622e9dd92ade3ef | [
"MIT"
] | null | null | null | match/lib/widgets/matchers_button.dart | ttskch/flutter-playground | 0e0ebfc48b54b308a3ae31843622e9dd92ade3ef | [
"MIT"
] | null | null | null | match/lib/widgets/matchers_button.dart | ttskch/flutter-playground | 0e0ebfc48b54b308a3ae31843622e9dd92ade3ef | [
"MIT"
] | null | null | null | import 'package:flutter/material.dart';
class MatchersButton extends StatelessWidget {
@override
Widget build(BuildContext context) {
return IconButton(
icon: Icon(Icons.forum),
onPressed: () {
Navigator.of(context).pushNamed('/matchers');
},
);
}
}
| 20.785714 | 53 | 0.649485 |
91f6a1d30abbb05ad9fc5b1e4ba73e624bedb9b2 | 563 | asm | Assembly | libsrc/math/mbf32/c/sccz80/floor.asm | ahjelm/z88dk | c4de367f39a76b41f6390ceeab77737e148178fa | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/math/mbf32/c/sccz80/floor.asm | C-Chads/z88dk | a4141a8e51205c6414b4ae3263b633c4265778e6 | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/math/mbf32/c/sccz80/floor.asm | C-Chads/z88dk | a4141a8e51205c6414b4ae3263b633c4265778e6 | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z |
SECTION code_fp_mbf32
PUBLIC floor
EXTERN msbios
EXTERN ___mbf32_setup_single
EXTERN ___mbf32_return
EXTERN ___mbf32_FPADD
EXTERN ___mbf32_FPREG
EXTERN ___mbf32_discard_fraction
floor:
call ___mbf32_setup_single
call ___mbf32_discard_fraction
ld a,(___mbf32_FPREG+2) ;sign
rlca
jp nc,___mbf32_return
; This is negative, so we have to subtract one
ld bc,$8180
ld de,$0000
IF __CPU_INTEL__|__CPU_GBZ80__
call ___mbf32_FPADD
ELSE
ld ix,___mbf32_FPADD
call msbios
ENDIF
jp ___mbf32_return
| 18.766667 | 47 | 0.740675 |
33030065b5b2083f8a15967babebd9c665e0b507 | 5,774 | py | Python | src/usgsgeomag.py | jake9wi/spaceweather | a0e08033c3dc34835f8d5d46c6263b5f4b5f0877 | [
"MIT"
] | null | null | null | src/usgsgeomag.py | jake9wi/spaceweather | a0e08033c3dc34835f8d5d46c6263b5f4b5f0877 | [
"MIT"
] | null | null | null | src/usgsgeomag.py | jake9wi/spaceweather | a0e08033c3dc34835f8d5d46c6263b5f4b5f0877 | [
"MIT"
] | null | null | null | """Plot USGS geomag data."""
import argparse
import pathlib as pl
import datetime as dt
import matplotlib; matplotlib.use('cairo')
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
import matplotlib.ticker as mticker
import requests
import pandas as pd
import funcs
funcs.check_cwd(pl.Path.cwd())
DTG_FMT = '%j:%H'
parser = argparse.ArgumentParser()
group = parser.add_mutually_exclusive_group()
group.add_argument("--one", action='store_true',
help="Make one day graph.",
)
group.add_argument("--two", action='store_true',
help="Make two day graph.",
)
group.add_argument("--three", action='store_true',
help="Make three day graph.",
)
args = parser.parse_args()
if args.one:
deltaT = dt.timedelta(hours=24)
elif args.two:
deltaT = dt.timedelta(hours=48)
elif args.three:
deltaT = dt.timedelta(hours=72)
else:
raise Exception('Option three, two, or one must be present.')
now = dt.datetime.utcnow().isoformat(timespec='minutes')
end = (dt.datetime.utcnow() - deltaT).isoformat(timespec='minutes')
def get_dst():
"""Retirve DST data."""
col_width = [
(0, 23),
(24, 27),
(32, 40),
]
colnames = [
'dtg',
'doy',
'dst',
]
payload = {
'id': 'USGS',
'elements': 'UX4',
'format': 'iaga2002',
'sampling_period': '60',
'type': 'variation',
'endtime': now,
'starttime': end,
}
url = 'https://geomag.usgs.gov/ws/data/'
r = requests.get(url, params=payload)
r.raise_for_status()
tmp = pl.Path('./src/aaa.tmp')
tmp.write_text(r.text)
data = pd.read_fwf(
tmp,
colspecs=col_width,
header=None,
names=colnames,
skiprows=21,
na_values='99999.00',
parse_dates=[0],
)
tmp.unlink()
return data
def get_bou():
"""Retrive H data for Boulder."""
col_width = [
(0, 23),
(24, 27),
(32, 40),
]
colnames = [
'dtg',
'doy',
'H',
]
payload = {
'id': 'BOU',
'elements': 'H',
'format': 'iaga2002',
'sampling_period': '60',
'type': 'variation',
'endtime': now,
'starttime': end,
}
r = requests.get('https://geomag.usgs.gov/ws/data/', params=payload)
r.raise_for_status()
tmp = pl.Path('./src/aaa.tmp')
tmp.write_text(r.text)
data = pd.read_fwf(
tmp,
colspecs=col_width,
header=None,
names=colnames,
skiprows=21,
na_values='99999.00',
parse_dates=[0],
)
tmp.unlink()
return data
def get_frd():
"""Retrive H data for Fredricksburg."""
col_width = [
(0, 23),
(24, 27),
(32, 40),
]
colnames = [
'dtg',
'doy',
'H',
]
payload = {
'id': 'FRD',
'elements': 'H',
'format': 'iaga2002',
'sampling_period': '60',
'type': 'variation',
'endtime': now,
'starttime': end,
}
r = requests.get('https://geomag.usgs.gov/ws/data/', params=payload)
r.raise_for_status()
tmp = pl.Path('./src/aaa.tmp')
tmp.write_text(r.text)
data = pd.read_fwf(
tmp,
colspecs=col_width,
header=None,
names=colnames,
skiprows=21,
na_values='99999.00',
parse_dates=[0],
)
tmp.unlink()
return data
dst = get_dst()
bou = get_bou()
frd = get_frd()
###
plt.style.use(r'./src/my_style')
fig = plt.figure(
num=1,
figsize=(10, 20),
tight_layout=False,
constrained_layout=True,
)
fig.suptitle("USGS Mag")
ax0 = plt.subplot2grid((2, 2), (0, 0), rowspan=1, colspan=2)
ax1 = plt.subplot2grid((2, 2), (1, 0), rowspan=1, colspan=1)
ax2 = plt.subplot2grid((2, 2), (1, 1), rowspan=1, colspan=1)
ax0.plot(
dst['dtg'],
dst['dst'],
lw=0.8,
)
ax0.axhline(y=0)
ax0.set_title("DST")
ax0.set_xlabel("Time (DoY:Hr)")
ax0.set_ylabel("DST (nT)")
if dst['dst'].max() <= 0:
dstmax = 10
else:
dstmax = dst['dst'].max() + 1
ax0.set_ylim(
[
dst['dst'].min() - 1,
dstmax,
],
)
ax0.yaxis.set_major_formatter(mticker.FormatStrFormatter('% 1.2f'))
ax0.xaxis.set_major_formatter(mdates.DateFormatter(DTG_FMT))
ax0.xaxis.set_minor_formatter(mdates.DateFormatter(DTG_FMT))
ax0.grid(b=True, axis='x', which='Major', lw=0.8)
ax1.scatter(
bou['dtg'],
bou['H'],
s=2,
)
ax1.set_title("H (Bou)")
ax1.set_xlabel("Time (DoY:Hr)")
ax1.set_ylabel("H (nT)")
ax1.set_ylim(
[
bou['H'].min() - 1,
bou['H'].max() + 1,
],
)
ax1.yaxis.set_major_formatter(mticker.FormatStrFormatter('% 1.0f'))
ax1.xaxis.set_major_formatter(mdates.DateFormatter(DTG_FMT))
ax1.xaxis.set_minor_formatter(mdates.DateFormatter(DTG_FMT))
# ax1.xaxis.set_major_locator(mdates.WeekdayLocator(interval=10))
ax1.grid(b=True, axis='x', which='Major', lw=0.8)
for label in ax1.xaxis.get_ticklabels():
label.set_rotation(45)
ax2.scatter(
frd['dtg'],
frd['H'],
s=2,
)
ax2.set_title("H (Frd)")
ax2.set_xlabel("Time (DoY:Hr)")
ax2.set_ylabel("H (nT)")
ax2.set_ylim(
[
frd['H'].min() - 1,
frd['H'].max() + 1,
],
)
ax2.yaxis.set_major_formatter(mticker.FormatStrFormatter('% 1.0f'))
ax2.xaxis.set_major_formatter(mdates.DateFormatter(DTG_FMT))
ax2.xaxis.set_minor_formatter(mdates.DateFormatter(DTG_FMT))
# ax2.xaxis.set_major_locator(mdates.WeekdayLocator(interval=10))
ax2.grid(b=True, axis='x', which='Major', lw=0.8)
for label in ax2.xaxis.get_ticklabels():
label.set_rotation(45)
fig.savefig('./web/img/usgsmag.svg')
plt.close(1)
| 20.621429 | 72 | 0.574991 |
401d58e7c9c55756d5a3f952b284f72840c16c31 | 2,639 | py | Python | src/sensorsim/montages.py | adriengoeller/python-sensor-simulation | ecc4c008247aaf97e82bce345f452676b39f487b | [
"MIT"
] | null | null | null | src/sensorsim/montages.py | adriengoeller/python-sensor-simulation | ecc4c008247aaf97e82bce345f452676b39f487b | [
"MIT"
] | null | null | null | src/sensorsim/montages.py | adriengoeller/python-sensor-simulation | ecc4c008247aaf97e82bce345f452676b39f487b | [
"MIT"
] | null | null | null | """
This module provides some classical electronic circuits as functions and the sensor membrane
"""
from math import pi, asin
class Membrane:
"""
Sensor membrane : (formulas from wikipedia and Capteurs : Pressions, accélération et forces à pont de Wheastone, Jean Louis Rouvet - Giacintec)
Simulate membrane sensor for input pressure
- Use compute_force to get the force applied on the surface
- Use compute_def_z to get z displacement
- Use get_def_x to get x elongation.
Params :
- E : environment object
- EIgz : Young modulus x Igz
- diameter : diameter of the membrane
- P_calib : static pressure on the other side of the membrane
- e : thickness (m) (default : 1e-5)
- Y : young modulus (Pa)
- alpha : time inertia coefficient (simulate delay)
"""
# https://fr.wikipedia.org/wiki/Th%C3%A9orie_des_poutres
def __init__(self,E , EIgz, diameter, P_calib, e = 1e-5, Y = 130e9, alpha = 0.4):
self.E = E
self.Y = Y
self.EIgz = EIgz
self.S = (diameter/2)**2 *pi
self.L = diameter
self.F = 0
self.epais = e
self.P_calib = P_calib
self.L_def = diameter
self.alpha = alpha
def compute_force(self):
self.F = (self.E.P-self.P_calib)/self.S
def compute_def_z(self,x=None):
if x == None :
x = self.L/2
# out =
return 3*(self.E.P- self.P_calib) * ( 1 - 0.4**2 ) / (16 * self.Y*self.epais**3 ) * (self.L/2)**4
# return 1/self.EIgz * (self.F/12*(x)**3-self.F*self.L**2*(x)/16)
def check_state(self):
return (self.L_def-self.L)/self.L
def compute_def_x(self,):
"""
"""
y = self.compute_def_z()
L_def = 2*(y**2+self.L**2/4)**.5
L_def *= (1+ 0.409e-6 + 0.686e-9*self.E.T)
self.L_def = self.alpha*self.L_def + (1-self.alpha)*L_def
return self.L_def
def get_def_x(self):
self.compute_force()
return self.compute_def_x()
def wheastone(V_0, R1,R2,R3,R4):
"""
Wheastone formula function
Params :
- V_0 working voltage
- R1, R2, R3, R4 the resistances
"""
Vs = V_0 * (R4/(R1+R4)-R3/(R2+R3))
return Vs
def montage_ampli_op(V1,V2,R1,R2,R3,R4):
"""
amplification stage of the sensor.
Here a substractor AOP is coded
Params :
- V_1, V_2 input voltage
- R1, R2, R3, R4 the resistances
"""
Vs = (R1+R2)/R1 * R4/(R3+R4) * V2 - R2/R1*V1
return Vs | 27.778947 | 151 | 0.561197 |
c70226def277606a91a4bfd0fc7d81588c74815c | 3,695 | dart | Dart | lib/src/adapter/version_info_adapter.dart | duolingo4d/duolingo4d | b3083c8de390b255f0ba6aa34651c62da323e4bf | [
"BSD-3-Clause"
] | 10 | 2022-01-05T15:39:31.000Z | 2022-03-01T08:32:16.000Z | lib/src/adapter/version_info_adapter.dart | myConsciousness/duolingo4d | b3083c8de390b255f0ba6aa34651c62da323e4bf | [
"BSD-3-Clause"
] | 33 | 2021-12-05T02:00:19.000Z | 2022-01-04T03:41:35.000Z | lib/src/adapter/version_info_adapter.dart | myConsciousness/duolingo4d | b3083c8de390b255f0ba6aa34651c62da323e4bf | [
"BSD-3-Clause"
] | 1 | 2022-01-17T02:26:48.000Z | 2022-01-17T02:26:48.000Z | // Copyright (c) 2021, Kato Shinya. All rights reserved.
// Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// Package imports:
import 'package:http/http.dart';
import 'package:json_response/json_response.dart';
// Project imports:
import 'package:duolingo4d/src/adapter/adapter.dart';
import 'package:duolingo4d/src/response/versioninfo/version_info_response.dart';
/// This class provides the function to convert the response
/// returned from the version info API into the [VersionInfoResponse] format.
class VersionInfoAdapter extends Adapter<VersionInfoResponse> {
/// Returns the new instance of [VersionInfoAdapter].
VersionInfoAdapter.newInstance();
@override
VersionInfoResponse convert({
required Response response,
}) =>
_buildVersionInfoResponse(
response: response,
json: super.jsonDecode(response: response),
);
/// Returns [VersionInfoResponse] based on [response] and [json].
VersionInfoResponse _buildVersionInfoResponse({
required Response response,
required Json json,
}) =>
VersionInfoResponse.from(
statusCode: response.statusCode,
reasonPhrase: response.reasonPhrase ?? '',
headers: response.headers,
ttsCdnUrl: json.getString(key: 'tts_cdn_url'),
ageRestrictionLimit: json.getInt(
key: 'age_restriction_limit',
),
country: json.getString(key: 'country'),
apiBaseUrl: json.getString(key: 'api_base_url'),
speechHost: json.getString(key: 'speech_host'),
ttsBaseUrl: json.getString(key: 'tts_base_url'),
dictBaseUrl: json.getString(key: 'dict_base_url'),
ttsVoiceConfiguration: _buildTtsVoiceConfiguration(
json: json.get(key: 'tts_voice_configuration'),
),
supportedDirections: _buildSupportedDirections(
json: json.get(key: 'supported_directions'),
),
);
/// Returns [TtsVoiceConfiguration] based on [json].
TtsVoiceConfiguration _buildTtsVoiceConfiguration({
required Json json,
}) {
return TtsVoiceConfiguration.from(
path: json.getString(key: 'path'),
multiVoiceDirections: _buildMultiVoiceDirections(
json: json.get(key: 'multi_voices'),
),
voiceDirections: _buildVoiceDirections(
json: json.get(key: 'voices'),
),
);
}
/// Returns [MultiVoiceDirection] list based on [json].
List<MultiVoiceDirection> _buildMultiVoiceDirections({
required Json json,
}) {
final multiVoiceDirections = <MultiVoiceDirection>[];
for (final key in json.keySet) {
multiVoiceDirections.add(
MultiVoiceDirection.from(
language: key,
voices: json.getStringValues(key: key),
),
);
}
return multiVoiceDirections;
}
/// Returns [VoiceDirection] list based on [json].
List<VoiceDirection> _buildVoiceDirections({
required Json json,
}) {
final voiceDirections = <VoiceDirection>[];
for (final key in json.keySet) {
voiceDirections.add(
VoiceDirection.from(
language: key,
voice: json.getString(key: key),
),
);
}
return voiceDirections;
}
/// Returns [SupportedDirection] list based on [json].
List<SupportedDirection> _buildSupportedDirections({
required Json json,
}) {
final supportedDirections = <SupportedDirection>[];
for (final key in json.keySet) {
supportedDirections.add(
SupportedDirection.from(
fromLanguage: key,
learningLanguages: json.getStringValues(key: key),
),
);
}
return supportedDirections;
}
}
| 30.04065 | 80 | 0.670095 |
ca07af346d6ca319ce9a0d803bbf2d3f6d7d77e3 | 6,991 | java | Java | src/main/java/burp/ui/tabs/FuzzUIHandler.java | Chronos-LYH/Log4j2Scan | e8d03b057efc32007cc9a391e226a57f3edce313 | [
"Apache-2.0"
] | 32 | 2021-12-16T14:54:15.000Z | 2022-03-27T10:21:36.000Z | src/main/java/burp/ui/tabs/FuzzUIHandler.java | Chronos-LYH/Log4j2Scan | e8d03b057efc32007cc9a391e226a57f3edce313 | [
"Apache-2.0"
] | null | null | null | src/main/java/burp/ui/tabs/FuzzUIHandler.java | Chronos-LYH/Log4j2Scan | e8d03b057efc32007cc9a391e226a57f3edce313 | [
"Apache-2.0"
] | 22 | 2021-12-16T14:10:26.000Z | 2022-03-27T10:22:02.000Z | package burp.ui.tabs;
import burp.BurpExtender;
import burp.utils.Config;
import burp.utils.UIUtil;
import javax.swing.*;
import javax.swing.border.EmptyBorder;
import java.util.ArrayList;
public class FuzzUIHandler {
private BurpExtender parent;
private JPanel mainPanel;
private JTabbedPane settingsPanel;
private JComboBox fuzzModeSelector;
private JCheckBox enabled_fuzz_header;
private JCheckBox enabled_fuzz_url;
private JCheckBox enabled_fuzz_body;
private JCheckBox enabled_fuzz_cookie;
private JCheckBox enabled_fuzz_body_form;
private JCheckBox enabled_fuzz_body_json;
private JCheckBox enabled_fuzz_body_xml;
private JCheckBox enabled_fuzz_body_multipart;
public FuzzUIHandler(BurpExtender parent) {
this.parent = parent;
}
public JPanel getPanel() {
mainPanel = new JPanel();
mainPanel.setAlignmentX(0.0f);
mainPanel.setBorder(new EmptyBorder(10, 10, 10, 10));
mainPanel.setLayout(new BoxLayout(mainPanel, 1));
settingsPanel = new JTabbedPane();
settingsPanel.addTab("Basic", getFuzzSettingPanel());
mainPanel.add(settingsPanel);
loadConfig();
return mainPanel;
}
public JPanel getFuzzSettingPanel() {
JPanel panel1 = new JPanel();
panel1.setAlignmentX(0.0f);
panel1.setBorder(new EmptyBorder(10, 10, 10, 10));
panel1.setLayout(new BoxLayout(panel1, 1));
JPanel subPanel0 = UIUtil.GetXJPanel();
fuzzModeSelector = new JComboBox(GetFuzzModes());
fuzzModeSelector.setMaximumSize(fuzzModeSelector.getPreferredSize());
fuzzModeSelector.setSelectedIndex(0);
subPanel0.add(new JLabel("Fuzz Mode: "));
subPanel0.add(fuzzModeSelector);
JPanel subPanel1 = UIUtil.GetXJPanel();
enabled_fuzz_header = new JCheckBox();
subPanel1.add(new JLabel("Enable Header Fuzz: "));
subPanel1.add(enabled_fuzz_header);
JPanel subPanel2 = UIUtil.GetXJPanel();
enabled_fuzz_url = new JCheckBox();
subPanel2.add(new JLabel("Enable Url Fuzz: "));
subPanel2.add(enabled_fuzz_url);
JPanel subPanel3 = UIUtil.GetXJPanel();
enabled_fuzz_cookie = new JCheckBox();
subPanel3.add(new JLabel("Enable Cookie Fuzz: "));
subPanel3.add(enabled_fuzz_cookie);
JPanel subPanel4 = UIUtil.GetXJPanel();
enabled_fuzz_body = new JCheckBox();
enabled_fuzz_body.addActionListener(e -> {
if (enabled_fuzz_body.isSelected()) {
enabled_fuzz_body_form.setEnabled(true);
enabled_fuzz_body_json.setEnabled(true);
enabled_fuzz_body_xml.setEnabled(true);
enabled_fuzz_body_multipart.setEnabled(true);
} else {
enabled_fuzz_body_form.setSelected(false);
enabled_fuzz_body_json.setSelected(false);
enabled_fuzz_body_xml.setSelected(false);
enabled_fuzz_body_multipart.setSelected(false);
enabled_fuzz_body_form.setEnabled(false);
enabled_fuzz_body_json.setEnabled(false);
enabled_fuzz_body_xml.setEnabled(false);
enabled_fuzz_body_multipart.setEnabled(false);
}
});
subPanel4.add(new JLabel("Enable Body Fuzz: "));
subPanel4.add(enabled_fuzz_body);
JPanel subPanel5 = UIUtil.GetXJPanel();
enabled_fuzz_body_form = new JCheckBox();
subPanel5.add(new JLabel("Enable Body-Form Fuzz: "));
subPanel5.add(enabled_fuzz_body_form);
JPanel subPanel6 = UIUtil.GetXJPanel();
enabled_fuzz_body_json = new JCheckBox();
subPanel6.add(new JLabel("Enable Body-Json Fuzz: "));
subPanel6.add(enabled_fuzz_body_json);
JPanel subPanel7 = UIUtil.GetXJPanel();
enabled_fuzz_body_xml = new JCheckBox();
subPanel7.add(new JLabel("Enable Body-Xml Fuzz: "));
subPanel7.add(enabled_fuzz_body_xml);
JPanel subPanel8 = UIUtil.GetXJPanel();
enabled_fuzz_body_multipart = new JCheckBox();
subPanel8.add(new JLabel("Enable Body-Multipart Fuzz: "));
subPanel8.add(enabled_fuzz_body_multipart);
JButton applyBtn = new JButton("Apply");
applyBtn.setMaximumSize(applyBtn.getPreferredSize());
applyBtn.addActionListener(e -> {
this.saveConfig();
});
panel1.add(subPanel0);
panel1.add(subPanel1);
panel1.add(subPanel2);
panel1.add(subPanel3);
panel1.add(subPanel4);
panel1.add(subPanel5);
panel1.add(subPanel6);
panel1.add(subPanel7);
panel1.add(subPanel8);
panel1.add(applyBtn);
return panel1;
}
private void loadConfig() {
fuzzModeSelector.setSelectedItem(Config.get(Config.FUZZ_MODE, Config.FuzzMode.EachFuzz.name()));
enabled_fuzz_header.setSelected(Config.getBoolean(Config.ENABLED_FUZZ_HEADER, true));
enabled_fuzz_url.setSelected(Config.getBoolean(Config.ENABLED_FUZZ_URL, true));
enabled_fuzz_body.setSelected(Config.getBoolean(Config.ENABLED_FUZZ_BODY, true));
enabled_fuzz_cookie.setSelected(Config.getBoolean(Config.ENABLED_FUZZ_COOKIE, true));
enabled_fuzz_body_form.setSelected(Config.getBoolean(Config.ENABLED_FUZZ_BODY_FORM, true));
enabled_fuzz_body_json.setSelected(Config.getBoolean(Config.ENABLED_FUZZ_BODY_JSON, true));
enabled_fuzz_body_multipart.setSelected(Config.getBoolean(Config.ENABLED_FUZZ_BODY_MULTIPART, true));
enabled_fuzz_body_xml.setSelected(Config.getBoolean(Config.ENABLED_FUZZ_BODY_XML, true));
}
private void saveConfig() {
Config.set(Config.FUZZ_MODE, fuzzModeSelector.getSelectedItem().toString());
Config.setBoolean(Config.ENABLED_FUZZ_HEADER, enabled_fuzz_header.isSelected());
Config.setBoolean(Config.ENABLED_FUZZ_URL, enabled_fuzz_url.isSelected());
Config.setBoolean(Config.ENABLED_FUZZ_BODY, enabled_fuzz_body.isSelected());
Config.setBoolean(Config.ENABLED_FUZZ_COOKIE, enabled_fuzz_cookie.isSelected());
Config.setBoolean(Config.ENABLED_FUZZ_BODY_FORM, enabled_fuzz_body_form.isSelected());
Config.setBoolean(Config.ENABLED_FUZZ_BODY_JSON, enabled_fuzz_body_json.isSelected());
Config.setBoolean(Config.ENABLED_FUZZ_BODY_MULTIPART, enabled_fuzz_body_multipart.isSelected());
Config.setBoolean(Config.ENABLED_FUZZ_BODY_XML, enabled_fuzz_body_xml.isSelected());
JOptionPane.showMessageDialog(mainPanel, "Apply success!");
}
private String[] GetFuzzModes() {
ArrayList<String> algStrs = new ArrayList<String>();
Config.FuzzMode[] backends = Config.FuzzMode.values();
for (Config.FuzzMode backend : backends) {
algStrs.add(backend.name().replace('_', '/'));
}
return algStrs.toArray(new String[algStrs.size()]);
}
}
| 41.613095 | 109 | 0.687884 |
2a2bad430b65c61cd837eb9e176ac1784aa7fe23 | 47 | java | Java | src/pkg/model/DataBase.java | AiiDeHua/CISC475-19S | f9905ed92381c776b6337c9d71ab75dc99dc197a | [
"MIT"
] | null | null | null | src/pkg/model/DataBase.java | AiiDeHua/CISC475-19S | f9905ed92381c776b6337c9d71ab75dc99dc197a | [
"MIT"
] | null | null | null | src/pkg/model/DataBase.java | AiiDeHua/CISC475-19S | f9905ed92381c776b6337c9d71ab75dc99dc197a | [
"MIT"
] | null | null | null | package pkg.model;
public class DataBase {
} | 9.4 | 23 | 0.723404 |
4b8f4cef80b83c2ec633b9e21abc0196a4fc6951 | 475 | asm | Assembly | libsrc/graphics/mc1000/clg.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/graphics/mc1000/clg.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/graphics/mc1000/clg.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | ;
; MC-1000 graphics library
;
; $Id: clg.asm $
;
;----------- GFX init -------------
SECTION code_clib
PUBLIC clg
PUBLIC _clg
PUBLIC ansi_cls
PUBLIC _ansi_cls
EXTERN generic_console_ioctl
INCLUDE "ioctl.def"
.clg
._clg
.ansi_cls
._ansi_cls
ld hl,1
push hl
ld hl,0
add hl,sp
ex de,hl
ld a,IOCTL_GENCON_SET_MODE
call generic_console_ioctl
pop hl
ret
| 13.571429 | 39 | 0.530526 |
a13703191fe54a4744d0448d4454f7dcb8528af3 | 13,630 | kt | Kotlin | app/src/main/kotlin/io/getstream/streamdraw/ui/screens/game/GameViewModel.kt | GetStream/stream-draw-android | efdaed81cffce0efb7541fbaaa5908a83beacfaf | [
"Apache-2.0"
] | 164 | 2022-03-24T03:35:43.000Z | 2022-03-31T14:40:30.000Z | app/src/main/kotlin/io/getstream/streamdraw/ui/screens/game/GameViewModel.kt | GetStream/stream-draw-android | efdaed81cffce0efb7541fbaaa5908a83beacfaf | [
"Apache-2.0"
] | null | null | null | app/src/main/kotlin/io/getstream/streamdraw/ui/screens/game/GameViewModel.kt | GetStream/stream-draw-android | efdaed81cffce0efb7541fbaaa5908a83beacfaf | [
"Apache-2.0"
] | 8 | 2022-03-26T15:50:50.000Z | 2022-03-30T03:25:17.000Z | /*
* Copyright 2022 Stream.IO, Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.getstream.streamdraw.ui.screens.game
import android.graphics.Bitmap
import androidx.compose.runtime.MutableState
import androidx.compose.runtime.State
import androidx.compose.runtime.mutableStateOf
import androidx.lifecycle.ViewModel
import androidx.lifecycle.ViewModelProvider
import androidx.lifecycle.viewModelScope
import com.google.firebase.database.DataSnapshot
import com.google.firebase.database.DatabaseError
import com.google.firebase.database.FirebaseDatabase
import com.google.firebase.database.ValueEventListener
import dagger.assisted.Assisted
import dagger.assisted.AssistedFactory
import dagger.assisted.AssistedInject
import io.getstream.chat.android.client.ChatClient
import io.getstream.chat.android.client.call.await
import io.getstream.chat.android.client.channel.subscribeFor
import io.getstream.chat.android.client.events.ChannelDeletedEvent
import io.getstream.chat.android.client.events.ChannelUpdatedByUserEvent
import io.getstream.chat.android.client.events.NewMessageEvent
import io.getstream.chat.android.client.events.UserStartWatchingEvent
import io.getstream.chat.android.client.events.UserStopWatchingEvent
import io.getstream.chat.android.client.models.Member
import io.getstream.chat.android.client.models.Message
import io.getstream.chat.android.client.models.User
import io.getstream.chat.android.client.utils.observable.Disposable
import io.getstream.chat.android.client.utils.onSuccessSuspend
import io.getstream.streamdraw.data.GameMessage
import io.getstream.streamdraw.extensions.gameStatus
import io.getstream.streamdraw.extensions.groupId
import io.getstream.streamdraw.extensions.groupName
import io.getstream.streamdraw.extensions.hostName
import io.getstream.streamdraw.extensions.selectedWord
import io.getstream.streamdraw.extensions.toBase64String
import io.getstream.streamdraw.extensions.winner
import io.getstream.streamdraw.network.RandomWordsFetcher
import io.getstream.streamdraw.utils.KEY_GAME_STATUS
import io.getstream.streamdraw.utils.KEY_HOST_NAME
import io.getstream.streamdraw.utils.KEY_NAME
import io.getstream.streamdraw.utils.KEY_SELECTED_WORD
import io.getstream.streamdraw.utils.KEY_WINNER
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.StateFlow
import kotlinx.coroutines.flow.filter
import kotlinx.coroutines.flow.mapLatest
import kotlinx.coroutines.launch
class GameViewModel @AssistedInject constructor(
private val chatClient: ChatClient,
private val randomWordsFetcher: RandomWordsFetcher,
@Assisted val cid: String
) : ViewModel() {
private val channelClient = chatClient.channel(cid)
private val _isHost: MutableState<Boolean> = mutableStateOf(false)
val isHost: State<Boolean> = _isHost
private val _gameStatus: MutableState<GameStatus> = mutableStateOf(GameStatus.START)
val gameStatus: State<GameStatus> = _gameStatus
private val _members: MutableState<List<Member>> = mutableStateOf(listOf())
val members: State<List<Member>> = _members
private val _winner: MutableStateFlow<String?> = MutableStateFlow(null)
val isWinner: Flow<Boolean> = _winner.filter { currentUser != null }.mapLatest {
it == currentUser?.name
}
private val _newDrawingImage: MutableState<String?> = mutableStateOf(null)
val newDrawingImage: State<String?> = _newDrawingImage
private val _newSingleMessage: MutableState<GameMessage?> = mutableStateOf(null)
val newSingleMessage: State<GameMessage?> = _newSingleMessage
private val _selectedWord = MutableStateFlow<String?>(null)
val selectedWord: StateFlow<String?> = _selectedWord
private val _randomWords = MutableStateFlow<List<String>?>(null)
val randomWords: StateFlow<List<String>?> = _randomWords
private val currentUser: User?
get() = chatClient.getCurrentUser()
var host: String? = null
private val firebaseDb =
FirebaseDatabase.getInstance().getReference(channelClient.groupId)
private val disposables: MutableList<Disposable> = mutableListOf()
init {
fetchChannelInformation()
subscribeChannelEvents()
subscribeNewMessageEvent()
subscribeUserWatchingEvent()
}
/** fetches the current channel information. */
private fun fetchChannelInformation() {
viewModelScope.launch(Dispatchers.IO) {
val result = channelClient.watch().await()
result.onSuccessSuspend {
host = it.hostName
_isHost.value = host == currentUser?.name
_selectedWord.value = it.selectedWord
_gameStatus.value = it.gameStatus
_members.value = it.members
if (isHost.value) {
fetchRandomWords()
} else {
subscribeFirebaseChannel()
sendJoinedMessage()
}
}
}
}
/** send a new joined hello message. */
private fun sendJoinedMessage() {
viewModelScope.launch(Dispatchers.IO) {
val user = currentUser ?: return@launch
chatClient.sendMessage(
channelType = channelClient.channelType,
channelId = channelClient.channelId,
message = Message(
text = "\uD83D\uDC4B ${user.name} has joined game."
)
).await()
}
}
/** subscribe the firebase channel. */
private fun subscribeFirebaseChannel() {
firebaseDb.addValueEventListener(object : ValueEventListener {
override fun onDataChange(snapshot: DataSnapshot) {
if (snapshot.exists()) {
_newDrawingImage.value = snapshot.getValue(String::class.java)
}
}
override fun onCancelled(p0: DatabaseError) = Unit
})
}
/** subscribe channel updated events. */
private fun subscribeChannelEvents() {
channelClient.subscribeFor<ChannelUpdatedByUserEvent> { event ->
val channel = event.channel
host = channel.hostName
_isHost.value = host == currentUser?.name
_selectedWord.value = channel.selectedWord
_gameStatus.value = channel.gameStatus
_winner.value = channel.winner
}.also { disposables.add(it) }
channelClient.subscribeFor<ChannelDeletedEvent> {
_gameStatus.value = GameStatus.DELETED
}
}
/** subscribe user watching events. */
private fun subscribeUserWatchingEvent() {
channelClient.subscribeFor<UserStartWatchingEvent> { event ->
val user = _members.value.find { it.user.name == event.user.name }
if (user == null) {
_members.value = _members.value + Member(user = event.user)
}
}
channelClient.subscribeFor<UserStopWatchingEvent> { event ->
_members.value = _members.value - Member(user = event.user)
if (isHost.value) {
sendLeftMessage(event.user)
}
}
}
/** subscribe new message events. */
private fun subscribeNewMessageEvent() {
channelClient.subscribeFor<NewMessageEvent> { event ->
val name = currentUser?.name
val sender = event.message.user.name
val selectedWord = selectedWord.value
val isAnswer = event.message.text.lowercase() == selectedWord?.lowercase()
if (isHost.value && sender != name && isAnswer) {
sendGameFinishEvent(sender)
}
_newSingleMessage.value = GameMessage(sender, event.message.text)
}
}
/** send game finish event by host. */
private fun sendGameFinishEvent(winner: String) {
viewModelScope.launch(Dispatchers.IO) {
// send a system message to the channel.
chatClient.sendMessage(
channelType = channelClient.channelType,
channelId = channelClient.channelId,
message = Message(
text = "Congratulation! $winner has correct the answer. \uD83C\uDF89"
)
).await()
// update channel information with the selected word.
val hostName = currentUser?.name ?: return@launch
channelClient.update(
extraData = mapOf(
KEY_NAME to hostName.groupName, // channel name.
KEY_HOST_NAME to hostName, // host name.
KEY_GAME_STATUS to GameStatus.FINISH.status, // game status to drawing start.,
KEY_WINNER to winner
)
).await()
}
if (isHost.value) {
firebaseDb.addListenerForSingleValueEvent(object : ValueEventListener {
override fun onDataChange(snapshot: DataSnapshot) {
if (snapshot.exists()) {
_newDrawingImage.value = snapshot.getValue(String::class.java)
}
}
override fun onCancelled(p0: DatabaseError) = Unit
})
}
}
/** fetch a random words from the network. */
private suspend fun fetchRandomWords() {
_randomWords.emit(randomWordsFetcher.getRandomWords())
}
/** set a selected word by host. */
fun setSelectedWord(word: String) {
viewModelScope.launch(Dispatchers.IO) {
_selectedWord.emit(word)
// send a system message to the channel.
chatClient.sendMessage(
channelType = channelClient.channelType,
channelId = channelClient.channelId,
message = Message(
text = "Host selected a word! Guess what the host is drawing! (group id: ${channelClient.groupId})",
)
).await()
// update channel information with the selected word.
val hostName = currentUser?.name ?: return@launch
channelClient.update(
extraData = mapOf(
KEY_NAME to hostName.groupName, // channel name.
KEY_HOST_NAME to hostName, // host name.
KEY_GAME_STATUS to GameStatus.START.status, // game status to drawing start.
KEY_SELECTED_WORD to word, // a selected word (answer).
)
).await()
}
}
/** send a message to the connected channel. */
fun sendChatMessage(message: String) {
val user = currentUser ?: return
viewModelScope.launch {
channelClient.sendMessage(
Message(user = user, text = message)
).await()
}
}
/** broadcast the bitmap to the connected channel. */
fun broadcastToChannel(bitmap: Bitmap) {
viewModelScope.launch {
bitmap.toBase64String()?.let { stringBitmap ->
firebaseDb.setValue(stringBitmap)
}
}
}
/** finish the winner confetti animation. */
fun finishWinnerAnimation() {
_winner.value = null
}
/** send a new joined hello message. */
private fun sendLeftMessage(user: User) {
viewModelScope.launch(Dispatchers.IO) {
chatClient.sendMessage(
channelType = channelClient.channelType,
channelId = channelClient.channelId,
message = Message(
user = user,
text = "${user.name} has left game."
)
).await()
}
}
/** restart game. */
fun restartGame() {
viewModelScope.launch(Dispatchers.IO) {
fetchRandomWords()
_selectedWord.value = null
_gameStatus.value = GameStatus.START
}
}
/** clear and dispose all connection resources. */
fun exitChannel() {
if (isHost.value) {
viewModelScope.launch {
chatClient.deleteChannel(
channelType = channelClient.channelType,
channelId = channelClient.channelId
).await()
}
}
// disconnect user.
chatClient.disconnect()
// dispose all subscribers.
disposables.forEach { it.dispose() }
}
override fun onCleared() {
super.onCleared()
exitChannel()
}
@AssistedFactory
interface GameAssistedFactory {
fun create(cid: String): GameViewModel
}
companion object {
fun provideFactory(
assistedFactory: GameAssistedFactory,
cid: String
): ViewModelProvider.Factory = object : ViewModelProvider.Factory {
@Suppress("UNCHECKED_CAST")
override fun <T : ViewModel?> create(modelClass: Class<T>): T {
return assistedFactory.create(cid) as T
}
}
}
}
| 36.937669 | 120 | 0.642773 |
dd233f526d0d20211e1d91f6307f83fba3111f9a | 3,322 | swift | Swift | app/SwiftyIB/SwiftyIB/SwiftyIB.swift | PeeJWeeJ/SwiftyIB | f23423d9d1bc169b63ebc3d32db67f883e1b60c5 | [
"MIT"
] | 1 | 2018-06-28T21:17:52.000Z | 2018-06-28T21:17:52.000Z | app/SwiftyIB/SwiftyIB/SwiftyIB.swift | GottaGetSwifty/SwiftyIB | f23423d9d1bc169b63ebc3d32db67f883e1b60c5 | [
"MIT"
] | 4 | 2018-06-02T17:32:34.000Z | 2018-09-16T00:58:38.000Z | app/SwiftyIB/SwiftyIB/SwiftyIB.swift | GottaGetSwifty/SwiftyIB | f23423d9d1bc169b63ebc3d32db67f883e1b60c5 | [
"MIT"
] | null | null | null | //
// SwiftyIB.swift
// SwiftyIB
//
// Created by Paul Fechner on 12/31/17.
// Copyright © 2017 peejweej.inc. All rights reserved.
//
import Foundation
import AppKit
public class SwiftyIB {
enum Error: LocalizedError {
case noResult(text: String)
var localizedDescription: String {
switch self {
case .noResult(let text):
return "No result found for \(text)"
}
}
}
let containingURL: URL
public init?(containingURL: URL) {
guard containingURL.hasDirectoryPath else{
return nil
}
self.containingURL = containingURL
}
private func findAllStorboardURLs() -> [URL] {
let allURLs = FilesFinder.getAllStoryboardFiles(in: self.containingURL) ?? []
return allURLs
}
private func findAllNibs() -> [URL] {
let allURLs = FilesFinder.getAllNibFiles(in: self.containingURL) ?? []
return allURLs
}
private func findAllAssetFolders() -> [URL] {
let allURLs = FilesFinder.getAllAssetFolders(in: self.containingURL) ?? []
return allURLs
}
public func buildStoryboards() -> [IBStoryboard] {
let allStoryboards = findAllStorboardURLs().map(StoryboardParser.init).compactMap{ $0.parse() }
return allStoryboards
}
public func buildNibs() -> [IBNib] {
let allNibs = findAllNibs().map(NibParser.init).compactMap { $0.parse() }
return allNibs
}
public func buildAssetFolders() -> AssetsContainer {
let result: AssetsContainer = findAllAssetFolders()
.map{AssetCatalogueParser(assetsURL: $0).parse()}
.reduce(AssetsContainer.emptyValue, +)
return result
}
public static func export(storboards: [IBStoryboard], to destination: URL, isAbsoluteURL: Bool) throws {
try StoryboardExporter.exportIdentifiers(storyboards: storboards, to: destination, isAbsoluteURL: isAbsoluteURL)
try StoryboardExporter.exportExtensions(storyboards: storboards, to: destination, isAbsoluteURL: isAbsoluteURL)
try StoryboardExporter.exportIBTypes(storyboards: storboards, to: destination, isAbsoluteURL: isAbsoluteURL)
try StoryboardExporter.exportIBTypeExtensions(storyboards: storboards, to: destination, isAbsoluteURL: isAbsoluteURL)
}
public static func export(nibs: [IBNib], to destination: URL, isAbsoluteURL: Bool) throws {
try NibExporter.exportIBNibTypes(to: destination, isAbsoluteURL: isAbsoluteURL)
try NibExporter.exportIdentifiers(nibs: nibs, to: destination, isAbsoluteURL: isAbsoluteURL)
try NibExporter.exportNibExtensions(nibs: nibs, to: destination, isAbsoluteURL: isAbsoluteURL)
try NibExporter.exportReuseExtensions(nibs: nibs, to: destination, isAbsoluteURL: isAbsoluteURL)
}
public static func export(assets: AssetsContainer, to destination: URL, isAbsoluteURL: Bool) throws {
if assets.isEmpty {
throw SwiftyIB.Error.noResult(text: "Assets")
}
try AssetExporter.exportIdentifiers(assets: assets, to: destination, isAbsoluteURL: isAbsoluteURL)
try AssetExporter.exportAssetExtensions(to: destination, isAbsoluteURL: isAbsoluteURL)
}
}
| 36.505495 | 128 | 0.670981 |
663171eaa51a524fd0b430093387ab586a92d964 | 16,597 | cc | C++ | impute.cc | tinkerstash/gpuimpute | 185609b9f2a8cfa45ee2054b0404bb03aaa71dad | [
"Apache-2.0"
] | null | null | null | impute.cc | tinkerstash/gpuimpute | 185609b9f2a8cfa45ee2054b0404bb03aaa71dad | [
"Apache-2.0"
] | null | null | null | impute.cc | tinkerstash/gpuimpute | 185609b9f2a8cfa45ee2054b0404bb03aaa71dad | [
"Apache-2.0"
] | null | null | null | /*
Copyright 2017 Jiawei Chiu
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "impute.h"
#include "base.h"
#include "mat.h"
#include "qr.h"
#include "svd.h"
#include "vec.h"
namespace gi {
Impute::Impute(const ImputeOptions &opt) : opt_(opt) {
CHECK_GT(opt.sv_threshold, 0);
CHECK(!opt.output_filename.empty());
CHECK(!opt.train_filename.empty());
CHECK(!opt.train_t_filename.empty());
CHECK(!opt.test_filename.empty());
CHECK(!opt.train_perm_filename.empty());
mem_type_ = opt.use_gpu ? MEM_DEVICE : MEM_HOST;
a_train_.reset(SSpMat::ReadInput(opt.train_filename, mem_type_));
a_train_t_.reset(SSpMat::ReadInput(opt.train_t_filename, mem_type_));
a_test_.reset(SSpMat::ReadInput(opt.test_filename, mem_type_));
{
ifstream fin(opt.train_perm_filename);
IVec v(a_train_->nnz(), MEM_HOST);
fin >> v;
train_perm_.reset(new IVec(v, mem_type_));
}
const int m = a_train_->m();
const int n = a_train_->n();
CHECK_EQ(m, a_test_->m());
CHECK_EQ(n, a_test_->n());
LOG(INFO) << "Read: " << opt.train_filename;
LOG(INFO) << "Number of nonzero elements: " << a_train_->nnz();
LOG(INFO) << "use_gpu=" << opt.use_gpu;
LOG(INFO) << "accelerated=" << opt.accelerated;
LOG(INFO) << "randomize_init=" << opt_.randomize_init;
LOG(INFO) << "randn_iters=" << opt_.randn_iters;
LOG(INFO) << "soft_threshold=" << opt_.soft_threshold;
}
void Impute::Run() {
if (opt_.accelerated) {
RunAccelerated();
} else {
RunNormal();
}
}
void Impute::ResetTestMatrix(int iter, const SMat &vt, SMat *out) {
if ((iter % opt_.randn_iters) == 0) {
out->RandNormal(0, 1);
} else {
out->CopyFrom(vt);
}
}
void Impute::RunNormal() {
const int m = a_train_->m();
const int n = a_train_->n();
CHECK_EQ(m, a_test_->m());
CHECK_EQ(n, a_test_->n());
const int k = opt_.k;
// Extra variables.
SMat ut(k, m, mem_type_); // ut.
SMat vt(k, n, mem_type_); // vt.
SVec s(k, mem_type_); // Singular values.
SMat mk(m, k, mem_type_);
SMat q(m, k, mem_type_);
SMat qt(k, m, mem_type_);
SMat nk(n, k, mem_type_);
SMat nk2(n, k, mem_type_);
SMat kn(k, n, mem_type_);
SMat kk(k, k, mem_type_);
SMat kk2(k, k, mem_type_);
SMat r(k, k, mem_type_);
SVec h_s(k, MEM_HOST);
QRHelper mk_qr(&mk);
// Currently, cusolver doesn't support economic SVD, so we considered using
// CULA's svd. However, we suspect this procedure is using CPU a lot and doing
// a lot of HtoD and DtoH transfers. To mitigate this, we do a QR first.
// nk is essentially A.T * Q.
// Say nk = Q' R' where Q' is n by k and R' is k by k.
// Run SVD on R' to get R' = U' S' V'.T
// ========== Method 1 ==========
// SVDHelper svd_helper(nk, &nk2, &kk, &s);
// ========== Method 2 ==========
SVDHelper svd_helper(r, &kk2, &kk, &s);
QRHelper nk2_qr(&nk2);
QRHelper nk_qr(&nk);
// ========== End ==========
if (!opt_.randomize_init) {
// Zero initialization.
ut.Clear();
vt.Clear();
s.Clear();
} else {
// RandUniform initialization.
ut.RandUniform();
vt.RandUniform();
ut.SetToProduct(1.0 / static_cast<float>(k), ut);
vt.SetToProduct(1.0 / static_cast<float>(k), vt);
s.Fill(1.0);
}
// Backup sparse matrix values.
SVec a_train_value(*a_train_->value(), mem_type_);
SVec a_test_value(*a_test_->value(), mem_type_);
// Collect rmse and timing info over iterations.
Timer timer;
vector<int> l_iter;
vector<float> rmse;
vector<double> timing;
vector<float> s_min; // Smallest singular value. Want this to be zero.
double time_elapsed = 0;
for (int iter = 0;; ++iter) {
cudaDeviceSynchronize();
const double elapsed = timer.elapsed();
if (elapsed > opt_.log_every_sec || iter == 0) {
// Get time elapsed.
time_elapsed += elapsed;
timing.push_back(time_elapsed);
l_iter.push_back(iter);
// Compute error.
a_test_->CopyValuesFrom(a_test_value);
a_test_->SampleAndUpdate(-1.0, ut, vt, s, 1.0);
rmse.push_back(a_test_->value()->RootMeanSquare());
h_s.CopyFrom(s);
s_min.push_back(h_s.get(k - 1));
// Output.
LOG(INFO) << "Iter: " << l_iter.back();
LOG(INFO) << " SMin: " << s_min.back();
LOG(INFO) << " Time elapsed: " << timing.back() << " sec";
LOG(INFO) << " RMSE: " << rmse.back() << "\n";
// Reset timer.
timer.reset();
// TODO: We could add a postprocessing step here.
if (timing.back() > opt_.max_time) {
break;
}
}
a_train_->CopyValuesFrom(a_train_value);
// Decrement sparse matrix by sampling u*diag(s)*v.T on its support.
a_train_->SampleAndUpdate(-1.0, ut, vt, s, 1.0);
// Update transpose of train matrix by permuting.
a_train_t_->value()->SetToPermute(*train_perm_, *(a_train_->value()));
// Create random matrix if necessary, as test vectors for rnadomized SVD.
ResetTestMatrix(iter, vt, &kn);
// Apply U.diag(S).VT to random matrix.
// Apply sparse matrix. We apply to random matrix transposed because that is
// about three times faster than the random matrix not-transposed!
kk.SetToProduct(1.0, NO_TRANS, vt, TRANS, kn, 0);
kk.SetToProduct(s, kk);
mk.SetToProduct(1.0, TRANS, ut, NO_TRANS, kk, 0);
mk.SetToProduct(1.0, NO_TRANS, *a_train_, TRANS, kn, 1.0);
for (int i = 0; i < opt_.num_gram; ++i) {
// QRCompute(&mk);
mk_qr.Compute();
kk.SetToProduct(1.0, NO_TRANS, ut, NO_TRANS, mk, 0);
kk.SetToProduct(s, kk);
nk.SetToProduct(1.0, TRANS, vt, NO_TRANS, kk, 0);
nk.SetToProduct(1.0, NO_TRANS, *a_train_t_, NO_TRANS, mk, 1.0);
// Re-orthonormalize.
nk_qr.Compute();
kk.SetToProduct(1.0, NO_TRANS, vt, NO_TRANS, nk, 0);
kk.SetToProduct(s, kk);
mk.SetToProduct(1.0, TRANS, ut, NO_TRANS, kk, 0);
mk.SetToProduct(1.0, NO_TRANS, *a_train_, NO_TRANS, nk, 1.0);
}
// Do QR. Transpose the result to get k by m matrix.
// QRCompute(&mk);
mk_qr.Compute();
// Sparse*transpose of matrix is much faster than sparse*matrix.
// So we prefer working with q transpose instead of q.
qt.SetToSum(1.0, TRANS, mk, 0, NO_TRANS, qt);
// Compute A.transpose to Q where A = sparse + sampled svd matrix.
kk.SetToProduct(1.0, NO_TRANS, ut, TRANS, qt, 0);
kk.SetToProduct(s, kk);
nk.SetToProduct(1.0, TRANS, vt, NO_TRANS, kk, 0);
nk.SetToProduct(1.0, NO_TRANS, *a_train_t_, TRANS, qt, 1.0);
// ========== Method 1 ==========
// A.T Q = U1 S1 V1.T
// A ~ Q Q.T A = (Q V1) S1 U1.T.
// If A ~ U S V.T, then:
// V.T = U1.T.
// U.T = V1.T Q.T.
/*svd_helper.Compute();
vt.SetToSum(1.0, TRANS, nk2, 0, NO_TRANS, vt);
ut.SetToProduct(1.0, NO_TRANS, kk, NO_TRANS, qt, 0);*/
// ========== Method 2 ==========
// Run SVD.
// (You might want to disable this to track the gaps in GPU usage.)
// SVD(r) = kk2 * diag(s) ** kk.
// SVD(nk) = U1 S1 V1.T = nk2 * kk2 * diag(s) ** kk
// So U1 = nk2 * kk2 and V1.T = kk.
// V.T = U1.T = kk2.T * nk2.T.
// U.T = V1.T Q.T = kk * qt.
nk2.CopyFrom(nk);
nk2_qr.Compute(); // nk2 = QR(nk)
r.SetToProduct(1.0, TRANS, nk2, NO_TRANS, nk, 0);
svd_helper.Compute();
vt.SetToProduct(1.0, TRANS, kk2, TRANS, nk2, 0);
ut.SetToProduct(1.0, NO_TRANS, kk, NO_TRANS, qt, 0);
// ========== End ==========
if (opt_.soft_threshold) {
s.SoftThreshold(opt_.sv_threshold);
} else {
s.HardThreshold(opt_.sv_threshold);
}
}
LOG(INFO) << "Total time taken: " << time_elapsed << "\n";
CHECK_EQ(timing.size(), rmse.size());
CHECK_EQ(timing.size(), l_iter.size());
ofstream os(opt_.output_filename);
os << "iter\tsmin\ttime\trmse\n";
for (size_t i = 0; i < timing.size(); ++i) {
os << l_iter[i] << "\t" << s_min[i] << "\t" << timing[i] << "\t" << rmse[i]
<< "\n";
}
}
void Impute::RunAccelerated() {
const int m = a_train_->m();
const int n = a_train_->n();
CHECK_EQ(m, a_test_->m());
CHECK_EQ(n, a_test_->n());
const int k = opt_.k;
// Solution variables.
SMat ut1(k, m, mem_type_); // ut.
SMat vt1(k, n, mem_type_); // vt.
SVec s1(k, mem_type_); // Singular values.
SMat ut2(k, m, mem_type_); // ut2.
SMat vt2(k, n, mem_type_); // vt2.
SVec s2(k, mem_type_); // Singular values.
// Work with ut_a, ..., ut_b, ..., instead of ut1, ..., ut2, ...
SMat *ut_a = &ut1; // Last solution.
SMat *vt_a = &vt1;
SVec *s_a = &s1;
SMat *ut_b = &ut2; // Last last solution.
SMat *vt_b = &vt2;
SVec *s_b = &s2;
SVec d_s(k, mem_type_);
SVec h_s(k, MEM_HOST);
// Training errors.
float last_err = a_train_->value()->RootMeanSquare();
// Intermediate data. TODO(jiawei): Use a few temp buffers to store all these.
SMat mk(m, k, mem_type_);
SMat q(m, k, mem_type_);
SMat qt(k, m, mem_type_);
SMat nk(n, k, mem_type_);
SMat nk2(n, k, mem_type_);
SMat kn(k, n, mem_type_);
SMat kk(k, k, mem_type_);
SMat kk2(k, k, mem_type_);
SMat r(k, k, mem_type_);
// QRs, SVD.
QRHelper mk_qr(&mk);
QRHelper nk_qr(&nk);
// Currently, cusolver doesn't support economic SVD, so we considered using
// CULA's svd. However, we suspect this procedure is using CPU a lot and doing
// a lot of HtoD and DtoH transfers. To mitigate this, we do a QR first.
// nk is essentially A.T * Q.
// Say nk = Q' R' where Q' is n by k and R' is k by k.
// Run SVD on R' to get R' = U' S' V'.T
SVDHelper svd_helper(r, &kk2, &kk, &d_s);
ut_b->Clear();
vt_b->Clear();
s_b->Clear();
if (!opt_.randomize_init) {
// Zero initialization.
ut_a->Clear();
vt_a->Clear();
s_a->Clear();
} else {
// RandUniform initialization.
ut_a->RandUniform();
vt_a->RandUniform();
ut_a->SetToProduct(1.0 / static_cast<float>(k), *ut_a);
vt_a->SetToProduct(1.0 / static_cast<float>(k), *vt_a);
s_a->Fill(1.0);
}
// Backup sparse matrix values.
SVec a_train_value(*a_train_->value(), mem_type_);
SVec a_test_value(*a_test_->value(), mem_type_);
// Store SampleAndUpdate results for each U, S, V.T.
SVec usv_sampled1(a_train_->nnz(), mem_type_);
SVec usv_sampled2(a_train_->nnz(), mem_type_);
SVec *usv_sampled_a = &usv_sampled1;
SVec *usv_sampled_b = &usv_sampled2;
usv_sampled1.Clear();
usv_sampled2.Clear();
// Collect rmse and timing info over iterations.
Timer timer;
vector<int> l_iter;
vector<float> rmse;
vector<double> timing;
vector<float> s_min; // Smallest singular value. Want this to be zero.
double time_elapsed = 0;
int theta_c = 1;
for (int iter = 0;; ++iter) {
cudaDeviceSynchronize();
const double elapsed = timer.elapsed();
if (elapsed > opt_.log_every_sec || iter == 0) {
// Get time elapsed.
time_elapsed += elapsed;
timing.push_back(time_elapsed);
l_iter.push_back(iter);
// Compute error.
a_test_->CopyValuesFrom(a_test_value);
a_test_->SampleAndUpdate(-1.0, *ut_a, *vt_a, *s_a, 1.0);
rmse.push_back(a_test_->value()->RootMeanSquare());
h_s.CopyFrom(*s_a);
s_min.push_back(h_s.get(k - 1));
// Output.
LOG(INFO) << "Iter: " << l_iter.back();
LOG(INFO) << " SMin: " << s_min.back();
LOG(INFO) << " Time elapsed: " << timing.back() << " sec";
LOG(INFO) << " RMSE: " << rmse.back();
// Reset timer.
timer.reset();
if (timing.back() > opt_.max_time) {
break;
}
}
// Set a_train to be observed matrix - (1+theta)X_t + theta X_{t-1}.
SampleAndUpdateHelper(*a_train_->row_ind(), *a_train_->row(),
*a_train_->col(), *usv_sampled_a, 1.0, *ut_a, *vt_a,
*s_a, 0);
// TODO(jiawei): Add SetToSum2.
a_train_->value()->SetToSum3(1.0, a_train_value, -1.0, *usv_sampled_a, 0,
*usv_sampled_a);
float this_err = a_train_->value()->RootMeanSquare();
if (this_err > last_err) {
theta_c = 1;
} else {
++theta_c;
}
std::swap(this_err, last_err);
const float theta = static_cast<float>(theta_c - 1) / (theta_c + 2);
a_train_->value()->SetToSum3(1.0, a_train_value, -(1.0 + theta),
*usv_sampled_a, theta, *usv_sampled_b);
// Update transpose of train matrix by permuting.
a_train_t_->value()->SetToPermute(*train_perm_, *(a_train_->value()));
// Create random matrix if necessary, as test vectors for rnadomized SVD.
ResetTestMatrix(iter, *vt_a, &kn);
// Apply U.diag(S).VT to random matrix.
kk.SetToProduct(1.0, NO_TRANS, *vt_a, TRANS, kn, 0);
kk.SetToProduct(*s_a, kk);
mk.SetToProduct(1.0, TRANS, *ut_a, NO_TRANS, kk, 0);
kk.SetToProduct(1.0, NO_TRANS, *vt_b, TRANS, kn, 0);
kk.SetToProduct(*s_b, kk);
mk.SetToProduct(-theta, TRANS, *ut_b, NO_TRANS, kk, 1.0 + theta);
// Apply sparse matrix. We apply to random matrix transposed because that is
// about three times faster than the random matrix not-transposed!
mk.SetToProduct(1.0, NO_TRANS, *a_train_, TRANS, kn, 1.0);
for (int i = 0; i < opt_.num_gram; ++i) {
mk_qr.Compute();
// Apply transpose.
kk.SetToProduct(1.0, NO_TRANS, *ut_a, NO_TRANS, mk, 0);
kk.SetToProduct(*s_a, kk);
nk.SetToProduct(1.0, TRANS, *vt_a, NO_TRANS, kk, 0);
kk.SetToProduct(1.0, NO_TRANS, *ut_b, NO_TRANS, mk, 0);
kk.SetToProduct(*s_b, kk);
nk.SetToProduct(-theta, TRANS, *vt_b, NO_TRANS, kk, 1.0 + theta);
nk.SetToProduct(1.0, NO_TRANS, *a_train_t_, NO_TRANS, mk, 1.0);
// Re-orthonormalize.
nk_qr.Compute();
// Apply non-transpose.
kk.SetToProduct(1.0, NO_TRANS, *vt_a, NO_TRANS, nk, 0);
kk.SetToProduct(*s_a, kk);
mk.SetToProduct(1.0, TRANS, *ut_a, NO_TRANS, kk, 0);
kk.SetToProduct(1.0, NO_TRANS, *vt_b, NO_TRANS, nk, 0);
kk.SetToProduct(*s_b, kk);
mk.SetToProduct(-theta, TRANS, *ut_b, NO_TRANS, kk, 1.0 + theta);
mk.SetToProduct(1.0, NO_TRANS, *a_train_, NO_TRANS, nk, 1.0);
}
// Do QR. Transpose the result to get k by m matrix.
mk_qr.Compute();
// Sparse*transpose of matrix is much faster than sparse*matrix.
// So we prefer working with q transpose instead of q.
qt.SetToSum(1.0, TRANS, mk, 0, NO_TRANS, qt);
// Compute A.transpose to Q where A = sparse + sampled svd matrix.
kk.SetToProduct(1.0, NO_TRANS, *ut_a, TRANS, qt, 0);
kk.SetToProduct(*s_a, kk);
nk.SetToProduct(1.0, TRANS, *vt_a, NO_TRANS, kk, 0);
kk.SetToProduct(1.0, NO_TRANS, *ut_b, TRANS, qt, 0);
kk.SetToProduct(*s_b, kk);
nk.SetToProduct(-theta, TRANS, *vt_b, NO_TRANS, kk, 1.0 + theta);
nk.SetToProduct(1.0, NO_TRANS, *a_train_t_, TRANS, qt, 1.0);
// Run SVD.
// (You might want to disable this to track the gaps in GPU usage.)
// SVD(r) = kk2 * diag(s) ** kk.
// SVD(nk) = U1 S1 V1.T = nk2 * kk2 * diag(s) ** kk
// So U1 = nk2 * kk2 and V1.T = kk.
// V.T = U1.T = kk2.T * nk2.T.
// U.T = V1.T Q.T = kk * qt.
nk2.CopyFrom(nk);
nk_qr.Compute();
r.SetToProduct(1.0, TRANS, nk, NO_TRANS, nk2, 0);
svd_helper.Compute();
// Push new solution as "last last solution".
s_b->CopyFrom(d_s);
if (opt_.soft_threshold) {
s_b->SoftThreshold(opt_.sv_threshold);
} else {
s_b->HardThreshold(opt_.sv_threshold);
}
vt_b->SetToProduct(1.0, TRANS, kk2, TRANS, nk, 0);
ut_b->SetToProduct(1.0, NO_TRANS, kk, NO_TRANS, qt, 0);
// Swap last with (last last solution / new solution).
std::swap(ut_a, ut_b);
std::swap(vt_a, vt_b);
std::swap(s_a, s_b);
std::swap(usv_sampled_a, usv_sampled_b);
}
LOG(INFO) << "Total time taken: " << time_elapsed << "\n";
CHECK_EQ(timing.size(), rmse.size());
CHECK_EQ(timing.size(), l_iter.size());
CHECK_EQ(timing.size(), s_min.size());
ofstream os(opt_.output_filename);
os << "iter\tsmin\ttime\trmse\n";
for (size_t i = 0; i < timing.size(); ++i) {
os << l_iter[i] << "\t" << s_min[i] << "\t" << timing[i] << "\t" << rmse[i]
<< "\n";
}
}
} // namespace gi | 32.996024 | 80 | 0.608303 |
b39d5f8bb7de2811b2481637d3a3ca4139334b9e | 625 | gemspec | Ruby | vim-tags.gemspec | npezza93/vim-tags | 1c72780ae367c8109c1065bfa58f76ae4bcb8f9d | [
"MIT"
] | null | null | null | vim-tags.gemspec | npezza93/vim-tags | 1c72780ae367c8109c1065bfa58f76ae4bcb8f9d | [
"MIT"
] | null | null | null | vim-tags.gemspec | npezza93/vim-tags | 1c72780ae367c8109c1065bfa58f76ae4bcb8f9d | [
"MIT"
] | null | null | null | # frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "vim-tags"
spec.version = "1.0.2"
spec.authors = ["Nick Pezza"]
spec.email = ["pezza@hey.com"]
spec.summary =
"Generate cache file of all paths to tags files of dependencies"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.5.0"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject do |f|
(f == __FILE__) || f.match(%r{\A(?:(?:test|bin|lib)/|\.(?:git))}) ||
f.end_with?("md") || f.end_with?("txt")
end
end
spec.add_development_dependency "debug"
end
| 27.173913 | 74 | 0.6224 |
2f160ba7f614f94df0470751c85bf053b4537d58 | 12,831 | java | Java | src/main/java/api_learner/soot/LocalCallGraphBuilder.java | vishaalt/apilearner | 80cf67b53c8ae84a9de30e24f28fb254958a06e9 | [
"MIT"
] | null | null | null | src/main/java/api_learner/soot/LocalCallGraphBuilder.java | vishaalt/apilearner | 80cf67b53c8ae84a9de30e24f28fb254958a06e9 | [
"MIT"
] | null | null | null | src/main/java/api_learner/soot/LocalCallGraphBuilder.java | vishaalt/apilearner | 80cf67b53c8ae84a9de30e24f28fb254958a06e9 | [
"MIT"
] | 1 | 2021-11-17T21:31:40.000Z | 2021-11-17T21:31:40.000Z | package api_learner.soot;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.Stack;
import soot.Body;
import soot.Hierarchy;
import soot.RefType;
import soot.Scene;
import soot.SootClass;
import soot.SootMethod;
import soot.Trap;
import soot.Unit;
import soot.Value;
import soot.JastAddJ.CastExpr;
import soot.jimple.DefinitionStmt;
import soot.jimple.DynamicInvokeExpr;
import soot.jimple.InstanceFieldRef;
import soot.jimple.InstanceInvokeExpr;
import soot.jimple.InvokeExpr;
import soot.jimple.ReturnStmt;
import soot.jimple.ReturnVoidStmt;
import soot.jimple.StaticInvokeExpr;
import soot.jimple.Stmt;
import soot.jimple.ThrowStmt;
import soot.toolkits.graph.CompleteUnitGraph;
import soot.toolkits.graph.DirectedGraph;
import soot.toolkits.scalar.ForwardFlowAnalysis;
import api_learner.Options;
public class LocalCallGraphBuilder extends ForwardFlowAnalysis<Unit, Set<InterprocdurcalCallGraphNode>> {
private Map<Unit, InterprocdurcalCallGraphNode> nodes = new HashMap<Unit, InterprocdurcalCallGraphNode>();
private InterprocdurcalCallGraphNode source;
private InterprocdurcalCallGraphNode sink;
private final Map<SootClass, InterprocdurcalCallGraphNode> exceptionalSinks = new HashMap<SootClass, InterprocdurcalCallGraphNode>();
/**
* copy constructor
*/
private LocalCallGraphBuilder(DirectedGraph<Unit> graph, Map<Unit, InterprocdurcalCallGraphNode> nodes, InterprocdurcalCallGraphNode source, InterprocdurcalCallGraphNode sink, Map<SootClass, InterprocdurcalCallGraphNode> exSinks) {
super(graph);
Map<InterprocdurcalCallGraphNode, InterprocdurcalCallGraphNode> clones = new HashMap<InterprocdurcalCallGraphNode, InterprocdurcalCallGraphNode>();
//first clone all nodes
for (Entry<Unit, InterprocdurcalCallGraphNode> entry : nodes.entrySet()) {
InterprocdurcalCallGraphNode clone = entry.getValue().duplicate();
clones.put(entry.getValue(), clone);
this.nodes.put(entry.getKey(), clone);
}
clones.put(source, source.duplicate());
if (sink!=null) {
clones.put(sink, sink.duplicate());
}
for (Entry<SootClass, InterprocdurcalCallGraphNode> entry : exSinks.entrySet()) {
InterprocdurcalCallGraphNode clonedSink = entry.getValue().duplicate();
exceptionalSinks.put(entry.getKey(), clonedSink);
clones.put(entry.getValue(), clonedSink);
}
//now connect the cloned nodes.
for (Entry<InterprocdurcalCallGraphNode, InterprocdurcalCallGraphNode> entry : clones.entrySet()) {
for (InterprocdurcalCallGraphNode succ : entry.getKey().getSuccessors()) {
entry.getValue().connectTo(clones.get(succ));
}
}
this.source = clones.get(source);
if (sink!=null) this.sink = clones.get(sink);
}
public LocalCallGraphBuilder duplicate() {
return new LocalCallGraphBuilder(this.graph, this.nodes, this.source, this.sink, this.exceptionalSinks);
}
private Body body = null;
public LocalCallGraphBuilder(Body body) {
super(new CompleteUnitGraph(body));
this.body = body;
this.source = new InterprocdurcalCallGraphNode();
this.source.setLabel("source");
this.sink = new InterprocdurcalCallGraphNode();
this.sink.setLabel("sink");
this.doAnalysis();
// generate a unique sink.
if (this.sink.predessors.isEmpty()) {
this.sink=null;
}
}
public InterprocdurcalCallGraphNode getSource() {
return this.source;
}
public InterprocdurcalCallGraphNode getSink() {
return this.sink;
}
/**
* Its important that we return the original, so we can add stuff to it later.
* @return
*/
public Map<SootClass, InterprocdurcalCallGraphNode> getExceptionalSinks() {
return exceptionalSinks;
}
public Set<InterprocdurcalCallGraphNode> getNodes() {
Set<InterprocdurcalCallGraphNode> res = new HashSet<InterprocdurcalCallGraphNode>();
res.add(source);
res.addAll(this.nodes.values());
if (sink!=null) {
res.add(sink);
}
return res;
}
@Override
protected void flowThrough(Set<InterprocdurcalCallGraphNode> in, Unit u, Set<InterprocdurcalCallGraphNode> out) {
if (this.graph.getHeads().contains(u)) {
in.add(this.source);
}
Set<SootMethod> callees = findCallees(u);
if (callees.isEmpty()) {
// then in == out
out.clear();
if (u instanceof ReturnVoidStmt || u instanceof ReturnStmt) {
for (InterprocdurcalCallGraphNode pre : in) {
pre.connectTo(this.sink);
}
return;
}
if (u instanceof ThrowStmt) {
RefType thrownType = (RefType)((ThrowStmt)u).getOp().getType();
SootClass sc = thrownType.getSootClass();
connectUncaughtToExceptionalSink(in, u, sc);
return;
}
addPossibleExceptionSinks(in, u);
out.addAll(in);
return;
} else {
InterprocdurcalCallGraphNode n;
if (this.nodes.containsKey(u)) {
n = this.nodes.get(u);
} else {
n = new InterprocdurcalCallGraphNode();
n.setCallees(callees);
this.nodes.put(u, n);
}
for (InterprocdurcalCallGraphNode pre : in) {
pre.connectTo(n);
}
out.clear();
out.add(n);
//Connect n to potential uncaught exceptional termination.
//TODO: This is a crude over-approximation
Set<SootClass> thrownExceptions = new HashSet<SootClass>();
for (SootMethod sm : callees) {
thrownExceptions.addAll(sm.getExceptions());
}
thrownExceptions.add(Scene.v().getSootClass("java.lang.RuntimeException"));
for (SootClass ex : thrownExceptions) {
connectUncaughtToExceptionalSink(out, u, ex);
}
return;
}
}
private void addPossibleExceptionSinks(Set<InterprocdurcalCallGraphNode> in, Unit u) {
Stmt s = (Stmt)u;
if (s.containsArrayRef()) {
//TODO: check if this is always safe.
connectUncaughtToExceptionalSink(in, u, Scene.v().getSootClass("java.lang.ArrayIndexOutOfBoundsException"));
}
if (s.containsFieldRef() && s.getFieldRef() instanceof InstanceFieldRef) {
//TODO: check if this is always safe.
connectUncaughtToExceptionalSink(in, u, Scene.v().getSootClass("java.lang.NullPointerException"));
}
if (s instanceof DefinitionStmt && ((DefinitionStmt)s).getRightOp() instanceof CastExpr) {
//TODO: check if this is always safe.
connectUncaughtToExceptionalSink(in, u, Scene.v().getSootClass("java.lang.ClassCastException"));
}
}
private void connectUncaughtToExceptionalSink(Set<InterprocdurcalCallGraphNode> nodes, Unit u, SootClass exception) {
Hierarchy hierarchy = Scene.v().getActiveHierarchy();
boolean caught = false;
for (Trap trap : getTrapsGuardingUnit(u, body)) {
if (hierarchy.isClassSubclassOfIncluding(exception, trap.getException())) {
caught = true; break;
}
}
if (!caught) {
if (!exceptionalSinks.containsKey(exception)) {
InterprocdurcalCallGraphNode node = new InterprocdurcalCallGraphNode();
node.setLabel("Exception "+exception.getName());
exceptionalSinks.put(exception, node);
}
InterprocdurcalCallGraphNode exceptionSink = exceptionalSinks.get(exception);
for (InterprocdurcalCallGraphNode pre : nodes) {
pre.connectTo(exceptionSink);
}
}
}
protected List<Trap> getTrapsGuardingUnit(Unit u, Body b) {
List<Trap> result = new LinkedList<Trap>();
for (Trap t : b.getTraps()) {
Iterator<Unit> it = b.getUnits().iterator(t.getBeginUnit(), t.getEndUnit());
while (it.hasNext()) {
if (u.equals(it.next())) {
result.add(t);
}
}
}
return result;
}
public void removeNode(InterprocdurcalCallGraphNode n) {
Map<Unit, InterprocdurcalCallGraphNode> tmp = new HashMap<Unit, InterprocdurcalCallGraphNode>(this.nodes);
for (Entry<Unit, InterprocdurcalCallGraphNode> entry : tmp.entrySet() ){
if (entry.getValue()==n) {
this.nodes.remove(entry.getKey());
}
}
}
@Override
protected void copy(Set<InterprocdurcalCallGraphNode> from, Set<InterprocdurcalCallGraphNode> to) {
to.clear();
to.addAll(from);
}
@Override
protected void merge(Set<InterprocdurcalCallGraphNode> in1, Set<InterprocdurcalCallGraphNode> in2, Set<InterprocdurcalCallGraphNode> out) {
out.clear();
out.addAll(in1);
out.addAll(in2);
}
@Override
protected Set<InterprocdurcalCallGraphNode> newInitialFlow() {
Set<InterprocdurcalCallGraphNode> init = new HashSet<InterprocdurcalCallGraphNode>();
// init.add(this.source);
return init;
}
private Set<SootMethod> findCallees(Unit u) {
Set<SootMethod> callees = new HashSet<SootMethod>();
// if (this.icfg!=null) {
// //if we have the icfg, its simple.
// callees.addAll(this.icfg.getCalleesOfCallAt(u));
// return callees;
// }
if (u instanceof Stmt) {
Stmt s = (Stmt) u;
if (s.containsInvokeExpr()) {
InvokeExpr invoke = s.getInvokeExpr();
if (invoke instanceof DynamicInvokeExpr) {
DynamicInvokeExpr ivk = (DynamicInvokeExpr) invoke;
// TODO:
System.err.println("no idea how to handle DynamicInvoke: " + ivk);
callees.add(ivk.getMethod());
} else if (invoke instanceof StaticInvokeExpr) {
StaticInvokeExpr ivk = (StaticInvokeExpr) invoke;
if (ivk.getMethod().hasActiveBody() || isInterestingProcedure(ivk.getMethod())) {
callees.add(ivk.getMethod());
} else {
// do nothing
}
} else if (invoke instanceof InstanceInvokeExpr) {
InstanceInvokeExpr ivk = (InstanceInvokeExpr) invoke;
callees.addAll(resolveVirtualCall(s, ivk.getBase(),
ivk.getMethod()));
}
}
}
return callees;
}
private boolean isInterestingProcedure(SootMethod callee) {
SootClass sc = callee.getDeclaringClass();
if (Options.v().getNamespace()!=null && !Options.v().getNamespace().isEmpty()) {
String fullClassName = callee.getDeclaringClass().getPackageName() + "." + callee.getDeclaringClass().getName();
if (fullClassName.contains(Options.v().getNamespace())) {
return true;
} else {
//do nothing
}
} else {
if (sc.isJavaLibraryClass()) {
//if no namespace is given, we consider any jdk call interesting.
//just for debugging
return true;
}
}
return false;
}
private Set<SootMethod> resolveVirtualCall(Stmt s, Value base,
SootMethod callee) {
Set<SootMethod> res = new HashSet<SootMethod>();
SootClass sc = callee.getDeclaringClass();
if (callee.hasActiveBody()) {
//TODO: and add all overriding methods
res.add(callee);
} else {
if (!isInterestingProcedure(callee)) {
// System.err.println(callee.getSignature() + " is not interesting");
// if we neither have a body for the procedure, nor the are
// interested in the procedure, we just throw it away by returning
// the empty set.
return new HashSet<SootMethod>();
}
}
Collection<SootClass> possibleClasses;
if (sc.isInterface()) {
possibleClasses = Scene.v().getFastHierarchy()
.getAllImplementersOfInterface(sc);
} else {
possibleClasses = Scene.v().getFastHierarchy().getSubclassesOf(sc);
}
for (SootClass sub : possibleClasses) {
if (sub.resolvingLevel() < SootClass.SIGNATURES) {
// Log.error("Not checking subtypes of " + sub.getName());
// Then we probably really don't care.
} else {
if (sub.declaresMethod(callee.getName(), callee.getParameterTypes(), callee.getReturnType())) {
res.add(sub.getMethod(callee.getName(), callee.getParameterTypes(), callee.getReturnType()));
}
}
}
if (res.isEmpty()) {
res.add(callee);
}
return res;
}
public void toDot(String filename) {
//first collect all reachable nodes.
Stack<InterprocdurcalCallGraphNode> todo = new Stack<InterprocdurcalCallGraphNode>();
todo.push(source);
Set<InterprocdurcalCallGraphNode> done = new HashSet<InterprocdurcalCallGraphNode>();
while (!todo.isEmpty()) {
InterprocdurcalCallGraphNode current = todo.pop();
done.add(current);
for (InterprocdurcalCallGraphNode suc : current.successors) {
if (!todo.contains(suc) && !done.contains(suc)) {
todo.push(suc);
}
}
}
File fpw = new File(filename);
try (PrintWriter pw = new PrintWriter(fpw, "utf-8");) {
pw.println("digraph dot {");
for (InterprocdurcalCallGraphNode n : done) {
String shape = " shape=oval ";
pw.println("\t\"" + n.getUniqueLabel() + "\" " + "[label=\""
+ n.getLabel() + "\" " + shape + "];\n");
}
pw.append("\n");
for (InterprocdurcalCallGraphNode from : done) {
for (InterprocdurcalCallGraphNode to : from.getSuccessors()) {
pw.append("\t\"" + from.getUniqueLabel() + "\" -> \""
+ to.getUniqueLabel() + "\";\n");
}
}
pw.println("}");
} catch (IOException e) {
e.printStackTrace();
}
}
} | 30.992754 | 232 | 0.704544 |
358e107024ed253035bce0aac8f854e402fcf666 | 11,837 | asm | Assembly | Library/Math/Float/floatStack.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Library/Math/Float/floatStack.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Library/Math/Float/floatStack.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 73 | 2018-11-19T20:46:53.000Z | 2022-03-29T00:59:26.000Z | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1991 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: floatStack.asm
AUTHOR: jimmy lefkowitz
REVISION HISTORY:
Name Date Description
---- ---- -----------
Cheng 1/91 Initial revision
jimmy 6/19/92 Created math library
ROUTINES:
Name Description
---- -----------
FloatSetStackSize change the size of the fp stack
FloatInit Create a floating point stack
FloatExit Destroy a floating point stack
DESCRIPTION:
Routines that manipulate the stack for the floating point library.
$Id: floatStack.asm,v 1.1 97/04/05 01:23:06 newdeal Exp $
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
FloatSetStackSizeFar
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: an extra routine to call the real routine so that
hardware libraries can also get to this code
CALLED BY: GLOBAL
PASS: nothing
RETURN: Void.
DESTROYED: Nada.
PSEUDOCODE/STRATEGY:
KNOWN BUGS/SIDEFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
jimmy 6/19/92 Initial version.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
global FloatSetStackSizeFar:far
FloatSetStackSizeFar proc far
.enter
call FloatSetStackSizeInternal
.leave
ret
FloatSetStackSizeFar endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
FloatSetStackSizeInternal
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: sets the size of the fp stack
CALLED BY: GLOBAL
PASS: ax = number of elements desired on stack
RETURN: Void.
DESTROYED: Nada
PSEUDOCODE/STRATEGY:
KNOWN BUGS/SIDEFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
jimmy 6/19/92 Initial version.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
global FloatSetStackSizeInternal:far
FloatSetStackSizeInternal proc far
uses cx, bx, si, di, es, ds, dx
.enter
;
EC < clr dx ;>
mov cx, FPSIZE
mul cx
EC < tst dx ;>
EC < ERROR_NZ FLOAT_STACK_SIZE_TOO_LARGE;>
EC < call ECCheckNumStacks ;>
EC < push ax, cx ;>
EC < cmp ax, FP_MIN_STACK_SIZE ;>
EC < ERROR_B FLOAT_INIT_SIZE_TOO_SMALL ;>
EC < pop ax, cx ;>
NOFXIP< segmov ds, dgroup, si ;ds <- seg addr of dgroup >
FXIP < mov si, bx >
FXIP < mov bx, handle dgroup >
FXIP < call MemDerefDS ;ds = dgroup >
FXIP < mov bx, si ;restore bx >
mov si, ds:stackHanOffset ;si <- offset of FP stack handle
mov bx, ss:[si] ;bx <- handle of FP stack
EC < tst bx ;>
EC < ERROR_Z FLOAT_CALL_TO_SET_STACK_SIZE_BEFORE_CALL_TO_FLOAT_INIT ;>
; fist allocate a new, temporary block to copy the current data to
; and copy the stuff over
mov_tr cx, ax
call MemLock
mov ds, ax
dec cx
add cx, size FloatStackVars ; cx = total size of new block - 1
cmp cx, ds:[FSV_bottomPtr]
jl doShrink
je doUnlock
; if we don't jump then we are enlarging, so Realloc the block and
; copy the stuff
add cx, 2 ; 1 byte to get n bytes from n-1, and 1
; for the extra unsed bytes at the bottom
push cx
mov ax, cx
clr cx
mov si, size FloatStackVars
call MemReAlloc
pop cx ; cx = total size of new block - 1
dec cx
push cx
mov es, ax
mov ds, ax ; ds:si <- points to actual stack data
mov di, cx
sub di, ds:[FSV_bottomPtr]
add di, si ; di = place for old data in new block
mov cx, ds:[FSV_bottomPtr]
sub cx, ds:[FSV_topPtr]
add di, cx
sub di, 2
add si, cx
sub si, 2
shr cx ; always even amount so move words
std ; set the direction flag to go backwards
rep movsw
cld ; unset it so noone kills me...
pop cx
xchg ds:[FSV_bottomPtr], cx
sub cx, ds:[FSV_bottomPtr]
neg cx
add ds:[FSV_topPtr], cx
doUnlock:
call MemUnlock
.leave
ret
doShrink:
EC < push cx >
EC < mov cx, ds:[FSV_bottomPtr] >
EC < sub cx, ds:[FSV_topPtr] >
EC < cmp ax, cx >
EC < ERROR_L FLOAT_RESIZE_TOO_SMALL_TO_HOLD_CURRENT_STACK_ELEMENTS >
EC < pop cx >
dec cx
push cx
sub cx, ds:[FSV_bottomPtr]
add cx, ds:[FSV_topPtr]
segmov es, ds
mov di, cx
mov si, ds:[FSV_topPtr]
mov cx, ds:[FSV_bottomPtr]
sub cx, ds:[FSV_topPtr]
shr cx ; always even amount, so move words
rep movsb
pop cx
xchg cx, ds:[FSV_bottomPtr]
sub cx, ds:[FSV_topPtr]
sub cx, ds:[FSV_bottomPtr]
neg cx
mov ds:[FSV_topPtr], cx
jmp doUnlock
FloatSetStackSizeInternal endp
COMMENT @-----------------------------------------------------------------------
FUNCTION: FloatInit
DESCRIPTION: Initializes a floating point stack for the thread by
allocating a block of memory and making note of it
in ThreadPrivateData.
CALLED BY: GLOBAL ()
PASS: ax - FP stack size (# of elements)
bl - type of stack (FloatStackType enum)
RETURN: bx = handle of floating point stack
(this is needed for the coprocessor libraries
so normal apps won't need to worry about this)
DESTROYED: nothing
REGISTER/STACK USAGE:
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/CAVEATS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
Cheng 1/91 Initial version
Don 3/93 Hack for initializing fp stack linkage
-------------------------------------------------------------------------------@
FloatInit proc far uses ax,cx,dx,si,ds
.enter
;
; Allocate a stack
;
EC < cmp ax, FP_MIN_STACK_ELEMENTS >
EC < ERROR_B FLOAT_INIT_SIZE_TOO_SMALL >
EC < cmp bl, FLOAT_STACK_TYPE_BOUND >
EC < ERROR_AE BAD_FLOAT_STACK_TYPE >
mov cl, FPSIZE
mul cl
add ax, (size FloatStackVars) ;ax <- + size for variables
mov dx, bx ; save type in dx
mov cx, (mask HF_SWAPABLE or mask HF_SHARABLE) or \
((mask HAF_ZERO_INIT or mask HAF_LOCK) shl 8)
; because we start out with the topPtr and the bottomPtr the same
; when we push our first number, there is one unsed byte left at the
; bottom of the stack. This means that we actually neeed to allocate
; 1 extra byte....
inc ax
push ax ;save size
call MemAlloc
mov ds, ax
;
; Initialize the stack variables
;
pop ax ;ax <- stack size
dec ax ;ax <- offset to end
mov ds:FSV_bottomPtr, ax
mov ds:FSV_topPtr, ax
mov ds:FSV_handle, bx
mov ds:FSV_stackType, dl
call InitRandomNumber
mov cx, ss:[TPD_threadHandle]
mov ds:FSV_thread, cx ;store owning thread
;
; Save the old FP stack, if any
; In the ThreadPrivateData mini-heap we have a word for storing
; the handle of the floating-point stack for each thread.
;
; We need to be careful, however, that we're not linking in
; the heap from another thread, as this thread may have been
; duplicated from a thread that already contained a fp stack heap,
; and all of the data in TPD_heap is copied into a new thread. So,
; we simply compare the FSV_thread value against our thread, and
; if the value is different, we know that no fp stack had yet
; been allocated for this heap
;
NOFXIP< segmov ds, dgroup, ax ;ds <- seg addr of dgroup >
FXIP < mov_tr ax, bx >
FXIP < mov bx, handle dgroup >
FXIP < call MemDerefDS ;ds = dgroup >
FXIP < mov_tr bx, ax ;restore bx >
mov si, ds:stackHanOffset ;si <- offset of FP handle
xchg bx, ss:[si] ;bx <- old FP stack handle
tst bx
jz storeLink
mov dx, bx
call MemLock
mov ds, ax
cmp ds:FSV_thread, cx
je unlockOld
clr dx
unlockOld:
call MemUnlock
mov bx, dx
storeLink:
mov_tr ax, bx ;ax <- old FP stack handle
mov bx, ss:[si] ;bx <- new FP stack handle
call MemModifyOtherInfo
;
; Done with the stack for now
;
call MemUnlock ;unlock FP stack
EC < call ECCheckNumStacks >
.leave
ret
FloatInit endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
InitRandomNumber
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Initialize the random number generator w/o loading
any
CALLED BY: FloatInit()
PASS: ds - seg addr of FloatStackVars
RETURN: none
DESTROYED: ax, cx, dx
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
eca 3/10/92 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
InitRandomNumber proc near
uses bx
.enter
mov ds:FSV_randomX.F_exponent, BIAS+32 ;2^32
call TimerGetDateAndTime
ornf dx, 0x8000 ;force normalized number
mov ds:FSV_randomX.F_mantissa_wd3, dx
mov ds:FSV_randomX.F_mantissa_wd2, cx
mov ds:FSV_randomX.F_mantissa_wd1, bx
mov ds:FSV_randomX.F_mantissa_wd0, ax
.leave
ret
InitRandomNumber endp
COMMENT @-----------------------------------------------------------------------
FUNCTION: FloatExit
DESCRIPTION: Frees floating point stack for current thread
CALLED BY: GLOBAL ()
PASS: nothing
RETURN: nothing
DESTROYED: nothing
REGISTER/STACK USAGE:
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/CAVEATS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
Gene 5/91 Initial version
-------------------------------------------------------------------------------@
FLOATEXIT proc far
FALL_THRU FloatExit
FLOATEXIT endp
FloatExit proc far uses ax, bx, si, ds
.enter
;
; Get the current FP stack
;
NOFXIP< segmov ds, dgroup, ax ;ds <- seg addr of dgroup >
FXIP < mov_tr ax, bx >
FXIP < mov bx, handle dgroup >
FXIP < call MemDerefDS ;ds = dgroup >
FXIP < mov_tr bx, ax ;restore bx >
mov si, ds:stackHanOffset ;si <- offset of FP stack handle
mov bx, ss:[si] ;bx <- handle of FP stack
EC < tst bx ;>
EC < ERROR_Z FLOAT_TOO_MANY_CALLS_TO_EXIT ;>
;
; Get the old FP stack, if any
;
mov ax, MGIT_OTHER_INFO ;ax <- MemGetInfoType
call MemGetInfo ;ax == old stack handle
;
; Free the current FP stack
;
call MemFree
;
; Make the old FP stack the current one
;
mov ss:[si], ax ;save new current stack
.leave
ret
FloatExit endp
if ERROR_CHECK
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ECCheckNumStacks
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Verify that FloatInit() has been called a reasonable
number of times.
CALLED BY: FloatInit()
PASS: none
RETURN: none
DESTROYED: none
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
eca 2/28/92 Initial version
Don 11/4/99 Adjusted limit upward to avoid Impex
situation that is completely valid
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
FP_MAX_INIT_CALLS equ 5
ECCheckNumStacks proc near
uses ax, bx, cx, si, ds
.enter
mov cx, 1 ;cx <- # of stacks
NOFXIP< segmov ds, dgroup, ax ;ds <- seg addr of dgroup >
FXIP < mov_tr ax, bx >
FXIP < mov bx, handle dgroup >
FXIP < call MemDerefDS ;ds = dgroup >
FXIP < mov_tr bx, ax ;restore bx >
mov si, ds:stackHanOffset ;si <- offset of FP handle
mov bx, ss:[si] ;bx <- current stack
stackLoop:
tst bx ;any next stack?
jz done ;branch if none
inc cx ;one more stack
mov ax, MGIT_OTHER_INFO ;ax <- MemGetInfoType
call MemGetInfo ;ax == next stack
mov bx, ax ;bx <- next stack handle
jmp stackLoop
done:
cmp cx, FP_MAX_INIT_CALLS ;too many calls?
ERROR_A FLOAT_TOO_MANY_CALLS_TO_INIT ;death...
.leave
ret
ECCheckNumStacks endp
endif
| 25.238806 | 81 | 0.595506 |
46aedb6986d3d622e479102c594cce8a877553a8 | 1,563 | html | HTML | src/pages/relatorio-completo-propriedades/relatorio-completo-propriedades.html | kelvi-ribeiro/app-camarao | 59727cbdcaf4265285560c25b598a8ed205c12a6 | [
"MIT"
] | null | null | null | src/pages/relatorio-completo-propriedades/relatorio-completo-propriedades.html | kelvi-ribeiro/app-camarao | 59727cbdcaf4265285560c25b598a8ed205c12a6 | [
"MIT"
] | null | null | null | src/pages/relatorio-completo-propriedades/relatorio-completo-propriedades.html | kelvi-ribeiro/app-camarao | 59727cbdcaf4265285560c25b598a8ed205c12a6 | [
"MIT"
] | null | null | null | <!--
Generated template for the RelatorioCompletoPropriedadesPage page.
See http://ionicframework.com/docs/components/#navigation for more info on
Ionic pages and navigation.
-->
<ion-header>
<ion-navbar>
<button ion-button menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
<ion-title>Relatório Completo</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<ion-item>
<ion-label staked>Escolha outra Propriedade</ion-label>
<ion-select (ionChange)="escolherPropriedade($event)">
<ion-option *ngFor="let propriedade of objectMockListaPropriedades"
[value]="propriedade" >{{propriedade?.nomePropriedade}}</ion-option>
</ion-select>
</ion-item>
<div *ngIf="!tanqueInexistente && propriedades">
<div class="row header">
<div class="col">Código</div>
<div class="col">{{propriedadeEscolhida?.nomePropriedade}}</div>
<div class="col">Hora marcada</div>
<div class="col">Nome do tanque</div>
</div>
<div class="row" *ngFor="let propriedade of propriedades;">
<div class="col">{{propriedade?.id}}</div>
<div class="col">{{transformaPropriedade(propriedade) | number : '1.2-2'}}</div>
<div class="col">{{propriedade?.horaMarcada | date:"y-MM-dd HH:mm:ss"}}</div>
<div class="col">{{tanque?.nome}}</div>
</div>
<ion-infinite-scroll (ionInfinite)="doInfinite($event)">
<ion-infinite-scroll-content></ion-infinite-scroll-content>
</ion-infinite-scroll>
</div>
</ion-content>
| 31.897959 | 89 | 0.641075 |
5967a26feb16ae60cd7ee2c27ddd1209c538da89 | 915 | dart | Dart | week2/quiz_app/lib/evaluate_quiz.dart | Prajeeths18/190050117_IntroToAppDev | db8addb96a376a81b879ec2eb23efb5286637947 | [
"MIT"
] | null | null | null | week2/quiz_app/lib/evaluate_quiz.dart | Prajeeths18/190050117_IntroToAppDev | db8addb96a376a81b879ec2eb23efb5286637947 | [
"MIT"
] | null | null | null | week2/quiz_app/lib/evaluate_quiz.dart | Prajeeths18/190050117_IntroToAppDev | db8addb96a376a81b879ec2eb23efb5286637947 | [
"MIT"
] | null | null | null | import 'package:flutter/material.dart';
class EvaluateQuiz extends StatefulWidget {
const EvaluateQuiz({
Key? key,
required this.isCorrect,
}) : super(key: key);
final List<int> isCorrect;
@override
_EvaluateQuizState createState() => _EvaluateQuizState();
}
class _EvaluateQuizState extends State<EvaluateQuiz> {
@override
Widget build(BuildContext context) {
return Row(
children: widget.isCorrect.map((e) {
if (e == 1) {
return Expanded(
child: Icon(
Icons.check,
color: Colors.green,
size: 35,
));
} else if (e == 0) {
return Expanded(
child: Icon(
Icons.close,
color: Colors.red,
size: 35,
),
);
} else {
return Expanded(child: Container());
}
}).toList(),
);
}
}
| 21.785714 | 59 | 0.52459 |
995b3908b5ab0a430979a1518e6cf8ca1dadefa0 | 3,879 | h | C | arcdps_buildpad/buildpad/resources/993687.h | Meme-sys/BuildPad | 54ff66baf75709bc2fa56bb5247d62af0be2762b | [
"MIT"
] | 30 | 2019-10-31T22:17:55.000Z | 2021-10-03T01:03:16.000Z | arcdps_buildpad/buildpad/resources/993687.h | Meme-sys/BuildPad | 54ff66baf75709bc2fa56bb5247d62af0be2762b | [
"MIT"
] | 9 | 2019-11-02T15:42:09.000Z | 2021-06-21T00:56:11.000Z | arcdps_buildpad/buildpad/resources/993687.h | Meme-sys/BuildPad | 54ff66baf75709bc2fa56bb5247d62af0be2762b | [
"MIT"
] | 5 | 2019-10-31T22:56:21.000Z | 2021-03-03T22:46:39.000Z | /* generated from 993687.png: do not edit */
const unsigned char tex993687[] = {
0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x08,0x06,0x00,0x00,0x00,0x73,0x7a,0x7a,
0xf4,0x00,0x00,0x00,0x04,0x73,0x42,0x49,0x54,0x08,0x08,0x08,0x08,0x7c,0x08,0x64,
0x88,0x00,0x00,0x02,0xa5,0x49,0x44,0x41,0x54,0x58,0x85,0xed,0xd6,0xcf,0x4b,0x14,
0x61,0x1c,0xc7,0xf1,0x77,0x31,0xc4,0xb7,0x4b,0x6c,0xb8,0x90,0xec,0xc1,0x83,0x58,
0x48,0xd0,0x3f,0xd0,0x39,0x62,0x5d,0x8c,0x09,0xff,0x85,0x0e,0xfe,0x88,0xa5,0xeb,
0x7a,0x0e,0x94,0x3d,0x74,0xd0,0x83,0x32,0xa4,0x37,0x4b,0xb0,0x85,0xf5,0xb0,0x8c,
0x2e,0x1d,0x82,0xc0,0xb0,0xc3,0x76,0x10,0x4c,0x99,0x6c,0x0e,0x1e,0x06,0x0a,0x14,
0x91,0x98,0x83,0xa8,0xdf,0x0e,0xbb,0xcf,0x3a,0xa3,0x29,0xd4,0xce,0xda,0xc5,0x0f,
0xcc,0x61,0x86,0x87,0x7d,0x7d,0x86,0x7d,0x7e,0x0c,0x5c,0xe5,0xf2,0x73,0xe7,0x7f,
0xa0,0x8f,0x80,0x05,0x60,0x17,0x78,0x73,0x99,0x70,0x56,0x44,0x6a,0x22,0xa2,0xb6,
0x6d,0xab,0x88,0x28,0xf0,0xec,0xb2,0x70,0x17,0x50,0xdb,0xb6,0xd5,0xf7,0x7d,0x9d,
0x9a,0x9e,0x32,0x05,0xee,0x47,0x07,0x59,0x6d,0x80,0x7b,0x1a,0xf8,0x5d,0xdf,0xf3,
0x9b,0x42,0x75,0xb9,0x0a,0xf0,0x05,0xf8,0x1a,0x1d,0x7c,0x3d,0x61,0xbc,0x1b,0x70,
0x73,0xd9,0x5c,0x1d,0x8f,0xa4,0x5a,0xad,0x02,0xbc,0x4c,0xd8,0x8b,0xa5,0x07,0x50,
0xfb,0xa9,0xad,0xfe,0xb6,0xdf,0xbc,0x82,0x20,0xd0,0xfe,0xfe,0x7e,0x05,0xbc,0x76,
0xe2,0x59,0x40,0x07,0x06,0x06,0x62,0xb8,0xbf,0xed,0xab,0xe3,0x38,0x0a,0x68,0xa3,
0x60,0x7b,0xf1,0x30,0x0c,0x63,0xf8,0x94,0x33,0x65,0xf0,0x6c,0xbb,0xf0,0xe7,0x80,
0xce,0xcd,0xcd,0x69,0x18,0x86,0x67,0x0a,0x34,0x66,0xfd,0x44,0xa2,0xa2,0x58,0x82,
0x58,0x62,0x89,0x25,0x63,0x62,0x89,0x3a,0xaf,0x9d,0x26,0xbe,0xfa,0x79,0x55,0x7d,
0xcf,0x57,0xdf,0xf3,0xcd,0x9b,0xbb,0xc0,0x8d,0xa4,0x0b,0x34,0xf1,0xd2,0xbb,0x52,
0x0c,0x37,0x05,0x72,0xd9,0x9c,0xc1,0x93,0x8f,0x58,0x32,0x6f,0x70,0x3d,0xd6,0x18,
0x1e,0x86,0xa1,0xc1,0x3d,0x5a,0x98,0x74,0x02,0x3c,0x04,0x3a,0x4f,0x3d,0xcf,0x00,
0x4b,0x51,0x5c,0x8f,0x35,0x86,0x8f,0xe4,0x47,0x12,0x99,0xf1,0x6e,0xe3,0x47,0x14,
0xe8,0x13,0x11,0x1a,0x97,0x2b,0x22,0xba,0xb9,0xb1,0xa9,0x7a,0xa0,0xaa,0x07,0xaa,
0x9b,0x1b,0x9b,0x5a,0x5b,0xab,0x69,0x6d,0xad,0xa6,0xc5,0x57,0x45,0xc5,0x42,0x1b,
0xe5,0x5b,0x8a,0x57,0x18,0x2d,0x68,0x61,0xb4,0xa0,0x80,0x8a,0x48,0x5e,0x44,0x3c,
0x11,0xd1,0xdd,0x9f,0xbb,0x31,0x7c,0xe5,0xd3,0x4a,0x1c,0xb7,0x92,0x59,0x6e,0x79,
0x40,0x2b,0x6e,0x45,0x0b,0xa3,0x05,0x15,0x11,0x35,0xb8,0x29,0x60,0x70,0x53,0xa0,
0x81,0xe7,0xff,0xe5,0x64,0xb9,0x76,0xce,0xb3,0x09,0x20,0x5f,0x71,0x2b,0xec,0xfc,
0xd8,0x61,0x70,0x78,0x90,0x60,0x3b,0x00,0xe0,0x48,0x8f,0xf0,0xbe,0xd7,0x77,0xd5,
0x8e,0xdb,0x1d,0xf4,0x3e,0xe8,0x05,0x98,0x04,0x5e,0x00,0x70,0xd8,0x6a,0x81,0x93,
0xb7,0xc8,0x03,0x93,0xa5,0xb7,0xa5,0xe6,0x83,0x5c,0x36,0xc7,0xde,0xaf,0xbd,0xe6,
0x7d,0xa6,0x2b,0x03,0x87,0xbc,0x07,0x1e,0xff,0x1d,0x7b,0x51,0xac,0xd8,0xe5,0x75,
0x76,0x76,0x6a,0xb8,0x1f,0x6a,0xb8,0x1f,0x6a,0x69,0xa1,0xa4,0x41,0x10,0xd4,0x0f,
0x18,0xbb,0x5f,0xb1,0xf0,0xa8,0xaf,0x8e,0x96,0xb8,0xf3,0x72,0x72,0xa6,0x47,0x92,
0xe9,0x6a,0x7a,0xdf,0x80,0x1c,0x10,0xb4,0x52,0xe0,0xbc,0xef,0x01,0x17,0xe8,0x5b,
0x5f,0x5b,0xaf,0xdf,0x2c,0xbb,0x74,0xdf,0xeb,0x06,0xc0,0x99,0x76,0xcc,0x98,0x25,
0x60,0xab,0x15,0xfc,0x8f,0x49,0xa5,0x53,0x8b,0xa9,0x74,0x4a,0xcb,0x8b,0x65,0xd5,
0x63,0xd5,0x95,0x8f,0x2b,0xd1,0x7d,0x5d,0x67,0x66,0x67,0x74,0x66,0x76,0xc6,0xcc,
0xfc,0xb1,0xa4,0x7d,0x37,0x8a,0x97,0x17,0xcb,0x06,0x37,0x27,0x5a,0x1e,0xeb,0x54,
0x89,0x04,0x36,0x1e,0x93,0x09,0x20,0x86,0xa7,0xd2,0xa9,0xb3,0xc7,0xa9,0xc5,0x30,
0x16,0x3a,0x34,0x32,0x64,0x0a,0x0c,0x26,0x55,0xc0,0x2b,0x16,0x8b,0x31,0x3c,0x95,
0x4e,0xcd,0x9f,0x19,0x55,0x5f,0x1d,0x4f,0xb0,0xd8,0xc2,0xe2,0x03,0x70,0x2b,0xa9,
0x02,0xe3,0x1d,0xe9,0x0e,0x2d,0x16,0x8b,0xd1,0xff,0xfc,0x52,0x73,0x13,0x18,0xa7,
0x7e,0x94,0x26,0xfb,0x15,0x73,0x95,0x0b,0xf2,0x1b,0x1c,0x08,0xde,0x11,0x7a,0xd7,
0x7d,0xdb,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82};
| 77.58 | 80 | 0.78809 |
0a4a5477c1952c46712c951a61e53a537a1d3cf8 | 532 | h | C | include/libIterativeRobot/commands/FlipperCommands/FlipperBackwardTimed.h | 1138programming/1138A-VEX-Code-2018 | 78df41e4aa061ed1be6a15799d6f7a44d325e5f2 | [
"MIT"
] | 1 | 2018-07-18T19:42:51.000Z | 2018-07-18T19:42:51.000Z | include/libIterativeRobot/commands/FlipperCommands/FlipperBackwardTimed.h | 1138programming/1138A-VEX-Code-2018 | 78df41e4aa061ed1be6a15799d6f7a44d325e5f2 | [
"MIT"
] | null | null | null | include/libIterativeRobot/commands/FlipperCommands/FlipperBackwardTimed.h | 1138programming/1138A-VEX-Code-2018 | 78df41e4aa061ed1be6a15799d6f7a44d325e5f2 | [
"MIT"
] | null | null | null | #ifndef _COMMANDS_FLIPPERBACKWARDTIMED_H_
#define _COMMANDS_FLIPPERBACKWARDTIMED_H_
#include "libIterativeRobot/commands/Command.h"
class FlipperBackwardTimed : public libIterativeRobot::Command {
private:
int runTime; // Time, in milliseconds, to run
int startTime; // Starting time of this command
public:
bool canRun();
void initialize();
void execute();
bool isFinished();
void end();
void interrupted();
FlipperBackwardTimed(int mSecs);
};
#endif // _COMMANDS_FLIPPERBACKWARDTIMED_H_
| 25.333333 | 64 | 0.738722 |
5599461c113abcf4d75c1c4992fa3884af01fd8f | 421 | swift | Swift | CKExtension/FontExtension.swift | kai120897660/CKUtils | 1caa4dd2347fbb05c7a451e9059fb3d9dd80085a | [
"MIT"
] | 1 | 2019-08-19T06:09:04.000Z | 2019-08-19T06:09:04.000Z | CKExtension/FontExtension.swift | kai120897660/CKUtils | 1caa4dd2347fbb05c7a451e9059fb3d9dd80085a | [
"MIT"
] | null | null | null | CKExtension/FontExtension.swift | kai120897660/CKUtils | 1caa4dd2347fbb05c7a451e9059fb3d9dd80085a | [
"MIT"
] | 1 | 2020-11-21T07:08:38.000Z | 2020-11-21T07:08:38.000Z | //
// FontExtension.swift
// CKUtils
//
// Created by APPLE on 2019/8/22.
// Copyright © 2019 ck.com. All rights reserved.
//
import Foundation
import UIKit
extension UIFont {
public class func ck_font(_ size: CGFloat) -> UIFont {
return UIFont.systemFont(ofSize: size)
}
public class func ck_fontBold(_ size: CGFloat) -> UIFont {
return UIFont.boldSystemFont(ofSize: size)
}
}
| 20.047619 | 62 | 0.657957 |