celise88 commited on
Commit
b7c28ad
1 Parent(s): 64a3b45

upgrading text embedding model

Browse files
main.py CHANGED
@@ -17,7 +17,7 @@ from mangum import Mangum
17
  from localStoragePy import localStoragePy
18
  localStorage = localStoragePy('pathfinder', 'text')
19
 
20
- from scrape_onet import get_onet_code, get_onet_description, get_onet_tasks, get_onet_activities, get_onet_context, get_onet_skills, get_onet_knowledge, get_onet_abilities, get_onet_interests, get_onet_styles, get_onet_values, get_job_postings
21
  from match_utils import neighborhoods, get_resume, skill_extractor, sim_result_loop, get_links, skillEmbed, sim_result_loop_jobFinder, sim_result_loop_candFinder
22
  from user_utils import Hash
23
 
@@ -29,8 +29,8 @@ templates = Jinja2Templates(directory="templates/")
29
 
30
  # LOAD DATA
31
  onet = pd.read_csv('static/ONET_JobTitles.csv')
32
- coheredat = pd.read_csv('static/neural_chat_tSNE_dat.csv')
33
 
 
34
  @app.get("/register/", response_class=HTMLResponse)
35
  def get_register(request: Request):
36
  return templates.TemplateResponse('register.html', context={'request': request})
@@ -107,11 +107,13 @@ def post_logout(request: Request):
107
  message = "You have been successfully logged out."
108
  return templates.TemplateResponse('logout.html', context={'request': request, 'message': message})
109
 
 
110
  ### JOB INFORMATION CENTER ###
111
  # GET
112
  @app.get("/")
113
- def get_job(request: Request):
114
  joblist = onet['JobTitle']
 
115
  return templates.TemplateResponse('job_list.html', context={'request': request, 'joblist': joblist})
116
 
117
  # POST
@@ -130,8 +132,6 @@ def post_job(request: Request, bt: BackgroundTasks, jobtitle: str = Form(enum=[x
130
  interests = get_onet_interests(onetCode)
131
  values = get_onet_values(onetCode)
132
  styles = get_onet_styles(onetCode)
133
-
134
- bt.add_task(neighborhoods, coheredat)
135
 
136
  return templates.TemplateResponse('job_list.html', context={
137
  'request': request,
@@ -154,6 +154,7 @@ def post_job(request: Request, bt: BackgroundTasks, jobtitle: str = Form(enum=[x
154
  async def get_job_neighborhoods(request: Request):
155
  return templates.TemplateResponse('job_neighborhoods.html', context={'request': request})
156
 
 
157
  ### FIND-MY-MATCH ###
158
  # GET
159
  @app.get("/find-my-match/", response_class=HTMLResponse)
 
17
  from localStoragePy import localStoragePy
18
  localStorage = localStoragePy('pathfinder', 'text')
19
 
20
+ from scrape_onet import get_onet_code, get_onet_description, get_onet_tasks, get_onet_activities, get_onet_abilities, get_onet_interests, get_onet_knowledge, get_onet_context, get_onet_skills, get_onet_styles, get_onet_values, get_job_postings
21
  from match_utils import neighborhoods, get_resume, skill_extractor, sim_result_loop, get_links, skillEmbed, sim_result_loop_jobFinder, sim_result_loop_candFinder
22
  from user_utils import Hash
23
 
 
29
 
30
  # LOAD DATA
31
  onet = pd.read_csv('static/ONET_JobTitles.csv')
 
32
 
33
+ # REGISTER, LOGIN, LOGOUT
34
  @app.get("/register/", response_class=HTMLResponse)
35
  def get_register(request: Request):
36
  return templates.TemplateResponse('register.html', context={'request': request})
 
107
  message = "You have been successfully logged out."
108
  return templates.TemplateResponse('logout.html', context={'request': request, 'message': message})
109
 
110
+
111
  ### JOB INFORMATION CENTER ###
112
  # GET
113
  @app.get("/")
114
+ def get_job(request: Request, bt: BackgroundTasks):
115
  joblist = onet['JobTitle']
116
+ bt.add_task(neighborhoods)
117
  return templates.TemplateResponse('job_list.html', context={'request': request, 'joblist': joblist})
118
 
119
  # POST
 
132
  interests = get_onet_interests(onetCode)
133
  values = get_onet_values(onetCode)
134
  styles = get_onet_styles(onetCode)
 
 
135
 
136
  return templates.TemplateResponse('job_list.html', context={
137
  'request': request,
 
154
  async def get_job_neighborhoods(request: Request):
155
  return templates.TemplateResponse('job_neighborhoods.html', context={'request': request})
156
 
157
+
158
  ### FIND-MY-MATCH ###
159
  # GET
160
  @app.get("/find-my-match/", response_class=HTMLResponse)
match_utils.py CHANGED
@@ -10,6 +10,7 @@ from langchain_community.llms.ollama import Ollama
10
  from langchain_community.embeddings import OllamaEmbeddings
11
  from langchain.chains import LLMChain
12
  from langchain.output_parsers import CommaSeparatedListOutputParser
 
13
 
14
  # SSL CERTIFICATE FIX
15
  try:
@@ -19,32 +20,30 @@ except AttributeError:
19
  else:
20
  ssl._create_default_https_context = _create_unverified_https_context
21
 
22
- # LOAD EMBEDDINGS:
23
- simdat = pd.read_csv('static/embeddings/onet_embeddings_neural_chat.csv')
24
- coheredat = pd.read_csv('static/neural_chat_tSNE_dat.csv')
25
-
26
- # LOAD LLM MODELS:
27
- model = Ollama(model="mistral", temperature=0)
28
- embedding_model = OllamaEmbeddings(model="neural-chat", temperature=0)
29
  parser = CommaSeparatedListOutputParser()
30
 
31
- # UTILITY FUNCTIONS
 
 
 
 
32
  def remove_new_line(value):
33
  return ''.join(value.splitlines())
34
 
35
-
36
- async def neighborhoods(coheredat = coheredat):
37
  def format_title(logo, title, subtitle, title_font_size = 28, subtitle_font_size=14):
38
  logo = f'<a href="/" target="_self">{logo}</a>'
39
  subtitle = f'<span style="font-size: {subtitle_font_size}px;">{subtitle}</span>'
40
  title = f'<span style="font-size: {title_font_size}px;">{title}</span>'
41
  return f'{logo}{title}<br>{subtitle}'
42
- fig = px.scatter(coheredat, x = 'longitude', y = 'latitude', color = 'Category', hover_data = ['Category', 'Title'],
43
- title=format_title(logo="Pathfinder", title=" Job Neighborhoods: Explore the Map!", subtitle=""))
44
  fig['layout'].update(height=1000, width=1500, font=dict(family='Courier New, monospace', color='black'))
45
  fig.write_html('templates/job_neighborhoods.html')
46
 
47
-
48
  def get_resume(resume):
49
  path = f"static/{resume.filename}"
50
  with open(path, 'wb') as buffer:
@@ -56,7 +55,6 @@ def get_resume(resume):
56
  resume = "\n".join(text)
57
  return resume
58
 
59
-
60
  def skill_extractor(resume):
61
  system_prompt_template = SystemMessagePromptTemplate.from_template("""
62
  ### [INST]
@@ -80,18 +78,26 @@ def skill_extractor(resume):
80
  result = remove_new_line(result['text'])
81
  return parser.parse(result)
82
 
83
-
84
  def skillEmbed(skills):
85
- embeddings = embedding_model.embed_query(skills)
86
  return embeddings
87
 
88
-
89
- async def sim_result_loop(skills):
 
 
 
 
 
 
90
  embeds = skillEmbed(skills)
 
91
  def cosine(A, B):
92
  return np.dot(A,B)/(norm(A)*norm(B))
 
93
  def format_sim(sim):
94
  return "{:0.2f}".format(sim)
 
95
  simResults = []
96
  [simResults.append(cosine(np.array(embeds), np.array(simdat.iloc[i,1:]))) for i in range(len(simdat))]
97
  simResults = pd.DataFrame(simResults)
@@ -110,14 +116,12 @@ async def sim_result_loop(skills):
110
  simResults.iloc[x,1] = format_sim(simResults.iloc[x,1])
111
  return simResults, embeds
112
 
113
-
114
  def get_links(simResults):
115
  links = []
116
  titles = simResults["JobTitle"]
117
  [links.append("https://www.onetonline.org/link/summary/" + get_onet_code(title)) for title in titles]
118
  return links
119
 
120
-
121
  def sim_result_loop_jobFinder(skills):
122
  embeds = skillEmbed(skills)
123
  def cosine(A, B):
@@ -139,7 +143,6 @@ def sim_result_loop_jobFinder(skills):
139
  simResults.iloc[x,2] = format_sim(simResults.iloc[x,2])
140
  return simResults
141
 
142
-
143
  def sim_result_loop_candFinder(skills):
144
  embeds = skillEmbed(skills)
145
  def cosine(A, B):
 
10
  from langchain_community.embeddings import OllamaEmbeddings
11
  from langchain.chains import LLMChain
12
  from langchain.output_parsers import CommaSeparatedListOutputParser
13
+ from sentence_transformers import SentenceTransformer
14
 
15
  # SSL CERTIFICATE FIX
16
  try:
 
20
  else:
21
  ssl._create_default_https_context = _create_unverified_https_context
22
 
23
+ # LOAD DATA AND EMBEDDINGS:
24
+ simdat = pd.read_csv('static/embeddings/onet_embeddings_st5.csv')
25
+ tsne_dat = pd.read_csv('static/st5_tSNE_dat.csv')
 
 
 
 
26
  parser = CommaSeparatedListOutputParser()
27
 
28
+ # LOAD MODELS:
29
+ model = Ollama(model="mistral")
30
+ embedding_model = SentenceTransformer('sentence-transformers/sentence-t5-base', device='cpu')
31
+
32
+ # UTILITY FUNCTIONS:
33
  def remove_new_line(value):
34
  return ''.join(value.splitlines())
35
 
36
+ async def neighborhoods(jobtitle=None):
 
37
  def format_title(logo, title, subtitle, title_font_size = 28, subtitle_font_size=14):
38
  logo = f'<a href="/" target="_self">{logo}</a>'
39
  subtitle = f'<span style="font-size: {subtitle_font_size}px;">{subtitle}</span>'
40
  title = f'<span style="font-size: {title_font_size}px;">{title}</span>'
41
  return f'{logo}{title}<br>{subtitle}'
42
+ fig = px.scatter(tsne_dat, x = 'longitude', y = 'latitude', color = 'Category', hover_data = ['Category', 'Title'],
43
+ title=format_title("Pathfinder", " Job Neighborhoods: Explore the Map!", ""))
44
  fig['layout'].update(height=1000, width=1500, font=dict(family='Courier New, monospace', color='black'))
45
  fig.write_html('templates/job_neighborhoods.html')
46
 
 
47
  def get_resume(resume):
48
  path = f"static/{resume.filename}"
49
  with open(path, 'wb') as buffer:
 
55
  resume = "\n".join(text)
56
  return resume
57
 
 
58
  def skill_extractor(resume):
59
  system_prompt_template = SystemMessagePromptTemplate.from_template("""
60
  ### [INST]
 
78
  result = remove_new_line(result['text'])
79
  return parser.parse(result)
80
 
 
81
  def skillEmbed(skills):
82
+ embeddings = embedding_model.encode(skills)
83
  return embeddings
84
 
85
+ async def sim_result_loop(skilltext):
86
+ if type(skilltext) == str:
87
+ skills = skilltext
88
+ if type(skilltext) == dict:
89
+ skills = [key for key, value in skilltext.items() if value == "Skill"]
90
+ skills = str(skills).replace("'", "").replace(",", "")
91
+ if type(skilltext) == list:
92
+ skills = ', '.join(skilltext)
93
  embeds = skillEmbed(skills)
94
+
95
  def cosine(A, B):
96
  return np.dot(A,B)/(norm(A)*norm(B))
97
+
98
  def format_sim(sim):
99
  return "{:0.2f}".format(sim)
100
+
101
  simResults = []
102
  [simResults.append(cosine(np.array(embeds), np.array(simdat.iloc[i,1:]))) for i in range(len(simdat))]
103
  simResults = pd.DataFrame(simResults)
 
116
  simResults.iloc[x,1] = format_sim(simResults.iloc[x,1])
117
  return simResults, embeds
118
 
 
119
  def get_links(simResults):
120
  links = []
121
  titles = simResults["JobTitle"]
122
  [links.append("https://www.onetonline.org/link/summary/" + get_onet_code(title)) for title in titles]
123
  return links
124
 
 
125
  def sim_result_loop_jobFinder(skills):
126
  embeds = skillEmbed(skills)
127
  def cosine(A, B):
 
143
  simResults.iloc[x,2] = format_sim(simResults.iloc[x,2])
144
  return simResults
145
 
 
146
  def sim_result_loop_candFinder(skills):
147
  embeds = skillEmbed(skills)
148
  def cosine(A, B):
requirements.txt CHANGED
@@ -10,7 +10,6 @@ python-multipart==0.0.5
10
  python-docx==0.8.11
11
  aiofiles==22.1.0
12
  nltk==3.8.1
13
- unidecode==1.3.6
14
  transformers==4.37.2
15
  torch==1.13.1
16
  accelerate==0.26.1
@@ -20,4 +19,5 @@ passlib==1.7.4
20
  localStoragePy==0.2.3
21
  mangum==0.17.0
22
  certifi==2023.7.22
23
- langchain==0.1.4
 
 
10
  python-docx==0.8.11
11
  aiofiles==22.1.0
12
  nltk==3.8.1
 
13
  transformers==4.37.2
14
  torch==1.13.1
15
  accelerate==0.26.1
 
19
  localStoragePy==0.2.3
20
  mangum==0.17.0
21
  certifi==2023.7.22
22
+ langchain==0.1.4
23
+ sentence-transformers==2.3.1
scrape_onet.py CHANGED
@@ -88,6 +88,25 @@ def get_onet_context(onetCode):
88
  df2 = pd.DataFrame(num_desc, columns = ['Importance', 'Condition'])
89
  df2 = df2[df2['Importance'] != '']
90
  context = df2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
91
  return context
92
  else:
93
  return pd.DataFrame([("We're sorry."), ("This occupation is currently undergoing updates."), ("Please try again later.")])
 
88
  df2 = pd.DataFrame(num_desc, columns = ['Importance', 'Condition'])
89
  df2 = df2[df2['Importance'] != '']
90
  context = df2
91
+ if len(context.index) < 5:
92
+ context_url = "https://www.onetonline.org/link/result/" + onetCode + "?c=wc&n_wc=0&c_wc=0"
93
+ response = requests.get(context_url, headers=headers, verify=False)
94
+ soup = BeautifulSoup(response.text, 'html.parser')
95
+ tasks = str(soup.get_text('reportsubdesc')).replace("reportsubdesc", " ").replace("ImportanceCategoryTask ", "")
96
+ tasks = clean(tasks)
97
+ if len(tasks.split('show all show top 10')) > 1:
98
+ tasks = tasks.split('show all show top 10')[1]
99
+ tasks = tasks.split('back to top')[0]
100
+ tasks = remove_new_line(tasks).replace("related occupations", " ").replace("importance work activity", " ")
101
+ tasks = tasks.split("? ")
102
+ split_data = [item.split(" -- ")[0] for item in tasks]
103
+ num_desc = []
104
+ for i in range(len(tasks)):
105
+ temp = [','.join(item) for item in split_data][i].split(',')
106
+ num_desc.append([''.join([c for c in temp if c in '0123456789']), ''.join([c for c in temp if c not in '0123456789']).replace(')context work context', '')])
107
+ df2 = pd.DataFrame(num_desc, columns = ['Importance', 'Condition'])
108
+ df2 = df2[df2['Importance'] != '']
109
+ context = df2
110
  return context
111
  else:
112
  return pd.DataFrame([("We're sorry."), ("This occupation is currently undergoing updates."), ("Please try again later.")])
static/cohere_tSNE_dat.csv DELETED
The diff for this file is too large to render. See raw diff
 
static/embeddings/.DS_Store ADDED
Binary file (6.15 kB). View file
 
static/embeddings/onet_embeddings_neural_chat.csv DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:ee0f38319dc32fabf6b4e3d21c668f2115fe8d04f83749c7ec549321da613bc0
3
- size 44269270
 
 
 
 
static/embeddings/{cohere_embeddings.csv → onet_embeddings_st5.csv} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:86072bee6b0fe3ea47f18afd9c7959c2c672ebaf24ed6db24a6b375f63035dea
3
- size 38573720
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e38dcf288a3eee4ed1f18d9ccd6513693539ca5f60b7f19f6f4ac34dee55a38b
3
+ size 8310387
static/jd_embeddings.csv CHANGED
@@ -1,2 +1,2 @@
1
- id,username,password,email,account_type,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095
2
- 6fc35140-acc7-11ed-8b05-8a2dec87980d,testemp1,$2b$12$lspTQmUoFI08JWVzMnyTku/V8MPjR6GpUm5RWEA60KVNzJtORWDLu,testemp1@gmail.com,employer,1.2880859, 0.27539062, 2.9199219, -2.6210938, 1.9296875, -2.2304688, -2.0097656, 0.7973633, -0.5161133, -1.3408203, 0.38500977, 0.58496094, -0.24072266, -1.6953125, -0.9633789, 0.06072998, -0.43554688, -0.27441406, -0.111328125, 0.8203125, 0.5107422, -0.49316406, -0.26171875, -0.61083984, -0.113098145, 3.953125, 1.6533203, -1.6933594, 0.72753906, 0.42333984, -0.28344727, -0.45166016, -0.15625, 0.8183594, 0.0013771057, -1.4345703, -2.703125, 1.1542969, 2.5429688, 0.62158203, -1.4423828, 2.3417969, 1.5664062, -0.07299805, 1.7871094, -0.1328125, 1.2373047, 1.25, -1.2490234, -1.7353516, 0.28930664, 0.80029297, -2.2265625, 2.3359375, 1.5351562, -0.2244873, -1.5947266, -0.24438477, 0.13549805, 1.6542969, -0.5439453, 0.46118164, 0.9477539, -1.3261719, -1.0175781, 0.4189453, 0.76953125, -0.32250977, -0.46923828, -1.25, 3.8203125, 2.03125, 1.5644531, 0.19262695, 0.19946289, 0.52001953, 2.5703125, -1.3613281, 0.9609375, 1.7324219, -1.5214844, 0.49047852, 0.23083496, -0.13769531, 1.7939453, -0.9785156, 0.3959961, 0.109436035, -1.6318359, 2.2167969, 1.8798828, -0.103881836, -2.078125, 0.026855469, -0.6352539, -0.09069824, -1.7324219, 1.0244141, -0.2154541, -3.2890625, 1.0009766, -0.1574707, 1.125, 0.20922852, 0.20507812, 1.6767578, 1.7900391, 1.3984375, 1.0087891, 1.3398438, -1.3232422, -1.1416016, 1.3007812, -1.2607422, -0.49267578, 0.5917969, -0.58251953, -0.032440186, -0.6621094, 0.23535156, -1.3017578, -0.56640625, 0.23486328, 2.2480469, -1.2089844, 0.8725586, -0.6538086, -1.7519531, -1.0117188, -1.7949219, 1.2480469, -0.42236328, 1.78125, -1.7431641, 2.40625, 0.09814453, 0.6479492, -1.6171875, -0.56640625, 0.64453125, 2.2265625, -0.22473145, -0.31689453, 1.9013672, -0.58691406, -0.72509766, -0.28320312, -0.5629883, -1.3037109, -1.484375, -2.0917969, -1.6015625, 0.27197266, 0.63916016, -1.9238281, -0.8286133, 0.7553711, -1.0302734, -0.84277344, 1.2792969, 0.8310547, -0.5678711, 1.5214844, 1.171875, 0.54541016, -0.48876953, 0.8388672, 1.6796875, 2.7871094, -0.31396484, -1.6728516, -0.39282227, -0.14111328, 1.3789062, 0.7421875, 1.8349609, -0.70458984, 0.82714844, 0.6508789, -0.53808594, 0.22058105, 0.5419922, 0.3334961, 0.56152344, -1.109375, -0.47875977, -0.6816406, 0.8383789, 0.6933594, -0.08325195, 1.3310547, 0.80371094, -1.2021484, 0.5449219, -1.6269531, 1.5996094, 1.5537109, 1.9667969, 3.4980469, -1.0488281, 0.89453125, 0.48095703, -0.11340332, 1.4453125, -0.2980957, 1.7617188, -0.9213867, 0.18115234, -2.0859375, 0.93066406, -0.9399414, -1.5878906, 1.3466797, -0.047851562, 1.4482422, 1.9404297, -0.63623047, 1.1064453, -0.22827148, -0.82128906, -0.9091797, -1.0771484, 1.6054688, -1.9726562, -0.82128906, 0.06262207, -0.11981201, -0.5517578, -0.064208984, 0.095458984, 0.79541016, 0.23217773, -0.68310547, 2.0136719, 3.359375, 0.85009766, -0.5317383, 0.5913086, 0.049591064, -1.3574219, 0.8696289, -0.85058594, -0.3317871, 0.5878906, 0.58740234, 0.1862793, 3, -1.9394531, 0.7089844, 1.328125, 3.4902344, -0.81689453, 0.78808594, 1.2490234, -1.3046875, 0.31689453, -1.9238281, -2.9042969, -0.1104126, 0.546875, 0.98779297, 0.34350586, 0.15649414, -0.48168945, 0.38208008, 0.8383789, -0.2746582, -1.9111328, -0.13293457, 0.3227539, -2.2695312, 0.6201172, 6.3398438, 1.2060547, 0.8022461, 0.5605469, -1.1259766, 0.36938477, -2.109375, 0.16235352, 0.32739258, 1.7314453, 0.07775879, -0.8144531, 1.4648438, -1.3066406, 0.18078613, 0.99902344, 3.1992188, -1.3105469, -2.0410156, -0.55566406, -3.0546875, -1.9316406, -2.0585938, -0.6669922, -0.88671875, 0.049713135, 1.5576172, 0.9770508, -1.3701172, -1.7949219, -2.5117188, -0.17163086, -0.8857422, -1.6230469, -1.5605469, 0.25195312, 0.79345703, 1.2519531, -2.9335938, -1.1376953, 0.73828125, 2.3984375, -0.7260742, 0.01876831, -0.058532715, -1.1064453, -0.26367188, -1.0380859, 0.4416504, -1.2900391, -1.0869141, -0.17175293, -0.38208008, -0.5180664, -0.21130371, 1.8964844, 1.2109375, 0.7973633, 3.0976562, -0.3400879, -0.609375, 0.34814453, -1.8789062, -0.14746094, 1.3564453, 2.6132812, -0.5493164, -1.359375, -0.8046875, 0.51464844, -0.61572266, -1.65625, -1.4824219, 0.8989258, 0.18334961, 1.8955078, 2.0019531, 0.46264648, -0.7363281, -0.75097656, 0.84716797, -2.1875, -0.34204102, -1.9433594, 3.0195312, -1.9453125, -3.4355469, 1.4541016, 0.19726562, -0.44482422, -1.9169922, -0.81152344, 1.6845703, -1.0410156, -0.58984375, -0.43554688, 1.3486328, -1.9707031, 0.32910156, 2.0683594, -1.6601562, 0.42651367, 0.07537842, 0.16552734, 1.3564453, 0.2685547, 0.11553955, -1.2880859, 0.67871094, -0.7841797, -0.39672852, -1.2617188, -2.84375, 0.8305664, 0.875, -0.1973877, 1.7744141, 1.0869141, 0.32641602, -3.3554688, 0.5522461, 0.4086914, -0.46704102, -0.41674805, 0.34545898, 1.0048828, 1.4628906, 0.27075195, 1.7285156, 0.3713379, -0.86279297, 0.9199219, -2.0058594, -0.8725586, 0.5048828, 0.71191406, 0.23693848, 1.2675781, -0.57666016, -1.0625, 0.08728027, -0.84472656, -0.39013672, -0.38378906, -0.62597656, -1.2841797, -0.77978516, -0.5751953, 0.5307617, 0.46166992, -1.2675781, 0.96875, 0.8955078, 1.28125, -0.46557617, -1.4130859, -1.9765625, 0.018127441, 0.5288086, -1.3759766, -2.7597656, 2.0253906, -1.1728516, -1.578125, 2.46875, 0.21252441, -0.16540527, -0.86865234, -0.08544922, 0.017211914, 0.020568848, -0.4724121, 1.3720703, -1.3125, 1.0878906, 1.1972656, -0.62841797, 0.72216797, 0.6074219, 0.5205078, -0.07409668, -0.6611328, -0.41088867, -0.46826172, -1.3164062, -0.08251953, 1.578125, -0.9135742, 1.3945312, 0.73779297, -0.02532959, -1.9335938, -0.08270264, -1.7070312, 1.0595703, 0.44213867, 0.9277344, -0.9926758, 0.18115234, 0.76220703, -0.42529297, 0.7338867, -0.81933594, -0.88916016, -1.9921875, 0.10559082, 0.18395996, 2.1015625, -2.0253906, -1.2646484, 1.7519531, 1.5507812, 0.49121094, 1.6679688, 0.59277344, -0.78564453, -0.6269531, 0.8066406, -0.80078125, -1.7148438, -2.3125, 0.09814453, 2.1308594, 0.07635498, -0.7573242, 0.03842163, -0.3461914, 0.9213867, -0.51171875, 0.20263672, -2.2695312, 0.11114502, -0.65722656, -1.9550781, 1.3271484, 3.203125, 0.5415039, 1.0517578, 0.2590332, 1.7128906, 3.0429688, 0.40795898, -0.89501953, -0.28027344, 0.3100586, 0.18103027, 0.3852539, -2.015625, 0.69921875, -1.5351562, -0.45043945, -1.1435547, -2.4589844, -0.096069336, -0.045715332, -1.3154297, 0.53125, 0.20666504, 1.2548828, 2.0742188, -1.6005859, -1.5488281, 0.25, 1.8603516, -0.07891846, 0.85546875, 1.9902344, -0.5410156, -1.6269531, 1.1904297, 1.6855469, -3.2871094, -1.6572266, 0.51953125, 1.7490234, 1.8066406, 0.48657227, -1.4521484, -0.18774414, 0.17871094, -1.6367188, 1.5126953, 2.9785156, -0.4189453, 0.25732422, 0.84521484, -0.060424805, -0.2548828, -0.60302734, -0.9160156, -0.7548828, -0.5473633, 0.39624023, -1.1298828, 0.9350586, -0.45166016, -0.76953125, -0.6010742, 0.46142578, 0.09124756, 1.9355469, -1.7734375, 1.7646484, -1.4072266, 0.16125488, -0.7963867, -0.008743286, 0.2626953, 0.6303711, 1.8544922, -2.2011719, -1.0869141, 0.064453125, -1.1777344, -1.1367188, -0.37695312, -0.9189453, -2.1015625, -2.5078125, 0.8911133, -0.72021484, 1.0224609, 1.7402344, 0.13647461, 0.4987793, 0.6899414, -0.9658203, 0.4309082, 0.6669922, 1.5927734, 0.75097656, -3.6464844, 0.54052734, -1.0097656, 1.5292969, 0.15270996, 1.8964844, 0.71728516, 0.036499023, -1.1181641, 1.5146484, 1.3291016, 0.9091797, -1.1132812, -1.3222656, -2.1542969, 0.59228516, -0.8935547, 1.859375, -1.2294922, -0.38867188, 1.3613281, 0.24304199, -0.63427734, -3.2011719, -1.9111328, -2.1757812, 0.6611328, 0.3400879, -0.20495605, 0.55908203, -1.859375, 1.4658203, 0.52001953, 0.37329102, 0.77783203, -1.8671875, -0.32250977, -0.06896973, -0.046661377, 0.42260742, -1.2568359, -2.4296875, 0.08026123, -0.7133789, -0.34985352, 1.4824219, -0.92529297, 0.5175781, 1.9101562, 0.0546875, -0.13098145, 0.14782715, -1.5097656, 0.2866211, 1.2441406, -0.16320801, 0.65625, -0.25585938, 0.43652344, -1.3789062, -0.44970703, 1.0664062, 1.3798828, -1.09375, -0.025177002, 3.1191406, 1.6123047, 2.3847656, 2.2929688, -0.83251953, -0.13244629, -0.83935547, -0.5625, -0.042297363, -0.05328369, -0.83691406, 0.124572754, 1.5488281, 0.39575195, 0.22338867, 0.12939453, 2.9433594, 0.18798828, 0.2536621, -0.9609375, 0.3305664, 1.1679688, -2.2304688, -1.6464844, -0.6503906, 0.57421875, 0.65771484, 0.4724121, -2.5, -0.4111328, 0.45581055, -0.4934082, -1.2822266, 0.42504883, -0.010398865, -0.75634766, 0.98046875, 0.14538574, 0.3955078, -0.6044922, -2.5820312, 1.5175781, 1.2792969, 1.3320312, -0.40014648, -0.14855957, 2.9179688, 0.7446289, 1.1728516, -1.0234375, 0.69628906, -1.7285156, -0.96777344, 1.5292969, 1.9150391, -1.8125, -1.390625, 4.1484375, 0.017654419, 0.13696289, 0.44360352, 2.5234375, 0.020980835, -1.7685547, 1.9609375, 0.9550781, -0.7128906, 0.42138672, 0.98291016, -1.2773438, -3.1796875, -1.46875, -0.9267578, -0.7993164, 0.68408203, -1.6533203, -1.5761719, -0.63134766, -3.7089844, -0.11468506, -1.0224609, -0.08898926, 0.41918945, 2.1621094, 0.00756073, -1.3291016, -0.7363281, -2.0078125, 0.85498047, 0.5546875, -0.61621094, 1.2626953, -1.34375, -0.02796936, 2.8632812, 0.5019531, -0.20629883, -0.7753906, 0.034454346, -1.9824219, 1.1679688, 0.1574707, 0.6538086, -1.9345703, -2.0488281, -0.7758789, -2.9199219, -1.5654297, 0.8364258, 2.1171875, 2.5410156, -0.2578125, -1.65625, -0.59716797, 1.1025391, 2.8886719, 0.059936523, 0.3540039, 2.1953125, -0.2861328, -0.16784668, 3.2207031, -0.6201172, -0.051940918, 0.1159668, 0.7529297, -1.3701172, -1.5644531, -1.1904297, 1.1708984, 1.2558594, 0.7026367, -0.2956543, 0.69970703, -0.8745117, -0.5131836, 0.7055664, 0.84472656, 0.46142578, -0.5161133, -0.013145447, -1.5039062, -0.6855469, -0.85009766, -0.19006348, 1.8544922, -0.22265625, 3.4589844, 0.10430908, -1.2421875, -0.39208984, -0.64697266, -0.012489319, -1.9492188, 0.5649414, 0.5756836, -1.8603516, 0.27612305, 0.10058594, 0.35083008, -1.1328125, 0.5488281, -0.3959961, 0.6591797, -0.19018555, 1.3017578, -0.1307373, 0.64160156, -1.2431641, 3.2597656, -2.3417969, 0.40576172, 4.2382812, 0.95947266, -0.39770508, -1.5273438, 0.64160156, -2.6796875, -2.7753906, 0.4572754, -1.0117188, 0.51660156, -0.45874023, 1.5400391, 0.8417969, 0.2479248, 0.025268555, 1.4453125, -0.89501953, -1.0791016, -2.0996094, -0.64160156, 0.036621094, -0.25463867, 0.65185547, -0.86328125, 0.5834961, 0.9975586, -1.9101562, -3.3222656, 0.9921875, -1.3671875, 1.3017578, 1.8720703, 2.5078125, -1.8017578, -0.18688965, 0.9082031, -0.88378906, -0.95751953, 0.49609375, 0.51464844, 0.6352539, 1.6679688, 0.6064453, 0.51416016, -0.19909668, 2.1347656, 1.3447266, 0.72802734, -1.4003906, -1.9814453, 1.0439453, 0.21740723, 0.47827148, 1.6318359, -1.3876953, -0.06744385, -0.95947266, -1.5732422, 0.06549072, -0.5883789, -3.015625, -1.1347656, -0.08026123, -0.91552734, 1.2773438, -0.38793945, -0.63720703, -1.0537109, 2.6308594, 0.49975586, -1.1601562, -0.4897461, -1.90625, -0.6621094, -0.4934082, -0.6386719, 0.0513916, 1.4785156, -0.51123047, -1.3789062, 0.43774414, -0.7006836, -2.2558594, 1.4941406, -0.6333008, 0.30322266, 0.31713867, -1.7314453, 3.7578125, -0.52197266, -2.1035156, -1.0195312, 1.6123047, -1.0214844, -1.2060547, -1.4648438, 2.4707031, -0.7524414, -3.6074219, -0.93847656, -0.75, 0.6660156, -0.87841797, -1.2119141, 0.6464844, 0.5571289, -1.7011719, -0.82421875, -1.3144531, -0.09954834, 0.15283203, 1.2236328, -0.51464844, 0.08538818, -2.9648438, 3.109375, 0.3330078, 0.9135742, 0.69628906, 0.80859375, 1.7578125, 0.27416992, -0.8388672, -1.765625, 0.91308594, 0.5546875, 2.25, -0.23181152, -1.7265625, 0.5703125, -2.7890625, 0.6225586, -0.28076172, 0.33569336, -0.98828125, 2.4550781, -0.57958984, 0.99072266, 0.8754883, 0.47631836, -0.6142578, -0.29003906, -1.5878906, -0.5366211, -2.0820312, 1.609375, -0.15002441, 1.7939453, -2.8320312, 2.7988281, -0.028549194, -0.75097656, -2.0175781, 0.3203125, -2.3183594, -1.1835938, -0.8720703, 0.15771484, 1.7158203, 1.8769531, -0.049957275, 2.1425781, 0.2536621, 3.4003906, -1.3222656, -1.6445312, 0.49072266, 0.5908203, -1.1083984, 1.5673828, -1.0839844, 4.0546875, 0.22473145, -0.52001953, 0.42749023, -0.23828125, 1.3789062, -0.50390625, 2.0527344, 2.6992188, -0.56640625, -0.19140625, 0.8276367, -0.3088379, 2.0566406, 0.88427734, 0.9433594, 2.8867188, -1.2939453, -0.008506775, 1.4941406, 0.8310547, -1.1396484, -2.1835938, -0.60546875, -1.6982422, -2.015625, -1.7373047, 0.5600586, -1.3994141, 0.6557617, 1.25, -2.34375, -1.1757812, 0.6948242, 1.5673828, 1.9541016, 3.0039062, -0.25976562, -1.4296875, 0.6855469, -0.9785156, -0.88720703, -2.0097656, -1.4052734, -2.1035156, -2.0917969, 1.1816406, 1.9462891, 2.5683594, 1.2460938, -0.23620605, -1.7001953, 1.7480469, -1.2207031, -0.5385742, 0.083740234, 0.9399414, -0.5253906, 0.25390625, 0.52685547, -0.30786133, 0.76660156, 0.71728516, 0.5439453, -0.18383789, 1.7822266, 2.390625, 0.7998047, 1.1230469, -1.0683594, 0.29223633, 0.9692383, -0.53222656, -0.07678223, 1.2480469, -2.609375, -1.6044922, 0.10949707, -1.0673828, 2.1796875, 2.0019531, 0.68847656, -1.3730469, -0.13903809, -1.5371094, 2.765625, 2.2109375, -0.97021484, -0.40649414, 0.10247803, 0.43286133, 2.3730469, 0.04135132, 0.17578125, -0.9296875, -0.23547363, -0.92822266, -1.3427734, 0.10028076, -3.2890625, -0.7895508, 1.2724609, 2.4960938, 0.2775879, -1.9111328, 0.54345703, 0.14672852, -0.5673828, 0.56396484, -0.045196533, 0.7089844, 0.58154297, -2.7480469, -1.4892578, -0.19812012, 0.8232422, 0.13024902, 0.09503174, 1.4013672, 1.3789062, 0.9189453, 0.6669922, -0.82128906, -1.7119141, -1.0820312, 0.5522461, -1.9960938, 1.21875, 0.011329651, 0.48706055, -2.0644531, -2.3320312, 0.3388672, -1.640625, -1.6484375, -0.44970703, -0.49487305, 0.18139648, -2.0507812, -2.65625, -2.2792969, -1.8837891, 2.4238281, 0.39257812, -3.3554688, -0.8173828, 1.4257812, -2.4863281, 0.8613281, -0.21948242, -2.0820312, -2.3027344, -2.453125, 0.85009766, -2.0273438, 1.2890625, -1.0683594, -3.5214844, -3.125, -1.0019531, 0.0690918, 0.004108429, 1.8994141, 0.42114258, 1.2460938, -1.2597656, -1.5205078, 1.6064453, 0.6308594, 0.20019531, -1.8261719, -0.9916992, -0.8520508, 1.2832031, 1.9521484, -0.7753906, 0.8618164, -0.012992859, -1.5, 0.5566406, 1.4072266, 0.5786133, 0.094177246, 2.0371094, -0.55029297, 0.4855957, -0.09942627, -2.0234375, 0.65625, -0.98535156, -1.4228516, 1.0390625, 2.1054688, 2.0039062, -1.3779297, -0.8510742, 0.62890625, 1.3935547, 0.6464844, -1.1738281, 0.22521973, 0.7216797, -1.1728516, -1.0820312, 0.7783203, 1.5019531, 1.9404297, -1.609375, 1.3125, 0.05609131, 0.09423828, 2.0195312, -4.546875, 2.0664062, 0.010253906, 0.7006836, 0.67871094, 1.3984375, 0.20043945, -1.671875, 0.035736084, -0.49560547, -3.1796875, -1.2519531, 0.2841797, -0.8730469, -1.5703125, -0.28930664, -0.21508789, -0.8364258, 0.60058594, 0.08642578, -2.4121094, -0.32495117, -0.6894531, -2.2148438, -0.88623047, 1.234375, -0.64501953, -0.80859375, 1.7324219, 0.42773438, 0.51953125, 1.3730469, -1.1044922, 0.72314453, 0.39746094, 0.4482422, -1.6650391, 1.0742188, 0.8354492, -0.26000977, 0.1854248, 0.28735352, -0.3149414, 1.7675781, 0.4260254, 0.54296875, -0.16833496, -2.6191406, -0.71191406, -0.63427734, 0.9560547, 2.2207031, 0.7167969, 0.45532227, 2.1015625, 1.3212891, -1.1591797, -0.117248535, 2.7539062, 0.73291016, -0.43481445, -0.07159424, 1.5664062, 2.4140625, 0.053527832, 3.2519531, 0.453125, -0.32495117, 1.3574219, 4.0742188, -0.46850586, 1.1826172, 0.54052734, 0.92578125, -1.3427734, -0.26098633, 2.7402344, -0.34399414, 1.2236328, 0.2631836, -0.7324219, -2.8144531, -0.15258789, 0.5048828, 0.93603516, 0.66308594, 1.1347656, -0.91845703, -0.5493164, -0.8378906, 3.8554688, -1.5390625, -0.52490234, 0.5449219, -0.55566406, 0.03805542, -0.5913086, -1.9716797, -0.43041992, 0.10650635, -0.75634766, 0.23278809, 1.0175781, -0.28320312, -0.1262207, 1.5986328, -1.6777344, 0.42651367, 0.92041016, -0.6533203, -0.36206055, 1.3066406, -1.2001953, -0.7993164, -2.0136719, -0.28100586, -0.2130127, 0.19995117, -0.3959961, -0.3347168, 2.0644531, 2.0703125, 1.7373047, 1.0654297, 0.097351074, -0.5966797, -0.7495117, -0.6381836, -1.9492188, -1.4550781, -0.36376953, -2.0859375, 0.11608887, -2.1191406, 0.41796875, -0.12695312, 2.6972656, 0.22351074, 0.07696533, -0.19628906, -2.1074219, -0.12866211, -0.051757812, -0.51464844, 1.7353516, -0.8769531, 1.4511719, -1.4824219, -2.3984375, -0.9003906, 1.265625, -4.6523438, -0.066589355, 0.35302734, 0.32177734, -0.63916016, -0.8935547, 1.0048828, 1.2998047, -0.67041016, 1.125, -1.5830078, -0.8100586, 1.0800781, 0.6455078, -0.87841797, -0.12561035, 0.7338867, -2.2402344, 1.8759766, -1.0478516, -1.6953125, 0.055725098, -0.7866211, -1.46875, -0.51220703, 0.25585938, 0.048461914, -0.5263672, 1.4736328, 2.2402344, -0.21240234, 0.07714844, 0.48486328, -0.68408203, -1.9550781, 0.016677856, -2.0644531, -2.4199219, -0.5957031, 0.5517578, -2.9238281, 0.9033203, -0.98535156, 2.3261719, -0.29418945, -0.671875, 1.0703125, -0.2626953, -1.4931641, 0.047058105, 1.2626953, 0.023635864, -1.6621094, 1.1386719, -0.7133789, 2.3808594, 0.2368164, -0.25048828, -2.375, -1.2705078, 2.2363281, 0.054626465, 0.34887695, -0.045532227, 3.7070312, 0.5073242, -1.5107422, 0.90771484, -0.4428711, -0.39575195, 2.0039062, 0.80322266, 1.0898438, -2.3046875, 0.76171875, 0.33154297, 1.8388672, -1.5908203, 0.09100342, 1.515625, 0.4790039, 0.20458984, -0.5517578, -1.59375, -1.6425781, 0.5839844, -0.9560547, 0.5966797, -1.3310547, 2.5332031, 0.86572266, -0.019165039, 1.2851562, 0.9604492, -0.48364258, 0.49316406, 0.7006836, 0.9296875, 0.4489746, 1.1328125, 0.71777344, 0.7036133, -3.4355469, -1.3291016, -0.99072266, -2.2539062, -2.0410156, 0.9580078, -0.6308594, 0.5859375, 1.9541016, 1.6816406, -0.7475586, 0.5878906, 0.3383789, -0.27148438, -0.625, 0.49951172, -2.5449219, -1.0898438, -0.24572754, 0.63964844, -2.7558594, -1.0566406, -0.89697266, 0.11584473, 0.08319092, -1.8330078, -0.62402344, 1.28125, 0.6582031, 0.4921875, -0.18591309, 1.6962891, -0.7480469, 0.8642578, -0.9824219, 0.23205566, -0.11853027, 1.4716797, -2.4082031, -0.6254883, 2.78125, -2.3984375, 0.8364258, -0.37475586, -0.81347656, 0.87402344, -1.5009766, -0.0690918, -0.23864746, -1.0117188, 3.3515625, 1.1025391, 1.7568359, -1.15625, -4.4257812, -1.1757812, -0.2578125, -0.103027344, 1.3037109, -2.28125, -0.15222168, 0.5830078, 1.0136719, -1.4550781, -1.2333984, -2.0097656, -1.9296875, 0.18603516, 0.7885742, -0.8442383, 0.08868408, -0.68115234, -0.9951172, 1.4257812, 1.1513672, -3.0566406, -0.3227539, 1.9384766, -0.044555664, 1.9394531, -0.6220703, -0.19873047, -1.671875, -1.2119141, 0.2939453, -0.9916992, -0.34326172, 0.9814453, 1.1748047, -0.7392578, 0.28198242, -0.2064209, -3.1816406, 1.1865234, 0.35546875, 2.6914062, 1.3818359, -1.2900391, -2.6796875, -0.890625, 1.0322266, 1.0458984, -1.1640625, -0.32177734, -0.60791016, 0.7705078, -1.2724609, -0.10412598, 1.7607422, -0.9003906, 1.5537109, -0.0077209473, -1.0107422, -0.004951477, 1.015625, 1.2128906, 0.86035156, 0.05996704, -0.22375488, -0.51220703, -0.63378906, 0.8779297, -0.29052734, -1.4765625, 0.9145508, 0.20776367, 0.5996094, 0.55371094, -0.16784668, -0.99609375, -2.6328125, -0.6308594, -0.15283203, 4.4960938, -1.0576172, 0.057006836, 3.1445312, -0.80859375, 0.38061523, 0.9785156, -1.421875, -1.5966797, -2.2207031, -0.015197754, -0.47583008, -1.4990234, -2.0761719, -0.83251953, 1.5449219, -1.9326172, 1.4511719, -0.8300781, -0.20617676, 0.3449707, -0.3972168, 0.8725586, 0.81103516, -1.0214844, -0.22424316, -1.0615234, 0.9633789, 1.140625, -2.0703125, 0.066223145, 4.0351562, -1.2089844, -0.039276123, -0.58984375, -0.31054688, 1.0712891, -1.0595703, 0.07763672, -1.0957031, 0.50634766, -1.2773438, -1.6445312, 1.9960938, -0.27929688, 3.78125, 0.93115234, -1.1435547, -0.6796875, -0.8564453, 1.0009766, -0.11468506, -0.16467285, 1.2490234, 0.93408203, 0.09375, -0.0725708, 0.9165039, 0.17028809, -1.1953125, -0.81396484, 0.93603516, 1.0859375, -2.8847656, -0.5439453, 1.8203125, -0.9814453, -0.84375, -1.0556641, 1.1826172, 0.5913086, 1.9316406, 0.7529297, 1.3378906, -1.3144531, -0.04824829, 0.09362793, 0.82470703, -1.2324219, 0.123291016, 1.9707031, 1.3769531, -0.65771484, 0.47583008, 0.9316406, 0.65527344, 0.65722656, 0.04284668, 1.3164062, 2.1660156, -1.5810547, -0.51904297, -0.3720703, 1.6982422, 1.1376953, 0.3239746, -0.96972656, 1.1132812, 1.5654297, -0.28100586, -0.79248047, -0.5253906, 0.8510742, 1.3173828, 0.4638672, -0.9086914, 3.6679688, -0.24255371, 0.89697266, 0.07543945, 0.20458984, 0.39404297, 1.6552734, 0.703125, 0.22131348, 0.7993164, 2.5820312, 0.98535156, -2.1367188, -0.5239258, -1.7373047, -0.09552002, -0.14245605, 1.9550781, -1.1914062, 1.1513672, 0.31762695, -1.3818359, 0.3166504, 0.2109375, -0.03579712, 0.12548828, 0.068725586, -3.2695312, -0.08880615, -0.39257812, 1.46875, -0.7758789, 1.5683594, 0.9223633, 0.2915039, 0.12976074, 2.109375, 0.5986328, -0.16113281, -2.1308594, -0.8286133, 1.0488281, -1.1015625, -3.3632812, -3.6855469, -2.1542969, 0.7832031, -1.9169922, 1.2539062, 0.8613281, 0.9267578, -1.7880859, 2.0078125, 0.21435547, -2.1035156, -1.0058594, 3.4882812, 0.43066406, -2.4375, -1.3125, 0.25170898, 2.9882812, -1.1855469, 0.8256836, 0.75927734, 0.7910156, 0.47802734, 2.6777344, -0.34472656, -2.1796875, 0.5415039, 0.6879883, -0.9824219, -0.8276367, -1.9755859, 0.35302734, -1.6318359, -1.9794922, -0.5439453, -0.4711914, -1.7578125, -0.4777832, 1.7128906, 0.21679688, 0.22265625, 1.0498047, -0.33666992, -1.1494141, 0.39624023, 2.5253906, 1.1982422, 0.26831055, 1.7285156, 1.0214844, -0.9189453, -0.49487305, -2.1132812, -2.6289062, 0.80859375, -1.3291016, -0.16748047, -0.066833496, 1.0644531, -1.6464844, -1.8046875, 0.8510742, 0.08886719, 0.48095703, -0.14428711, 0.6850586, 0.99365234, -0.8300781, 3.046875, -1.4589844, -1.5117188, 3.5878906, -1.4208984, -1.6953125, 0.9248047, 0.86376953, 1.28125, -0.56152344, 0.6713867, 0.60302734, -1.3779297, -1.0458984, -0.90771484, 0.70214844, 0.7368164, -1.8378906, -0.09118652, 1.21875, 2.953125, 0.7314453, -0.7553711, -0.29345703, -0.37231445, -1.6132812, -1.7822266, 1.1894531, 1.2158203, -1.2128906, -1.2402344, 0.5629883, 0.33642578, 0.6425781, 0.11871338, -0.95751953, 0.006160736, -1.9091797, 0.3557129, 0.9892578, 0.2154541, 1.0478516, 2.4238281, -0.049072266, 2.2695312, 0.9038086, 2.4765625, -0.44311523, 0.44677734, -0.64160156, -0.17370605, 0.28637695, -0.36083984, -0.23693848, 0.55371094, -2.7558594, -2.3105469, -0.15185547, -0.68115234, -1.1962891, 0.39892578, -0.55322266, 1.0820312, -1.171875, -8.6171875, 0.09777832, -1.6230469, -0.5864258, -1.1933594, -0.29174805, -1.1816406, -0.6411133, 1.9394531, 0.734375, -2.2421875, 0.2487793, 0.5463867, 0.47070312, -0.1821289, 0.60302734, -1.5205078, 0.50927734, -1.4042969, 0.69189453, 2.4511719, 0.5830078, -0.29711914, -0.8442383, -0.34350586, 1.4990234, 0.19714355, 0.6586914, 0.5078125, 0.51416016, -2.2089844, -0.7246094, 0.6074219, 2.0136719, -0.21166992, 1.2382812, 2.0253906, -1.0986328, 0.41430664, 1.4511719, -0.44580078, 0.83154297, -2.4257812, -0.79052734, -0.36669922, 1.9287109, -0.31958008, -0.2902832, 0.13220215, 0.06298828, 0.15710449, 0.22851562, 1.1708984, 0.17297363, 1.3427734, -0.3684082, 1.8466797, -0.22790527, 1.8037109, 0.11773682, -1.0595703, 1.8183594, -1.4462891, 1.2285156, -2.015625, 0.024246216, -2.8632812, 1.7900391, -1.2402344, -0.90234375, -1.4404297, 0.9008789, -0.28515625, 0.6225586, 0.14807129, 1.9941406, -0.8354492, -1.5146484, 2.1347656, 3.5546875, -0.9536133, 0.13354492, 0.19018555, -0.7109375, 0.77978516, -0.43847656, 1.8388672, -0.056610107, -0.47192383, 0.44750977, 1.3447266, -0.13793945, 0.5395508, 1.9628906, 0.85009766, 0.5024414, 1.6894531, 0.29467773, 0.010139465, -0.24536133, -1.2431641, -0.5571289, -1.5947266, 0.99609375, 0.35546875, -3.0214844, 0.84472656, -0.7416992, -0.61865234, -2.9414062, -1.5117188, 1.421875, -2.015625, -0.37475586, 0.30029297, -2.0097656, -0.44873047, 0.72314453, 0.083984375, 0.51708984, -2.0722656, -1.2675781, 1.7792969, 0.22692871, 1.0380859, -1.03125, -0.38427734, -0.81884766, -0.68310547, -0.8828125, -3.3554688, -1.7324219, -2.1484375, -0.25732422, -0.92871094, -1.8847656, 1.4179688, 1.9130859, 1.2998047, -0.28515625, -0.9453125, 1.046875, -0.4892578, -1.4033203, -0.55566406, -1.1347656, -1.4628906, 0.4025879, -1.5351562, -0.7553711, -1.2480469, 0.19812012, 0.3005371, 2.9882812, 2.7753906, 0.32617188, 2.5664062, -0.5336914, -1.5058594, 0.27783203, -0.8046875, 1.7177734, -1.3818359, 0.15319824, -3.9511719, -1.3046875, -6.1992188, 1.1103516, -0.22924805, -0.8339844, 0.9741211, 0.59814453, 0.7729492, 0.28100586, 1.9824219, -1.1796875, 0.99365234, 0.060577393, -2.5019531, 0.5004883, 0.8173828, 1.28125, -1.6679688, -0.24389648, -2.2558594, -2.4980469, 1.2333984, 0.06210327, 3.6640625, 1.8154297, 2.5644531, 0.7060547, -0.7578125, -0.16955566, 0.29907227, -1.3505859, 0.5214844, 1.4238281, 1.0449219, 0.4765625, -0.0892334, 0.91845703, 0.11920166, 1.9072266, 0.92529297, -0.7211914, -0.47485352, 0.35717773, 0.484375, -2.375, 0.7495117, 2.6523438, 2.8886719, 0.3059082, 2.4296875, -2.0449219, -0.31445312, 0.91845703, -1.6796875, 0.7246094, -0.28564453, -0.2019043, -0.28222656, -1.2402344, 0.5234375, 0.2644043, 1.0292969, -0.12817383, 0.12902832, 0.8774414, 0.18103027, 0.53564453, -0.86083984, -2.6484375, -0.7841797, -1.6630859, 0.24023438, 0.5625, -1.5546875, 2.7324219, -0.15600586, 0.99609375, -4.8945312, 2.1347656, -0.5961914, 0.26367188, 0.5317383, 1.0185547, 0.29003906, -0.8203125, -1.4335938, 0.1385498, 0.42407227, 0.64697266, 2.3085938, -0.63964844, -0.22619629, 1.3964844, 1.90625, 2.1503906, 1.8574219, -1.1728516, 0.87402344, 2.5996094, 0.30541992, 1.2451172, -0.78222656, -0.68603516, -1.3154297, 0.3413086, 1.0273438, -2.2890625, -0.97998047, -1.5556641, -0.81347656, -0.9057617, -0.1439209, -1.7207031, 0.67333984, -0.13671875, 0.12371826, -0.25317383, 0.7832031, 2.3300781, 1.6621094, -1.3164062, 2.0742188, -1.0800781, -0.3334961, -1.5654297, 0.05343628, -2.2949219, 1.1787109, -1.5332031, 2.3183594, 0.37768555, -0.60302734, 0.95214844, 1.1962891, -2.8984375, 2.15625, -1.3935547, -2.6113281, -1.2011719, 2.0605469, -0.076293945, 2.53125, -0.63623047, 0.8666992, -1.0556641, -0.3515625, 0.042816162, -2.6542969, -1.6015625, -1.0791016, -0.6196289, -2.2148438, -1.5576172, -1.3769531, -0.7861328, 0.5864258, 0.24523926, 0.45043945, 1.8173828, -0.38476562, 1.2539062, 1.0878906, -3.4042969, -0.84521484, 0.31640625, -1.0253906, 0.07501221, -0.5732422, 0.031021118, 1.9394531, 0.4580078, -2.6484375, -0.092285156, 0.4248047, -1.1943359, -0.7832031, -0.9370117, 0.5854492, 0.032226562, 0.4008789, 1.1787109, -1.2460938, -0.72998047, -0.7133789, 0.078063965, -2.4433594, 2.0546875, -0.004749298, 0.57470703, 0.20373535, 3.1230469, 0.71972656, 0.7089844, -0.64941406, 0.43481445, 0.88671875, -0.96484375, -4.3945312, -1.5761719, -0.61279297, 0.16638184, 1.6337891, -0.5966797, 1.9541016, -1.2666016, 0.5517578, -0.7661133, -1.7158203, -0.012107849, 1.4824219, 0.421875, 1.5888672, 3.015625, 0.79345703, -0.5883789, 0.80371094, -0.3786621, -0.77246094, 2.1542969, -2.2988281, -0.7729492, -2.5253906, 0.08129883, -0.10498047, -1.0703125, 0.035186768, -1.1572266, -0.90722656, 1.890625, 1.6796875, 1.4658203, 1.6210938, -2.3027344, -0.117004395, 1.5810547, 3.8261719, -0.30004883, 1.328125, 0.3786621, 1.3378906, 0.5698242, 1.0791016, -0.49951172, -0.8911133, 0.4206543, 2.2734375, 0.14941406, -1.5068359, 1.0439453, 0.8808594, -0.97558594, 3.1152344, 3.1875, -1.7324219, 0.021942139, -0.46020508, -2.8027344, 1.6767578, 0.3334961, 0.3852539, -0.96435547, -3.5976562, -0.01651001, -0.13195801, -1.1777344, -2.0019531, -0.63720703, -1.3828125, -2.4355469, -0.4753418, 1.2509766, -0.80566406, 0.6699219, 0.18054199, -0.09051514, -0.7241211, 0.49291992, -0.7861328, 1.5908203, 0.32128906, -0.8388672, -0.051513672, -0.34887695, -2.1191406, -0.30151367, -0.3388672, 0.6748047, 0.90185547, 1.1728516, 0.24450684, -1.0771484, -0.7675781, -1.4541016, -0.375, -1.1201172, 0.6010742, -1.2353516, -1.6425781, 1.0615234, -0.90234375, 0.80615234, -0.31713867, -0.9589844, -1.5478516, -1.8046875, -0.3334961, -1.4316406, -1.3115234, 0.45092773, -0.17492676, 0.4189453, -1.0810547, -1.6738281, 0.53515625, 2.9296875, 0.6616211, -1.3867188, 0.9472656, 0.27001953, -0.020202637, -3.4335938, -0.03213501, -0.032989502, 1.5732422, -0.21508789, -1.3466797, 0.16796875, -0.72509766, -0.3540039, 0.45922852, 0.68847656, -0.24926758, -0.36669922, -0.29174805, 1.0488281, 1.5283203, 0.6777344, 0.8671875, -0.7495117, -0.88671875, -0.28637695, 2.3417969, 0.5419922, 0.7314453, 3.7226562, 0.7729492, -0.67578125, -0.6582031, 0.23461914, 1.7539062, 0.74658203, 0.90625, -0.796875, 0.24707031, 0.9272461, 0.46777344, -4.3242188, -1.1533203, 0.95166016, -0.7446289, 1.9785156, 3.1015625, 0.38793945, 0.21850586, -0.21789551, -0.013168335, -0.7128906, 0.7758789, -2.0859375, -0.8691406, 1.5839844, 2.3867188, 1.2333984, -0.10333252, 0.6933594, -1.6708984, 0.82177734, -2.6191406, 0.05657959, -1.859375, 1.1962891, 1.0029297, -0.40307617, -0.74121094, -0.30810547, -1.9335938, -0.08984375, 1.1123047, 0.09387207, -2.3320312, -1.0712891, -1.1201172, 1.2490234, -1.4101562, 0.23278809, 1.2675781, -0.75634766, 0.2133789, 1.8066406, 1.9169922, -3.1015625, 0.3203125, -0.0791626, -1.0791016, -0.671875, -1.9550781, 1.3837891, -0.76220703, -0.049804688, 1.5146484, -1.109375, -1.5283203, 0.06817627, -1.1669922, 0.23413086, 0.22644043, 1.0136719, 1.3535156, 1.0673828, 0.57958984, -1.4492188, -0.3869629, -0.3088379, 0.6074219, 2.7441406, -0.3557129, -0.640625, 0.28979492, 0.84521484, 0.51904297, 0.96728516, -0.9785156, -0.29296875, -0.07208252, 0.29663086, 0.27148438, -1.4814453, 2.7207031, 1.4814453, -0.7866211, -2.3027344, -2.6796875, 0.72021484, 1.0478516, -0.76171875, 1.4042969, 2.2988281, 0.7675781, 1.9003906, -0.88378906, -0.20056152, 0.9916992, -0.42822266, -1.1357422, 0.8886719, -0.52978516, 0.01576233, -1.5126953, -0.49975586, 0.17211914, -0.7324219, 1.1972656, -0.05480957, 0.8520508, -1.6835938, 0.42333984, -1.9492188, 2.3339844, 0.9741211, -2.734375, -0.29345703, -1.734375, 0.048614502, 1.1533203, 1.4003906, -1.0820312, 2.1582031, 1.3925781, 0.11804199, -0.93896484, 0.74902344, -0.63378906, 2.5351562, 1.4882812, 2.1523438, 0.46264648, -0.71435547, 2.2753906, 1.0195312, -2.3417969, 0.4091797, 0.23669434, -0.72998047, -0.94189453, 1.2099609, 1.6992188, 1.1621094, 1.6298828, -3.4550781, -1.0107422, -2.3300781, 2.3203125, -1.7001953, -0.29833984, 0.5395508, 1.8837891, 0.74121094, -0.9692383, 0.16015625, -0.46899414, -0.8120117, 0.049194336, 2.390625, -1.8681641, 1.3291016, 0.90185547, 1.4042969, -1.5830078, 1.0097656, -0.88916016, 0.22106934, 0.19177246, -0.6948242, -0.85546875, -0.8701172, -3.2910156, -0.9008789, -0.48632812, -0.36572266, 0.84228516, 0.7338867, -1.6669922, -0.3010254, 0.7392578, 1.0478516, -0.10870361, 0.9121094, -1.2626953, -0.5917969, 0.46948242, -1.2880859, 1.21875, 1.4492188, -1.25, 4.6445312, 1.2441406, 1.7001953, -1.3339844, -0.077819824, -0.5126953, -0.68359375, -1.0029297, -2.0039062, 1.9765625, 0.7685547, 0.75634766, -0.53759766, -0.32128906, 0.11804199, -0.5776367, 0.7163086, -1.0439453, -1.6318359, -1.0263672, 3.078125, -0.2861328, -1.2958984, 1.1689453, -1.5898438, -1.0712891, -0.5986328, 0.8300781, 1.9052734, 1.1044922, 2.0429688, 0.8227539, 2.5449219, -0.34985352, -4.203125, 0.5878906, -1.3457031, 0.014923096, -0.20983887, 0.0287323, 0.8588867, 0.7426758, 4.7578125, 0.33642578, 3.5546875, -0.63720703, -1.4238281, -0.10803223, 1.0488281, 0.4260254, -1.4775391, 0.41381836, 0.4182129, -0.026306152, -1.5839844, -0.54541016, -0.2722168, 0.2697754, 0.42333984, -0.30419922, -0.53515625, 1.5488281, -0.72998047, -0.2388916, -0.44140625, 1.5810547, 1.7929688, 2.3066406, 0.77441406, -0.4572754, 1.2675781, -0.7998047, -0.21777344, 0.55322266, -1.9404297, -0.20629883, -0.36108398, -1.5673828, -1.4462891, -1.2958984, -0.060791016, 0.47729492, -1.6689453, 0.090270996, -0.37646484, -1.5429688, 1.4257812, -0.6269531, 0.04324341, -0.37231445, 0.3864746, 0.3930664, -2.4511719, 1.9267578, -2.4140625, -0.9296875, 0.69189453, 0.40283203, 1.0556641, 0.19030762, 2.1191406, 1.5654297, 0.6196289, -0.09442139, 0.93652344, 1.3115234, 1.6181641, 0.55810547, -1.5263672, -0.8256836, 0.98095703, -1.4013672, -1.4189453, -0.2836914, 1.0605469, 1.8740234, 2.4785156, 0.07562256, -2.84375, -0.08294678, -0.31298828, 0.8256836, 1.2548828, -0.8979492, -1.6533203, -0.73535156, -0.6269531, -0.12536621, 0.40283203, 0.16748047, 1.2744141, -1.5722656, -1.2744141, -0.23962402, -1.0683594, 1.265625, 0.625, 0.97021484, -1.6269531, 1.8886719, -0.39526367, -0.6357422, 0.08129883, -0.22644043, 0.8017578, -0.55078125, -1.0927734, -0.18029785, -0.16064453, 0.1427002, -0.49047852, -0.20153809, 0.9169922, -0.111572266, 1.3574219, 1.5947266, -1.6435547, -2.0703125, -1.4130859, 0.3408203, 0.7832031, -0.97265625, 0.19946289, 0.3713379, 0.48095703, 0.35327148, 0.4777832, -1.640625, -1.8017578, -5.9140625, 0.017166138, 0.29223633, 1.0058594, 0.024917603, 1.1855469, -2.6796875, -0.03149414, 0.35742188, 0.85253906, 0.124938965, -3.5820312, 0.3388672, 0.5410156, -0.4008789, -1.2421875, 2.5136719, 0.16723633, 1.1494141, -0.44677734, 0.07672119, -1.4609375, 0.5419922, -0.7392578, -2.4296875, -0.6274414, -1.4130859, 1.3535156, -0.45385742, 0.032409668, -2.4980469, -0.09979248, 2.0449219, 0.5258789, 0.23864746, -0.19714355, 0.62109375, 1.2421875, 2.8671875, 1.9882812, -1.2324219, 0.9550781, 0.4128418, 1.4541016, -1.2646484, -1.5576172, 0.44873047, -0.09283447, -0.12243652, 0.6923828, -0.66845703, -0.020843506, 1.0732422, 1.2978516, -1.5068359, 0.26953125, -0.69970703, -0.68066406, 1.1630859, 0.4790039, -0.8256836, -0.2442627, 0.26782227, -0.71875, 0.421875, 0.04168701, -1.5097656, -2.1640625, -0.0826416, -1.2021484, 2.5429688, 1.4072266, -0.18273926, -0.74072266, -4.28125, 1.3095703, 1.1123047, 0.11425781, -2.1464844, -0.7314453, -3.3417969, 0.5683594, -0.8105469, 1.8017578, 0.9824219, 2.5253906, -0.8911133, 0.8564453, -1.8964844, -0.64697266, 0.8227539, -0.8696289, 0.8183594, -2.1953125, -2.1347656, -0.57421875, 2.2871094, 0.68652344, 0.24438477, 0.828125, 0.4267578, 2.9101562, -1.5947266, -1.7978516, -0.36376953, 0.4802246, -0.45654297, -1.2373047, -1.1533203, -0.22473145, 2.3261719, -0.88134766, 0.053527832, 1.0078125, 0.28857422, 0.2265625, 0.16125488, -2.6679688, -0.31811523, 2.203125, 1.0859375, 0.5205078, 1.0644531, -2.5683594, -2.2792969, -1.3398438, 1.2119141, 0.16516113, -1.2548828, -0.9711914, 1.4345703, 0.51708984, 0.6333008, -0.9086914, -0.921875, -0.19470215, 1.9541016, 0.7324219, -0.6591797, 0.032806396, 1.0800781, -0.22155762, 0.31860352, 1.2519531, -2.7226562, 0.30566406, 0.15698242, -0.7104492, -1.7421875, 0.30859375, 3.7734375, 2.9960938, -1.5244141, 3.5898438, 0.2277832, 0.07446289, -0.77490234, 1.015625, -1.6064453, 0.8183594, -1.7021484, -0.25927734, 0.1895752, -1.421875, -0.9580078, -0.9975586, 1.1425781, -0.35986328, -2.1621094, 0.43066406, 1.7597656, -0.98828125, 0.27172852, 0.7036133, -0.09246826, -3.0351562, -0.6274414, -0.093322754, 1.9443359, -2.9316406, -0.4597168, 0.017852783, -0.4189453, -1.0488281, 3.3515625, -2.4453125, 1.6894531, -0.5126953, -0.97558594, -1.4072266, -0.96875, 1.328125, 0.50683594, -0.34301758, -2.6796875, 0.9663086, -0.78808594, -0.89697266, -0.8378906, 0.77490234, 0.34350586, -1.1259766, 1.2060547, -0.8676758, 0.7050781, -1.5908203, 2.1367188, 0.62402344, 2.2578125, -1.3154297, 2.0605469, 0.79785156, -1.8613281, -1.6660156, 1.5488281, 1.2382812, -0.21362305, 0.47265625, -1.8886719, 0.8701172, 1.3007812, 0.13256836, 1.4101562, 1.8388672, -1.5390625, 0.8256836, 1.8554688, -2.8085938, 0.34985352, 3.3320312, 0.2578125, 2.5820312, -1.6132812, 1.1523438, 1.0244141, 0.3137207, -0.40942383, 0.020751953, -0.45947266, 0.43896484, 0.56591797, -0.6503906, -0.93310547, 0.20898438, 0.2319336, -1.0400391, -3.1152344, -1.3320312, -0.9658203, -1.2333984, 0.23266602, -0.2998047, -0.112854004, 0.0024757385, 0.41918945, 0.82128906, 0.3449707, 1.8388672, 0.49145508, 3.875, -0.9145508, -2.3027344, -0.8574219, -1.3447266, 0.22058105, 0.9970703, 0.070739746, -1.0712891, 0.41015625, 3.6289062, -2.9238281, -0.7050781, 1.2148438, 0.024993896, 1.3603516, 0.2956543, 1.0683594, -0.4814453, -0.3083496, 0.5410156, -0.8588867, 0.6899414, -1.4277344, 0.30297852, -0.6308594, -0.2788086, -0.18737793, -1.3496094, -1.4462891, -0.42626953, 1.8935547, -0.15673828, 1.3164062, -1.9394531, 0.5390625, -1.21875, -0.80029297, -1.5097656, -1.9453125, -1.0087891, 1.5244141, 0.59472656, 1.7597656, -3.4023438, -0.16760254, 0.010284424, -0.32641602, -0.08972168, -0.8334961, -0.86279297, -0.5253906, -0.98339844, 0.70214844, -0.84228516, 0.87158203, 0.19592285, 0.7392578, -0.43164062, -0.63916016, 1.0908203, 0.44067383, -3.5957031, -0.9189453, 1.6621094, 1.6113281, 1.5283203, 2.0078125, -0.34301758, 0.60839844, -1.7744141, 1.6220703, -0.6616211, 1.6113281, 2.4082031, 1.8427734, -1.0761719, 0.13244629, 0.011894226, 0.6064453, -0.8828125, 1.1298828, 0.3564453, -0.08721924, 1.34375, 1.125, 1.8964844, -0.38916016, -0.9555664, 0.005180359, -0.79345703, -0.36083984, 2.1191406, -2.109375, -0.9658203, 0.22485352, 1.2050781, 0.2536621, 1.5244141, 0.8911133, 0.079956055, 0.7368164, 0.52685547, 2.265625, 0.015464783, -1.2597656, -0.055145264, 1.4882812, 0.6699219, 2.2011719, -1.0791016, 1.5712891, 1.6845703, 1.2597656, -0.20080566, -1.2548828, -0.95947266, 2.546875, 1.7070312, -1.8203125, -0.46801758, 0.27294922, -3.1113281, 0.26367188, -2.2910156, 0.89404297, -1.0234375, 1.5068359, -1.2148438, -1.0605469, 0.42773438, -2.0625, -2.0371094, -0.8808594, 0.3984375, -1.1005859, -0.81591797, -0.8466797, -0.38427734, 0.2602539, -0.8989258, -0.90625, 0.5073242, -0.22802734, 0.56640625, 0.54248047, 1.1347656, -1.4853516, -0.6933594, 0.7158203, -1.0341797, 3.1484375, 0.2993164, -0.59277344, 0.8964844, 0.765625, 0.11608887, 0.74121094, -0.2109375, 0.53759766, 0.34570312, -0.32958984, -0.25268555, -0.5708008, 0.27929688, -0.44873047, 0.019119263, -1.4169922, 0.9614258, -0.34716797, -1.4033203, -0.67871094, -3.6640625, 0.45092773, 1.2675781, 1.0302734, -1.4482422, 1.0693359, -4.8632812, 3.5117188, -0.6899414, 1.2939453, -0.57714844, -2.2734375, -0.046417236, 1.9628906, -0.61376953, 2.1699219, -0.46069336, 0.018737793, 0.9785156, 0.41479492, 0.24645996, -6.3398438, -0.9770508, 0.14465332, 2.359375, 1.1943359, -0.6699219, 0.72802734, -2.984375, -1.4619141, 1.3007812, -0.056274414, 0.3466797, -0.5498047, -0.875, -0.024932861, -0.26000977, 1.8466797, 1.3720703, 2.1015625, -1.8818359, -1.0869141, -0.8544922, 1.0859375, -1.0791016, 0.39868164, -1.1035156, -0.9658203, 0.28710938, -0.14611816, 0.64697266, -7.453125, -1.3837891, 1.6767578, 0.34472656, 1.1757812, 1.3876953, -0.04724121, 1.2988281, 0.2578125, 1.1464844, 2.5019531, -0.70947266, 0.16662598, 0.98779297, 5.2265625, -1.7226562, -0.5410156, -2.609375, 1.3837891, 2.0800781, 2.3320312, 0.33935547, 0.8520508, -0.72216797, 0.16784668, -0.5605469, 0.14672852, -0.63623047, 0.12097168, -0.5673828, 1.4892578, 0.5336914, -0.15112305, 1.5146484, 0.2783203, -1.234375, -0.94970703, 0.22277832, 3.8632812, 1.1308594, -0.123168945, 0.34350586, -2.5332031, -2.7558594, -1.6933594, 0.24377441, 0.84228516, -1.6054688, -0.51123047, -2.2988281, -1.3876953, -0.14746094, 1.1796875, -0.55615234, 0.6870117, -0.15405273, -0.2915039, -1.4707031, -0.6113281, -0.26220703, -1.1279297, -0.45654297, 0.18554688, -1.3837891, 0.7861328, 0.25317383, 0.48632812, 0.022949219, 0.5732422, -1.2900391, 0.85302734, 0.6582031, -0.084472656, 1.2460938, 0.77734375, -0.5288086, 2.3632812, 0.4814453, 0.18029785, 0.07702637, 1.7275391, -0.42626953, -0.61083984, -1.4990234, -0.79248047, 1.4560547, 0.21105957, -0.58203125, 4.5273438, -0.57958984, 4.484375, -1.0458984, -0.41088867, 1.5107422, 0.29418945, -0.88623047, 0.88623047, -1.4853516, 0.41381836, 0.30639648, -1.6757812, 1.6015625, 0.7919922, 1.9619141, -0.56640625, 1.1650391, -1.0019531, 0.63378906, 0.7114258, -0.83251953, -1.46875, -3.7109375, -1.8701172, 2.0683594, -0.3413086, -0.5444336, 0.35424805, 1.7646484, -3.2207031, -2.3789062, 0.81640625, 1.1347656, -0.33935547, 1.1923828, -2.5488281, -3.4511719, -0.07836914, 2.2539062, 1.6455078, -2.5097656, 2.4570312, 0.023513794, -1.8554688, -1.1513672, -1.6503906, 2.5644531, 1.9980469, -0.088256836, 2.6210938, 0.083618164, 2.3710938, -0.034057617, 0.40795898, -3.2089844, -0.82666016, 0.69189453, 2.1035156, 3.2636719, 0.71435547, 1.5556641, -0.60839844, -1.7871094, 0.89404297, -4.1367188, -0.36816406, -1.1240234, 1.0283203, -0.011833191, 0.30297852, -0.0017538071, -1.5507812, -2.4804688, 0.4086914, -0.16088867, 0.39990234, 1.84375, 0.091796875, 2.859375, 1.6445312, -1.4609375, 1.7431641, 1.9150391, 0.37939453, -1.140625, -0.2861328, 1.1552734, -1.0205078, -0.3630371, -1.3740234, -0.4013672, -0.6176758, 0.09899902, -1.3427734, -1.1796875, -1.2851562, 0.35864258, 0.5283203, 0.20471191, -2.0117188, 1.2070312, 1.3505859, -1.0703125, -0.9057617, -0.50878906, 1.8242188, 0.6586914, 0.8364258, -0.51904297, 1.5341797, -0.23034668, -0.60498047, 0.36499023, -1.5234375, 0.2006836, -4.734375, 1.9394531, 0.54052734, -0.68359375, -0.13208008, 0.4194336, 0.9301758, -0.3100586, 1.15625, -0.70458984, -1.3339844, 1.3115234, -0.5703125, -0.5473633, -1.9814453, -0.73779297, -1.5019531, 1.9833984, 0.40551758, -0.17382812, 1.2353516, 0.93896484, -0.04638672, 1.3740234, 0.2956543, -1.09375, 0.6464844, 1.4521484, 0.032409668, 0.76123047, -1.7167969, 0.62109375, -0.33764648, 1.7451172, 0.01247406, -0.1616211, -1.7988281, -0.65283203, 1.5683594, -0.85302734, -1.0507812, -1.4775391, 1.1015625, -0.51708984, 0.703125, -1.0683594, -0.4572754, -1.1396484, 1.0605469, -0.4091797, 1.9707031, -1.4511719, 0.07885742, -2.7460938, 0.7636719, -1.6923828, 0.8544922, -0.7050781, 0.2775879, 0.88427734, -1.5703125, -0.43945312, -0.9824219, 2.4296875, 2.2304688, 2.4980469, -1.0761719, 0.89746094, -0.29101562, 0.50097656, -1.1376953, -0.28295898, 0.4880371, 1.8613281, -0.40185547, -3.5429688, 1.5068359, -0.8823242, 0.05596924, -2.390625, 1.6757812, 0.6538086, 0.51464844, -1.4824219, 0.60839844, 1.0517578, 0.2932129, -0.30419922, -0.7861328, -1.0810547, 1.0556641, 0.19055176, -1.7226562, -2.2421875, -2.8183594, -2.3515625, 1.3613281, -0.035247803, 0.875, 0.2421875, 1.0380859, -0.57714844, -0.57910156, -0.6298828, 0.5078125, 0.15039062, -0.94433594, -1.4111328, 1.7353516, -0.7109375, 0.47094727, -1.0283203, -0.3203125, 1.3095703, -0.5932617, 2.9980469, 2.8632812, 0.47607422, 1.3115234, -0.26757812, 0.4765625, 3.5742188, 2.3574219, -1.9755859, 0.46166992, -2.6816406, 1.0810547, 1.6435547, -0.3400879, -1.3271484, -1.3867188, 0.2298584, -0.27416992, 1.84375, -1.2255859, 0.48876953, -0.39672852, -0.85498047, 2.2089844, -1.7939453, 1.0332031, 1.4667969, 0.22912598, -0.7421875, 2.1933594, -0.96875, 0.81347656, 3.1640625, -0.9008789, 1.0380859, 2.1484375, 2.5351562, 0.7998047, 1.7158203, 0.24975586, 2.4453125, -3.9199219, -0.5253906, -1.7900391, 1.1953125, -2.4648438, 3.3339844, -0.60253906, 1.4873047, 0.15808105, 1.0771484, 0.22351074, -0.7446289, 3.1933594, -0.058563232, 2.2246094, -1.859375, 2.8066406, -0.37817383, -2.0800781, 1.1074219, -1.2792969, -1.4794922, 0.9082031, -1.4257812, 0.74121094, 0.82958984, 1.9042969, -0.5966797, 3.2128906, -0.14550781, 0.7519531, -0.33569336, 1.6015625, 2.0390625, 0.4638672, 2.5195312, 0.8364258, -0.11010742, -1.5039062, 0.16662598, -3.2265625, -0.0026874542, 0.28125, 2.3457031, -0.8535156, 0.18408203, 0.5019531, -1.0058594, -1.6992188, -0.98779297, -1.7988281, -0.86865234, -0.4013672, 0.31298828, 0.10760498, 2.2207031, 1.7705078, -3.2539062, -2.03125, 0.8745117, 0.6176758, 4.1757812, 0.25048828, 1.3427734, -0.98046875, 1.1630859, -0.23596191, 0.39990234, 2.4160156, 3.0683594, 0.082214355, -0.5107422, 1.3369141, 1.3623047, -0.34155273, 0.8564453, 1.1113281, -1.2128906, 0.8203125, -0.27270508, -0.94091797, 0.41259766, 1.4658203, -0.6245117, -0.671875, 4.0507812, -0.4946289, 0.94677734, 0.76708984, -2.5332031, -0.3930664, -1.6367188, -1.1289062, -0.3696289, -0.9111328, 1.1953125, 0.42407227, 0.81103516, 0.5996094, 2.7734375, 0.33618164, -1.0332031, -1.1171875, 0.31811523, 0.9501953, 0.45776367, 0.60546875, -0.76123047, 1.1513672, -1.0507812, -0.16040039, 0.056243896, 1.1757812, -0.21264648, -1.7021484, -1.3496094, 0.68603516, -0.38378906, -0.24047852, 1.1962891, -0.55126953, 1.7675781, -0.045135498, 0.7260742, 2.0703125, 0.5908203, -0.6254883, -1.0009766, 1.0966797, 1.7333984, 2.6582031, 2.0351562, -0.56347656, 3.5527344, -1.6669922, -0.39111328, -7.09375, -0.28295898, -0.31054688, 1.3925781, 0.90625, -1.0263672, -1.2890625, 2.5449219, -2.1542969, -0.74658203, -1.1484375, 1.3447266, 0.28564453, -1.3730469, 1.4384766, -0.89697266, -1.3730469, 0.7963867, 0.13879395, -0.4921875, 1.1425781, -0.7675781, -3.0996094, -0.21105957, 0.63623047, 1.9013672, 3.2128906, 1.4707031, 0.66308594, -0.5600586, -1.2314453, 0.0072288513, -0.13513184, -1.8847656, -0.40283203, 0.24853516, 0.5102539, 1.8427734, 2.46875, 2.6699219, 2.3613281, -0.1763916, -1.6455078, -2.1035156, -0.16540527, 0.06585693, -1.6376953, -0.328125, -0.25390625, 0.40795898, 0.70166016, -0.50341797, 0.39013672, 1.1708984, -2.0917969, -1.4287109, 1.7978516, 1.4433594, -0.8310547, 0.7661133, 0.6933594, 1.3769531, 0.93603516, 4.3046875, -3.5996094, -0.19592285, 1.4072266, 0.46923828, 0.8120117, 2.078125, 1.0351562, 0.3125, -0.8730469, -0.4411621, 0.84228516, 0.4699707, 2.8925781, 1.0039062, -1.0390625, 1.0458984, 1.1767578, -1.0458984, -1.1152344, 0.39575195, 0.027374268, -0.6748047, -0.08154297, 0.2878418, -3.5019531, -0.77197266, 3.2246094, -0.9970703, 0.059265137, 1.3896484, 1.2001953, -0.1352539, -0.029403687, 0.017028809, 0.081604004, -3.5, -1.9765625, 1.1367188, 0.9316406, -0.82666016, -0.8364258, -1.4189453, -1.4345703, 0.96191406, 0.34692383, 1.2724609, 0.5390625, -1.0820312, -1.4013672, 1.3339844, -1.0253906, 0.43139648, -0.5522461, 0.4724121, -0.5961914, -1.4277344, 0.20483398, 0.4584961, 0.5205078, -0.44140625, -0.6850586, -1.8427734, 1.0175781, 0.14013672, -0.5722656, -1.8515625, 1.4951172, 0.58740234, -0.6298828, -2.2402344, 0.67041016, -0.35473633, -0.6660156, -0.94677734, -1.1376953, 0.21032715, 0.4399414, 0.18408203, -1.3447266, 0.35107422, 0.58984375, -0.93896484, 0.55566406, 0.060913086, 3.2363281, 2.0488281, 0.44335938, 1.1171875, -0.9814453, -1.8554688, 1.3603516, -1.8964844, -0.029586792, 0.46923828, 0.8769531, 0.43237305, -0.12854004, -0.68896484, 0.42529297, -0.32763672, -1.2597656, 0.26220703, -0.41625977, -3.2480469, 1.6894531, -0.024810791, -1.8007812, -0.5991211, 0.21643066, 4.4453125, -1.2851562, 3.8105469, 0.44555664, 1.4716797, -1.2734375, -1.6552734, 1.2880859, 2.4960938, -0.20898438, -0.015960693, -0.38598633, -1.8173828, 0.15368652, -0.8769531, -0.72802734, -0.06677246, 0.022155762, 1.5292969, 1.0869141, 1.5439453, 1.7402344, -0.5498047, 0.81640625, 1.6279297, 1.1162109, 2.0136719, 1.0478516, -1.2392578, 0.39404297, -0.7602539, 0.9638672, 1.4667969, -0.4008789, 1.2832031, -1.0605469, -2.296875, 2.4648438, -0.072509766, -0.9121094, -1.7597656, -0.9223633, 1.2773438, -0.22570801, 2.203125, 0.30786133, -0.8774414, 0.20458984, 1.3886719, -1.234375, 0.31958008, 1.0839844, 0.16687012, 0.26660156, 3.2910156, 0.21044922, -0.54541016, -0.101623535, -1.4833984, 1.4443359, -1.2958984, -0.08477783, -1.8955078, 0.13427734, -1.2978516, 3.8886719, -0.43798828, 1.4130859, 1.3320312, 0.3474121, 3.0996094, -1.2890625, 0.09649658, -0.56640625, 0.10272217, -0.8769531, -0.25048828, 0.88134766, 0.10620117, -0.12768555, -0.20349121, 0.53515625, 1.8076172, 0.45581055, -0.2479248, 0.03378296, 2.0878906, 1.9599609, -1.1972656, -2.4257812, 0.3190918, -3.7792969, 0.68896484, 1.1953125, 1.0664062, 0.6933594, -0.5957031, -0.97998047, 0.42089844, -0.64746094, 1.5957031, 1.0009766, 0.3022461, -1.3320312, -0.3791504, -2.0878906, -2.0859375, -0.7475586, -1.4550781, 0.5698242, 1.7978516, -4.4882812, 1.5439453, -0.81689453, -1.2373047, 0.7558594, 0.5776367, -2.4414062, -0.7919922, -0.4477539, 0.4963379, -0.6826172, -0.07098389, 0.2998047, 0.2758789, 0.9267578, -0.24816895, 1.4443359, 2.2109375, 1.2480469, 1.1289062, -1.5068359, 0.37231445, -1.5683594, 0.16015625, 1.0371094, 0.61083984, -1.4931641, -1.1699219, -1.1650391, -1.6923828, 1.9404297, -0.8803711, 1.2373047, -0.19445801, 0.05987549, 0.52783203, -0.85546875, 5.6523438, -1.7041016, -1.5097656, 1.1162109, -0.09448242, 0.7084961, -0.2824707, 0.046844482, -1.0410156, -0.8144531, -0.98779297, -1.4511719, -3.1113281, -1.1181641, -0.14013672, 3.1660156, -0.0132369995, -0.9301758, -0.33032227, -0.55908203, 0.6044922, 0.5097656, 0.52978516, 0.9453125, -0.61621094, 0.44848633, -1.5166016, 1.2880859
 
1
+ id,username,password,email,account_type,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767
2
+ 6fc35140-acc7-11ed-8b05-8a2dec87980d,testemp1,$2b$12$lspTQmUoFI08JWVzMnyTku/V8MPjR6GpUm5RWEA60KVNzJtORWDLu,testemp1@gmail.com,employer,1.2880859,0.27539062,2.9199219,-2.6210938,1.9296875,-2.2304688,-2.0097656,0.7973633,-0.5161133,-1.3408203,0.38500977,0.58496094,-0.24072266,-1.6953125,-0.9633789,0.06072998,-0.43554688,-0.27441406,-0.111328125,0.8203125,0.5107422,-0.49316406,-0.26171875,-0.61083984,-0.113098145,3.953125,1.6533203,-1.6933594,0.72753906,0.42333984,-0.28344727,-0.45166016,-0.15625,0.8183594,0.001377106,-1.4345703,-2.703125,1.1542969,2.5429688,0.62158203,-1.4423828,2.3417969,1.5664062,-0.07299805,1.7871094,-0.1328125,1.2373047,1.25,-1.2490234,-1.7353516,0.28930664,0.80029297,-2.2265625,2.3359375,1.5351562,-0.2244873,-1.5947266,-0.24438477,0.13549805,1.6542969,-0.5439453,0.46118164,0.9477539,-1.3261719,-1.0175781,0.4189453,0.76953125,-0.32250977,-0.46923828,-1.25,3.8203125,2.03125,1.5644531,0.19262695,0.19946289,0.52001953,2.5703125,-1.3613281,0.9609375,1.7324219,-1.5214844,0.49047852,0.23083496,-0.13769531,1.7939453,-0.9785156,0.3959961,0.109436035,-1.6318359,2.2167969,1.8798828,-0.103881836,-2.078125,0.026855469,-0.6352539,-0.09069824,-1.7324219,1.0244141,-0.2154541,-3.2890625,1.0009766,-0.1574707,1.125,0.20922852,0.20507812,1.6767578,1.7900391,1.3984375,1.0087891,1.3398438,-1.3232422,-1.1416016,1.3007812,-1.2607422,-0.49267578,0.5917969,-0.58251953,-0.032440186,-0.6621094,0.23535156,-1.3017578,-0.56640625,0.23486328,2.2480469,-1.2089844,0.8725586,-0.6538086,-1.7519531,-1.0117188,-1.7949219,1.2480469,-0.42236328,1.78125,-1.7431641,2.40625,0.09814453,0.6479492,-1.6171875,-0.56640625,0.64453125,2.2265625,-0.22473145,-0.31689453,1.9013672,-0.58691406,-0.72509766,-0.28320312,-0.5629883,-1.3037109,-1.484375,-2.0917969,-1.6015625,0.27197266,0.63916016,-1.9238281,-0.8286133,0.7553711,-1.0302734,-0.84277344,1.2792969,0.8310547,-0.5678711,1.5214844,1.171875,0.54541016,-0.48876953,0.8388672,1.6796875,2.7871094,-0.31396484,-1.6728516,-0.39282227,-0.14111328,1.3789062,0.7421875,1.8349609,-0.70458984,0.82714844,0.6508789,-0.53808594,0.22058105,0.5419922,0.3334961,0.56152344,-1.109375,-0.47875977,-0.6816406,0.8383789,0.6933594,-0.08325195,1.3310547,0.80371094,-1.2021484,0.5449219,-1.6269531,1.5996094,1.5537109,1.9667969,3.4980469,-1.0488281,0.89453125,0.48095703,-0.11340332,1.4453125,-0.2980957,1.7617188,-0.9213867,0.18115234,-2.0859375,0.93066406,-0.9399414,-1.5878906,1.3466797,-0.047851562,1.4482422,1.9404297,-0.63623047,1.1064453,-0.22827148,-0.82128906,-0.9091797,-1.0771484,1.6054688,-1.9726562,-0.82128906,0.06262207,-0.11981201,-0.5517578,-0.064208984,0.095458984,0.79541016,0.23217773,-0.68310547,2.0136719,3.359375,0.85009766,-0.5317383,0.5913086,0.049591064,-1.3574219,0.8696289,-0.85058594,-0.3317871,0.5878906,0.58740234,0.1862793,3,-1.9394531,0.7089844,1.328125,3.4902344,-0.81689453,0.78808594,1.2490234,-1.3046875,0.31689453,-1.9238281,-2.9042969,-0.1104126,0.546875,0.98779297,0.34350586,0.15649414,-0.48168945,0.38208008,0.8383789,-0.2746582,-1.9111328,-0.13293457,0.3227539,-2.2695312,0.6201172,6.3398438,1.2060547,0.8022461,0.5605469,-1.1259766,0.36938477,-2.109375,0.16235352,0.32739258,1.7314453,0.07775879,-0.8144531,1.4648438,-1.3066406,0.18078613,0.99902344,3.1992188,-1.3105469,-2.0410156,-0.55566406,-3.0546875,-1.9316406,-2.0585938,-0.6669922,-0.88671875,0.049713135,1.5576172,0.9770508,-1.3701172,-1.7949219,-2.5117188,-0.17163086,-0.8857422,-1.6230469,-1.5605469,0.25195312,0.79345703,1.2519531,-2.9335938,-1.1376953,0.73828125,2.3984375,-0.7260742,0.01876831,-0.058532715,-1.1064453,-0.26367188,-1.0380859,0.4416504,-1.2900391,-1.0869141,-0.17175293,-0.38208008,-0.5180664,-0.21130371,1.8964844,1.2109375,0.7973633,3.0976562,-0.3400879,-0.609375,0.34814453,-1.8789062,-0.14746094,1.3564453,2.6132812,-0.5493164,-1.359375,-0.8046875,0.51464844,-0.61572266,-1.65625,-1.4824219,0.8989258,0.18334961,1.8955078,2.0019531,0.46264648,-0.7363281,-0.75097656,0.84716797,-2.1875,-0.34204102,-1.9433594,3.0195312,-1.9453125,-3.4355469,1.4541016,0.19726562,-0.44482422,-1.9169922,-0.81152344,1.6845703,-1.0410156,-0.58984375,-0.43554688,1.3486328,-1.9707031,0.32910156,2.0683594,-1.6601562,0.42651367,0.07537842,0.16552734,1.3564453,0.2685547,0.11553955,-1.2880859,0.67871094,-0.7841797,-0.39672852,-1.2617188,-2.84375,0.8305664,0.875,-0.1973877,1.7744141,1.0869141,0.32641602,-3.3554688,0.5522461,0.4086914,-0.46704102,-0.41674805,0.34545898,1.0048828,1.4628906,0.27075195,1.7285156,0.3713379,-0.86279297,0.9199219,-2.0058594,-0.8725586,0.5048828,0.71191406,0.23693848,1.2675781,-0.57666016,-1.0625,0.08728027,-0.84472656,-0.39013672,-0.38378906,-0.62597656,-1.2841797,-0.77978516,-0.5751953,0.5307617,0.46166992,-1.2675781,0.96875,0.8955078,1.28125,-0.46557617,-1.4130859,-1.9765625,0.018127441,0.5288086,-1.3759766,-2.7597656,2.0253906,-1.1728516,-1.578125,2.46875,0.21252441,-0.16540527,-0.86865234,-0.08544922,0.017211914,0.020568848,-0.4724121,1.3720703,-1.3125,1.0878906,1.1972656,-0.62841797,0.72216797,0.6074219,0.5205078,-0.07409668,-0.6611328,-0.41088867,-0.46826172,-1.3164062,-0.08251953,1.578125,-0.9135742,1.3945312,0.73779297,-0.02532959,-1.9335938,-0.08270264,-1.7070312,1.0595703,0.44213867,0.9277344,-0.9926758,0.18115234,0.76220703,-0.42529297,0.7338867,-0.81933594,-0.88916016,-1.9921875,0.10559082,0.18395996,2.1015625,-2.0253906,-1.2646484,1.7519531,1.5507812,0.49121094,1.6679688,0.59277344,-0.78564453,-0.6269531,0.8066406,-0.80078125,-1.7148438,-2.3125,0.09814453,2.1308594,0.07635498,-0.7573242,0.03842163,-0.3461914,0.9213867,-0.51171875,0.20263672,-2.2695312,0.11114502,-0.65722656,-1.9550781,1.3271484,3.203125,0.5415039,1.0517578,0.2590332,1.7128906,3.0429688,0.40795898,-0.89501953,-0.28027344,0.3100586,0.18103027,0.3852539,-2.015625,0.69921875,-1.5351562,-0.45043945,-1.1435547,-2.4589844,-0.096069336,-0.045715332,-1.3154297,0.53125,0.20666504,1.2548828,2.0742188,-1.6005859,-1.5488281,0.25,1.8603516,-0.07891846,0.85546875,1.9902344,-0.5410156,-1.6269531,1.1904297,1.6855469,-3.2871094,-1.6572266,0.51953125,1.7490234,1.8066406,0.48657227,-1.4521484,-0.18774414,0.17871094,-1.6367188,1.5126953,2.9785156,-0.4189453,0.25732422,0.84521484,-0.060424805,-0.2548828,-0.60302734,-0.9160156,-0.7548828,-0.5473633,0.39624023,-1.1298828,0.9350586,-0.45166016,-0.76953125,-0.6010742,0.46142578,0.09124756,1.9355469,-1.7734375,1.7646484,-1.4072266,0.16125488,-0.7963867,-0.008743286,0.2626953,0.6303711,1.8544922,-2.2011719,-1.0869141,0.064453125,-1.1777344,-1.1367188,-0.37695312,-0.9189453,-2.1015625,-2.5078125,0.8911133,-0.72021484,1.0224609,1.7402344,0.13647461,0.4987793,0.6899414,-0.9658203,0.4309082,0.6669922,1.5927734,0.75097656,-3.6464844,0.54052734,-1.0097656,1.5292969,0.15270996,1.8964844,0.71728516,0.036499023,-1.1181641,1.5146484,1.3291016,0.9091797,-1.1132812,-1.3222656,-2.1542969,0.59228516,-0.8935547,1.859375,-1.2294922,-0.38867188,1.3613281,0.24304199,-0.63427734,-3.2011719,-1.9111328,-2.1757812,0.6611328,0.3400879,-0.20495605,0.55908203,-1.859375,1.4658203,0.52001953,0.37329102,0.77783203,-1.8671875,-0.32250977,-0.06896973,-0.046661377,0.42260742,-1.2568359,-2.4296875,0.08026123,-0.7133789,-0.34985352,1.4824219,-0.92529297,0.5175781,1.9101562,0.0546875,-0.13098145,0.14782715,-1.5097656,0.2866211,1.2441406,-0.16320801,0.65625,-0.25585938,0.43652344,-1.3789062,-0.44970703,1.0664062,1.3798828,-1.09375,-0.025177002,3.1191406,1.6123047,2.3847656,2.2929688,-0.83251953,-0.13244629,-0.83935547,-0.5625,-0.042297363,-0.05328369,-0.83691406,0.124572754,1.5488281,0.39575195,0.22338867,0.12939453,2.9433594,0.18798828,0.2536621,-0.9609375,0.3305664,1.1679688,-2.2304688,-1.6464844,-0.6503906,0.57421875,0.65771484,0.4724121,-2.5,-0.4111328,0.45581055,-0.4934082,-1.2822266,0.42504883,-0.010398865,-0.75634766,0.98046875,0.14538574,0.3955078,-0.6044922,-2.5820312,1.5175781,1.2792969,1.3320312,-0.40014648,-0.14855957,2.9179688,0.7446289,1.1728516,-1.0234375,0.69628906,-1.7285156,-0.96777344,1.5292969,1.9150391,-1.8125,-1.390625,4.1484375,0.017654419,0.13696289,0.44360352,2.5234375,0.020980835,-1.7685547,1.9609375,0.9550781,-0.7128906,0.42138672,0.98291016,-1.2773438,-3.1796875,-1.46875,-0.9267578,-0.7993164,0.68408203,-1.6533203,-1.5761719,-0.63134766,-3.7089844,-0.11468506,-1.0224609,-0.08898926,0.41918945,2.1621094,0.00756073,-1.3291016,-0.7363281,-2.0078125,0.85498047,0.5546875,-0.61621094,1.2626953,-1.34375,-0.02796936,2.8632812,0.5019531,-0.20629883,-0.7753906,0.034454346,-1.9824219
static/res_embeddings.csv CHANGED
@@ -1,3 +1,2 @@
1
- id,username,password,email,account_type,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095
2
- 641f876e-acc7-11ed-8b05-8a2dec87980d,test1,$2b$12$ziIVglNbgdsKmNMeLuNCY.6D5CwJMKS9n7eiUXNtSE4w35CmO9UeC,test1@gmail.com,candidate,0.9682617,0.9609375,0.7294922,-2.0058594,-0.12298584,-0.7705078,-1.1816406,0.50439453,1.3583984,-0.21020508,1.4619141,-1.1542969,-1.4482422,-0.71533203,-1.4423828,0.08679199,1.1484375,-0.30981445,0.3310547,0.4855957,1.1083984,0.49121094,-0.38989258,0.0058288574,0.32788086,3.859375,1.5410156,-2.0742188,0.19763184,1.7324219,0.49267578,1.53125,0.51220703,-0.015586853,-0.9316406,-1.15625,0.94384766,-0.6015625,-1.0126953,-0.47485352,-2.1933594,0.3852539,0.18762207,1.1689453,-1.0566406,0.9355469,-1.6308594,-0.7080078,1.8203125,0.60839844,0.91064453,0.034332275,-1.5517578,1.3427734,-0.10437012,-0.5234375,-1.9541016,-0.28930664,0.44702148,0.40527344,-0.85595703,1.8486328,-0.4958496,0.21777344,-1.1582031,-0.12792969,0.1583252,0.4428711,-1.5380859,0.04006958,1.3720703,0.9506836,0.4260254,-0.42578125,1.4541016,0.8198242,-1.3818359,-1.5048828,0.67529297,0.05130005,0.58496094,0.92285156,-1.4091797,-0.31201172,-0.19006348,-0.9272461,-2.0703125,-0.7714844,0.020629883,-0.74902344,0.76953125,-2.1855469,0.55078125,-0.4741211,-1.0634766,0.51660156,1.8027344,-1.3691406,-0.25976562,-2.0800781,0.8989258,-1.3193359,0.9345703,0.22192383,0.7680664,0.35986328,1.5126953,-1.1123047,-2.1484375,-0.43481445,0.15075684,-0.22314453,2.7011719,-0.4638672,0.22375488,2.8398438,0.31958008,-1.0498047,-0.64501953,-1.4697266,0.9057617,0.47851562,0.45825195,-0.044525146,-0.09863281,-0.8208008,0.2854004,-2.03125,-0.7167969,0.77685547,-0.8461914,-0.34716797,3.0898438,0.953125,4.0859375,0.56396484,-1.4267578,0.18444824,1.3720703,0.22998047,0.002439499,1.1826172,-0.39453125,2.8613281,1.1025391,-1.1201172,0.8041992,-0.64453125,-1.1367188,-0.8955078,-2.2910156,-1.9912109,-1.3486328,0.49658203,-1.6757812,0.98876953,0.84765625,0.5283203,0.29467773,0.77978516,-0.53125,-0.5991211,2.4003906,0.7451172,0.75390625,1.0185547,1.9931641,0.32836914,-0.4152832,-2.7558594,1.3349609,-1.0410156,0.7133789,1.0878906,0.4025879,-1.0283203,-0.64453125,-3.3496094,0.38061523,-1.6865234,-0.13000488,-1.3046875,2.6152344,0.26000977,-0.8222656,-0.71484375,0.81103516,1.0927734,-2.0058594,1.1396484,0.8129883,-1.421875,-0.53466797,-0.7788086,-0.5961914,-0.24536133,1.6044922,0.55908203,4.0664062,-0.19848633,1.3046875,-0.23669434,-1.4833984,-1.8994141,0.9057617,1.0849609,-0.3112793,-0.92578125,-0.2685547,1.6689453,-1.3339844,-2.0,0.47387695,0.011543274,0.8129883,1.7851562,-0.62597656,0.6767578,1.7607422,-0.1105957,0.5830078,-2.6972656,-0.47924805,-2.2089844,-1.7148438,-1.5615234,-2.125,0.091796875,0.7993164,-0.1496582,-0.4584961,-1.4326172,1.0097656,2.5898438,1.1689453,-0.63671875,-0.69677734,2.3652344,0.2355957,0.04776001,0.5517578,0.95458984,-1.4453125,-0.7705078,-0.6425781,-0.8105469,0.85302734,-0.5620117,-0.91503906,-0.90234375,1.7978516,0.9506836,-0.25976562,-1.1328125,-1.9951172,-0.7734375,-0.5834961,-0.22253418,0.26489258,-0.79541016,-1.7089844,-1.5292969,1.2998047,0.0927124,0.48632812,0.50146484,-1.8876953,-0.42822266,0.42651367,0.8144531,0.9038086,0.56396484,6.75,0.6220703,0.7939453,0.11853027,1.9326172,-0.5786133,-1.8408203,0.02192688,0.5444336,-1.7832031,0.34228516,0.8359375,1.9648438,-0.26123047,-2.0253906,-0.296875,1.2431641,-0.6982422,-2.1347656,-0.67822266,-0.40649414,-1.9326172,-0.2668457,0.57177734,-0.9379883,0.2841797,-1.4775391,-0.24157715,-1.0292969,0.48364258,-0.12451172,-0.98339844,0.121032715,1.2832031,-0.5683594,-1.7753906,-0.6166992,0.39990234,-1.71875,-1.6435547,-0.7397461,1.2861328,0.5024414,-1.3955078,-0.1541748,-1.7392578,-1.2441406,-3.2617188,-0.15698242,-1.734375,-0.9267578,-0.09893799,-0.6767578,-1.6533203,1.3076172,-2.3730469,1.9287109,0.9609375,0.25512695,1.7353516,-1.4121094,0.92089844,0.30273438,0.60839844,1.1171875,0.3227539,-1.4785156,-2.4042969,-0.4873047,1.3925781,-3.34375,-0.24243164,-1.0273438,0.5546875,-0.74902344,1.3916016,1.6738281,-0.51416016,1.3701172,-1.2246094,2.1152344,-1.1757812,1.7431641,1.9726562,2.4355469,0.4025879,-2.6386719,2.5019531,-0.3581543,-0.45117188,-4.0429688,-0.4165039,0.69091797,-0.9321289,0.15808105,-2.2910156,1.0244141,0.33154297,-1.0126953,2.328125,-0.23034668,0.107910156,0.6713867,-0.14404297,0.17163086,-1.5351562,-0.6225586,-2.4257812,1.9492188,0.34155273,-0.068115234,0.94091797,-1.9912109,0.50439453,-0.17114258,-0.12658691,-0.8339844,-0.6767578,1.1279297,-0.57128906,3.0136719,1.6484375,-0.66308594,-1.3720703,1.5595703,1.2666016,0.13024902,0.18237305,0.57714844,0.35766602,-1.2490234,1.3564453,-0.52001953,1.0117188,-1.6005859,-0.8173828,-0.97802734,-2.4707031,0.93603516,-1.8339844,1.0703125,0.8623047,0.0725708,-0.23132324,-1.0908203,-1.6308594,-1.8134766,1.0810547,1.3554688,2.0859375,0.13549805,0.41235352,0.2130127,-0.58496094,0.7597656,-0.27612305,-2.0644531,1.3984375,-1.5107422,0.33129883,1.0097656,1.5253906,-1.0429688,-2.7460938,1.3486328,1.1884766,-0.11981201,-0.54785156,0.4729004,-0.6713867,0.93847656,1.4541016,0.20739746,3.984375,1.6875,1.0683594,-0.734375,1.6337891,-0.6123047,0.7817383,0.82470703,0.34326172,0.26098633,-1.0693359,0.16357422,-0.32006836,-0.57958984,-0.48657227,0.6303711,-0.83251953,0.36621094,-0.36987305,0.0021362305,0.57958984,1.8554688,0.1619873,0.62158203,-1.4472656,-0.44726562,1.2744141,-0.36035156,-0.6586914,-0.6689453,1.2958984,-1.984375,0.88134766,0.55566406,5.6445312,-0.6767578,-0.05923462,-1.7529297,1.0556641,-0.67285156,1.8017578,0.32006836,1.0009766,0.50341797,-0.58984375,-1.7675781,-1.3544922,-0.92089844,-0.7949219,1.2421875,-1.2861328,0.15979004,-0.6958008,1.5664062,1.1591797,0.119262695,-0.07537842,0.5878906,-0.8198242,-0.20166016,-1.5361328,1.0517578,-0.6948242,0.3293457,-0.06878662,-1.2197266,1.7070312,0.74316406,1.2119141,-1.9345703,0.68115234,-1.2529297,-0.7636719,1.1337891,-2.2246094,0.07720947,-2.1953125,-0.1829834,-1.7861328,-0.43481445,3.7792969,-1.5703125,0.12182617,1.1953125,1.6074219,6.28125,0.073913574,0.39746094,-1.4892578,-0.7163086,1.8027344,-0.22216797,-0.7158203,2.1328125,-1.0419922,1.2451172,0.08856201,0.10308838,-2.1894531,0.21972656,1.7636719,0.96972656,-0.000500679,-1.1357422,0.8491211,-0.53125,-0.17456055,0.5620117,0.13500977,1.7265625,0.72265625,1.7587891,1.1074219,0.40307617,-0.05633545,-2.2421875,-0.81396484,-1.4345703,1.4160156,1.0585938,0.5449219,2.7265625,-1.3310547,0.103393555,0.28076172,-0.6376953,-0.6479492,0.8886719,0.6982422,-1.1279297,-0.6069336,1.484375,0.24511719,-1.8173828,-0.32641602,-0.2626953,-0.39379883,-0.47338867,0.5991211,1.8681641,-0.1484375,-1.9970703,-1.5908203,0.19824219,-0.49780273,-1.7470703,2.7148438,-0.15893555,0.68066406,1.6308594,-0.008102417,-0.090026855,1.1181641,-2.0253906,0.10168457,0.024642944,0.5522461,-0.4975586,-1.6289062,0.453125,0.22436523,-1.0732422,-1.546875,2.2753906,2.3398438,-0.29785156,0.01373291,1.6240234,0.609375,-0.20959473,-1.4599609,0.9140625,0.57128906,-0.27001953,0.7373047,2.7773438,0.71728516,-1.6875,0.59033203,0.8857422,-2.0136719,-3.7851562,-0.25390625,-0.10479736,0.6074219,2.7734375,2.0566406,3.7792969,-0.42114258,1.4677734,0.4074707,-0.99560547,0.46557617,-1.4697266,-0.13122559,0.29125977,0.068481445,-0.25634766,2.34375,-0.20617676,-0.5917969,-0.7294922,-2.7363281,1.8251953,1.3085938,0.6376953,1.6992188,2.1699219,-0.08062744,0.6777344,-2.1796875,1.2050781,0.023895264,-2.4296875,0.37426758,-1.109375,0.20178223,-1.3486328,-1.2851562,0.65478516,-0.63720703,1.0849609,-2.6484375,-0.69970703,1.6259766,-0.13952637,1.0966797,-2.3320312,0.07470703,0.24829102,-0.36743164,0.9165039,-0.96972656,-0.01424408,-0.40356445,-0.33447266,-0.9916992,0.3388672,0.38110352,0.6699219,-0.56103516,0.2788086,-0.58447266,0.4946289,5.171875,2.3007812,-2.6621094,-1.0029297,0.93310547,1.4394531,-1.3154297,-0.17053223,0.23352051,-0.19238281,-0.5571289,-0.20300293,0.4855957,1.5966797,1.75,-1.6494141,1.1992188,-0.4958496,-2.40625,-1.828125,0.671875,-0.59814453,1.2646484,0.023422241,1.0,2.3789062,-2.1660156,1.0390625,0.79833984,0.328125,-0.43969727,1.8818359,0.2644043,-0.69433594,-0.38305664,1.1660156,-0.078552246,-1.6337891,-0.20043945,0.10284424,-0.29125977,-1.6826172,-0.75878906,2.0957031,-2.3984375,-0.9501953,-0.6142578,0.9345703,-0.359375,-1.7773438,-1.4892578,0.48339844,0.875,1.1904297,-0.24523926,0.20043945,0.13562012,-1.9140625,0.50634766,-0.33642578,-0.5366211,2.0820312,0.5390625,-0.46411133,0.6513672,-2.4785156,-1.5195312,-0.29541016,-0.86816406,-0.7211914,0.25512695,-0.07714844,-1.8925781,5.5390625,0.35107422,1.3808594,0.7739258,-0.9272461,-2.5761719,0.5307617,-0.62109375,-0.5727539,-1.578125,-0.6435547,0.20910645,-0.33374023,0.8823242,-0.8120117,2.7304688,3.5410156,0.5180664,-2.1992188,-0.5288086,-0.16308594,-1.6738281,2.6601562,-0.88623047,0.04647827,0.23413086,-0.5913086,1.3505859,-0.27416992,0.2993164,-0.9321289,0.8100586,-2.9179688,-1.8037109,-1.796875,-1.2148438,-0.33325195,-0.24328613,-0.8544922,-0.79296875,-1.0371094,-0.35668945,-1.0048828,0.16088867,-0.9736328,-1.7587891,-0.63720703,-0.11352539,-0.43530273,-0.6147461,-0.10620117,-1.1787109,-0.9316406,-0.16796875,0.6738281,-1.2197266,-1.9013672,0.14233398,1.4716797,0.73339844,0.6791992,0.0703125,-0.33935547,0.40698242,-0.4338379,1.0996094,-0.07501221,-0.61865234,-1.5634766,2.3984375,0.1451416,-2.3046875,0.5258789,-1.5595703,-0.40649414,2.4355469,-0.8886719,-1.0253906,0.6201172,0.39819336,0.30297852,0.0018787384,0.42163086,-1.4423828,0.25097656,3.0996094,-0.5800781,1.3847656,0.640625,0.74121094,-0.8041992,1.4492188,0.8027344,-0.6435547,-0.7753906,-0.066101074,-1.0615234,-0.23498535,3.8671875,-0.4711914,-0.97753906,-1.1015625,-1.6298828,1.2890625,-1.0263672,0.050598145,0.4519043,2.9375,3.8164062,0.8496094,1.3359375,0.85546875,1.2001953,0.70166016,0.61621094,0.0362854,-0.45288086,1.2880859,0.7133789,0.2355957,0.8144531,-0.3466797,0.6567383,2.5507812,-2.0722656,1.1357422,0.68408203,-0.23571777,-1.6455078,-0.24499512,-0.8105469,0.81884766,-1.5810547,-0.1161499,1.8515625,0.06088257,1.2890625,0.057525635,-0.77490234,1.1591797,-0.7182617,1.6210938,-0.8696289,0.46801758,-1.0703125,0.4580078,-0.0012865067,1.4521484,0.82177734,1.7265625,-0.1373291,0.9448242,0.28393555,-2.5488281,0.09222412,1.1337891,1.4833984,-0.17004395,0.7763672,-2.0332031,0.21118164,1.4794922,-1.1445312,-0.032806396,-1.3378906,-1.7421875,0.8095703,-1.4775391,-0.74609375,-0.08325195,-0.25683594,-2.2324219,-1.4921875,-2.0898438,2.3183594,-0.0011348724,0.95947266,0.6201172,-1.0722656,-0.68115234,1.109375,-1.0849609,-0.30126953,-0.8515625,-1.3183594,0.44750977,-0.50683594,1.4755859,-0.19763184,-1.0966797,0.085876465,-0.22924805,-0.78564453,0.020309448,0.91796875,1.1279297,-1.4941406,-0.5024414,-0.2722168,0.96875,-0.9189453,-0.5986328,2.8574219,3.09375,1.546875,0.88964844,-1.0703125,-1.1240234,-0.46240234,0.7597656,-0.6621094,-0.8432617,-0.03265381,0.0769043,-0.49243164,1.6748047,1.9794922,0.9013672,-0.15563965,-0.24890137,0.11553955,-0.83740234,-1.4941406,0.72753906,-0.13208008,1.2890625,-1.7744141,0.81396484,-0.1427002,-0.48486328,-1.0810547,-1.4707031,-1.5048828,-0.60498047,-0.99365234,0.35498047,-0.18774414,-1.1953125,0.5419922,1.5800781,0.69189453,0.5961914,-1.0615234,-3.3339844,1.2060547,-0.13977051,0.5786133,0.023483276,0.08428955,1.8886719,0.07354736,-0.3100586,0.11651611,0.16772461,0.36621094,-0.17211914,-0.6352539,1.2294922,-1.4365234,-0.0791626,0.4729004,-1.4472656,0.83251953,-0.45385742,1.0136719,0.8457031,0.6430664,0.16442871,-2.3925781,1.4570312,1.9189453,-0.27563477,0.5883789,0.006690979,-0.5390625,2.6992188,-0.1583252,0.85253906,0.37158203,-0.1673584,-0.52490234,-0.039093018,-0.3083496,1.0634766,2.2480469,0.5800781,0.5917969,-0.96191406,-2.4335938,0.8901367,0.71240234,-1.1982422,0.4650879,-0.5522461,-0.25268555,2.2890625,0.14160156,1.4501953,-1.8203125,1.3603516,-1.5175781,-0.69384766,-1.8720703,-2.296875,2.6972656,-1.3955078,0.076538086,0.025726318,2.1328125,-0.42163086,2.3984375,1.6591797,-1.65625,0.011009216,1.7109375,0.45410156,-0.2800293,-0.36816406,-0.8847656,-0.44360352,0.57177734,0.77783203,-0.40795898,-0.84472656,-1.5498047,2.46875,-1.1474609,-2.5820312,1.8994141,2.0878906,-1.1220703,-2.3691406,-1.9521484,0.11029053,3.3339844,-0.22717285,1.0371094,-0.49926758,-0.044799805,-0.049865723,1.6494141,-0.80908203,0.15820312,-1.4853516,-1.6074219,1.0087891,-1.1689453,0.48754883,0.37182617,-2.5761719,1.6181641,1.9091797,-1.5625,-0.78564453,1.6318359,0.6699219,-0.54003906,0.74609375,1.8085938,1.5703125,-0.31567383,-2.0253906,-1.7548828,-1.0068359,2.4375,-0.48291016,-0.24719238,2.3125,-0.765625,1.7773438,0.63134766,-0.08557129,0.72802734,-0.96533203,1.7177734,0.19506836,0.7006836,0.7001953,-0.5175781,0.7651367,-0.63671875,0.20458984,0.88378906,1.6113281,-2.2832031,-0.93847656,-0.81689453,-0.46533203,1.4394531,-0.29858398,-2.8300781,-0.2211914,0.97314453,-0.76416016,-0.7060547,-0.70410156,0.38305664,-2.2519531,-1.5449219,-2.0410156,1.1953125,-3.2832031,2.6640625,-4.0039062,-1.5019531,1.5302734,-0.62939453,1.4462891,0.076293945,-3.4121094,-1.6689453,-0.9926758,-0.29882812,2.125,-0.05441284,0.14550781,-0.76660156,0.7265625,1.2509766,-2.9648438,-1.03125,-2.7695312,-0.4152832,2.59375,0.099975586,-1.2939453,0.40576172,-1.6123047,0.7084961,-2.2246094,0.81933594,0.7578125,0.32739258,-0.55566406,1.1904297,-0.018447876,-0.16223145,1.0771484,-0.018539429,-1.2607422,-1.1220703,0.6020508,-0.6064453,0.1003418,-0.9472656,-0.11730957,-0.2758789,0.12445068,-1.9101562,0.78466797,0.52685547,-1.1796875,-1.234375,0.45654297,3.2363281,2.1796875,-0.5444336,1.9169922,-1.2441406,0.0619812,0.26464844,0.3161621,1.2958984,0.9667969,-0.08959961,-0.7363281,0.70410156,0.07348633,-1.0283203,-2.3046875,-1.3564453,-2.9667969,-0.14575195,-1.3300781,0.02166748,-0.79052734,0.5161133,-0.69628906,-0.5126953,0.19372559,-1.0742188,-1.4326172,-1.0273438,-0.24890137,2.1035156,-0.8383789,1.8642578,-3.1503906,-0.24133301,0.80371094,-0.5390625,-1.7226562,1.6679688,-0.41796875,0.2421875,-1.9609375,-2.3886719,0.05783081,0.16833496,-0.27905273,0.7661133,-2.9335938,-1.8779297,0.47192383,1.7216797,3.0351562,1.9628906,0.5834961,-1.7128906,0.04095459,-0.13244629,-0.31420898,0.6826172,-0.15270996,-3.7109375,0.04522705,0.71240234,0.72216797,-0.18469238,-0.21557617,-0.66796875,-1.6435547,-0.38427734,-1.1826172,1.6904297,0.57910156,1.9648438,1.3583984,-1.2324219,1.0576172,0.64404297,0.8935547,2.3984375,-1.2753906,1.7695312,-0.6352539,-0.18493652,0.36694336,-0.92529297,0.6254883,-0.5317383,0.61035156,-1.4257812,-1.3017578,0.20739746,1.0136719,2.5566406,0.1381836,-2.6191406,0.6323242,0.77246094,1.7285156,2.1171875,-0.11383057,0.53515625,1.4384766,1.8662109,1.1474609,-0.5786133,-0.24963379,0.7792969,-2.1699219,0.27807617,2.2636719,-1.3134766,-0.033111572,1.6738281,2.2089844,1.6289062,2.2460938,-0.59765625,-1.0986328,-0.77978516,-3.2226562,-1.3710938,0.3618164,0.72802734,0.34448242,1.4912109,-0.8457031,-1.6640625,0.20227051,0.02619934,-0.82470703,-1.4003906,0.037902832,-1.0722656,-0.66796875,-1.4599609,1.9482422,0.2322998,-0.39013672,-2.8164062,-0.98828125,-0.21325684,0.66308594,-0.16040039,1.9755859,1.3105469,-1.2636719,0.007698059,-0.3100586,1.0761719,2.0585938,-1.234375,0.04458618,-3.2382812,1.0371094,0.4831543,0.39526367,-0.05996704,-0.34716797,-1.0117188,-1.1103516,-0.15991211,-0.8955078,-1.2226562,0.3474121,1.171875,0.021026611,-0.73583984,-0.9970703,0.48364258,-1.5273438,-0.89160156,0.9770508,0.546875,-2.7480469,0.96875,0.0069465637,1.0957031,-1.2626953,-0.24694824,-0.78466797,-0.3215332,-2.5664062,2.0039062,0.3005371,0.9707031,-0.48461914,-0.75683594,0.8310547,0.10241699,0.32348633,-1.5429688,1.1445312,0.89501953,1.1240234,-0.20007324,0.37719727,0.42260742,1.3427734,-1.4414062,1.9462891,1.7900391,1.6162109,0.65527344,-1.7724609,0.6015625,-0.15527344,-0.93896484,0.41918945,1.3076172,-3.2089844,-0.3251953,-0.3725586,-2.9902344,1.09375,-0.05718994,-0.16369629,0.3984375,2.6757812,3.0820312,-0.58935547,0.07751465,1.0654297,3.2714844,-0.18334961,-4.4765625,1.8808594,-2.0175781,0.26635742,1.5820312,1.2880859,-0.5361328,-2.4121094,-0.5488281,0.7338867,2.1171875,-0.4296875,0.4025879,1.4248047,0.8227539,0.21118164,3.2890625,-2.0175781,-0.26293945,1.2607422,0.39697266,-2.3691406,0.65478516,0.73339844,2.15625,-0.15270996,-0.6347656,0.38134766,1.2851562,1.0234375,1.1376953,0.7675781,0.40454102,0.18347168,1.2470703,2.6601562,-0.7392578,-1.5576172,1.6142578,-0.4321289,-0.76171875,2.6074219,-1.2255859,0.4333496,-0.08093262,0.62890625,-0.6660156,0.94433594,-0.35498047,2.2988281,0.07299805,-1.8242188,-0.71875,-0.73876953,-0.009544373,1.53125,-0.5786133,-1.5410156,2.3300781,1.7646484,-2.1796875,-1.6464844,-1.328125,2.5136719,-0.69433594,1.5029297,0.35498047,-1.4345703,-1.0361328,2.2558594,-0.17492676,0.89990234,0.3798828,0.6479492,-1.75,-1.1904297,1.4033203,-3.1835938,0.4873047,-1.3916016,1.6591797,2.3144531,-1.3427734,2.3144531,0.043121338,0.51416016,2.4453125,1.0410156,3.4589844,1.0996094,-0.3251953,0.6748047,-0.2685547,0.57128906,1.0996094,1.6982422,-1.1914062,0.13989258,-0.11419678,-0.19152832,-1.9472656,-0.7763672,-1.7021484,0.80810547,-1.5996094,-0.42797852,1.5136719,0.4506836,0.39379883,-0.4074707,2.0078125,-0.4885254,-1.7128906,1.2871094,-0.33911133,2.0527344,0.34350586,1.3398438,0.017074585,-1.2675781,0.31054688,-0.453125,1.921875,-0.4008789,-1.40625,-1.5507812,1.1972656,0.30615234,-0.5473633,-0.5917969,2.0449219,1.8759766,0.48754883,-3.0136719,0.011802673,-0.96191406,-0.39233398,0.47924805,-1.0742188,-0.9189453,-0.7001953,-0.109313965,-0.68603516,0.40405273,-2.375,0.9892578,-0.5444336,0.12213135,0.47045898,-0.5136719,2.2089844,-1.9394531,-1.0136719,-0.13745117,-1.0371094,-1.2871094,0.7504883,1.5019531,-1.4443359,-0.15466309,0.77978516,-0.5463867,-0.24707031,0.5493164,-1.4033203,-2.1289062,0.7504883,1.0009766,0.6088867,0.8071289,0.95751953,2.3828125,-0.38427734,-1.1660156,0.6201172,-1.1601562,0.19519043,0.78027344,-0.5180664,3.0253906,-2.0332031,-0.47314453,-0.1583252,0.5986328,1.3085938,-1.0703125,1.1962891,-0.037719727,-2.0507812,1.7304688,0.46533203,0.83447266,0.16394043,0.58251953,-0.11553955,0.39013672,-0.36547852,0.5576172,0.26757812,1.0029297,2.6113281,-1.4121094,1.8193359,0.113220215,-3.6269531,0.11657715,-0.06298828,0.28100586,1.6865234,-0.50439453,-1.8789062,-1.1748047,1.1650391,0.30322266,2.0097656,-0.67578125,-0.93896484,0.42163086,-1.1083984,-0.58984375,-0.9057617,-0.2619629,0.42285156,2.1464844,-1.3798828,-0.8774414,-0.48120117,-0.27319336,-2.1875,1.4785156,-1.2333984,-0.8154297,-0.9995117,-0.052764893,-3.2304688,0.9042969,1.4082031,1.5693359,1.4091797,0.2310791,0.9394531,-0.7788086,-0.296875,-1.1806641,-0.8574219,0.5834961,-0.6176758,-1.8535156,-0.15270996,0.31176758,0.82470703,1.7109375,-0.41308594,0.8144531,-2.2929688,-2.15625,-1.2939453,2.6542969,1.953125,1.6123047,-0.6621094,-0.024215698,0.9199219,-0.42578125,-1.4150391,-0.63183594,1.0917969,1.2832031,-1.8017578,-0.74853516,-3.7363281,0.08868408,-0.15258789,-0.9555664,-0.3955078,-0.3474121,-0.5595703,-0.515625,1.1240234,-1.8378906,1.4726562,0.7524414,-1.4394531,0.89501953,-0.13439941,-0.29370117,1.1513672,-0.45581055,-1.1308594,-1.0478516,0.062683105,2.2558594,1.0898438,-0.45141602,-0.13745117,0.71728516,0.49731445,0.11425781,-1.4667969,0.5751953,-1.2998047,1.3242188,-0.95410156,-0.8071289,0.50390625,0.5288086,-0.53759766,-0.081726074,-0.6274414,1.3779297,0.94970703,0.21838379,-0.62597656,-2.2285156,-2.0859375,1.4091797,0.84228516,1.921875,-2.7714844,-1.2753906,-2.0546875,1.7441406,0.4519043,0.95410156,-0.074645996,1.1357422,-2.0859375,0.5498047,1.4169922,-0.31079102,-0.7583008,-0.31079102,1.0517578,-2.4179688,1.1835938,-1.5166016,0.45385742,0.11004639,-2.9941406,-0.32788086,1.1787109,0.7763672,-0.21032715,-0.36376953,0.060394287,-1.9707031,0.31811523,1.6201172,0.03488159,1.9462891,1.3349609,0.91796875,-1.3085938,-1.4023438,0.8173828,0.80078125,0.5678711,1.1328125,-2.0410156,0.5605469,0.47143555,0.7260742,-0.72021484,-1.9072266,2.0507812,-0.11743164,0.28808594,1.21875,0.50683594,-0.3623047,-1.1523438,-5.328125,0.88134766,1.6152344,-0.08459473,0.69091797,-0.3166504,1.3349609,-1.5029297,-2.0625,-0.26635742,0.03665161,-1.7832031,0.13305664,2.5429688,-0.6982422,0.9536133,2.2832031,-1.1259766,-0.9628906,2.2070312,-0.92041016,0.4946289,-0.57470703,1.9619141,2.9941406,-1.5234375,-1.2871094,-0.6923828,-1.2001953,-0.9770508,-0.09942627,0.6035156,-2.0527344,1.5195312,1.2734375,1.1611328,-0.45288086,0.21972656,-0.31054688,-1.1640625,0.051361084,-2.671875,0.8876953,-0.09509277,-1.7626953,-0.31323242,1.1005859,1.8339844,1.6582031,0.9194336,-1.4775391,0.2709961,-1.6445312,-0.015823364,1.6152344,0.9316406,-0.23620605,2.3574219,-0.5390625,2.3378906,-0.19873047,0.5908203,2.2363281,1.3964844,0.036224365,-0.8232422,0.0066070557,-2.7558594,-0.29516602,-2.2148438,1.2226562,-1.7451172,-2.8144531,1.1162109,-0.671875,-0.8979492,-0.45410156,-0.3701172,-0.2685547,-0.21081543,-1.0751953,1.1289062,-2.5605469,-1.3251953,0.31567383,-1.7753906,-0.17102051,-0.6821289,-0.99658203,0.99609375,-1.6669922,0.6972656,-1.7890625,1.4951172,0.1361084,-1.2626953,0.46777344,-1.5839844,-0.26831055,-0.6538086,2.0820312,0.46704102,-1.4921875,0.97314453,1.4863281,-0.74560547,0.007297516,-1.2226562,1.9521484,-1.2255859,-0.13439941,-1.1298828,-0.6665039,1.78125,0.67089844,1.6269531,0.08483887,-0.17993164,1.5087891,1.3320312,-1.3203125,-0.26293945,0.2524414,0.33129883,0.35424805,0.8017578,-1.1289062,0.50683594,-1.6787109,1.0957031,0.828125,4.859375,-0.0070610046,-0.18164062,-2.1914062,-0.41796875,0.4020996,0.4260254,0.83984375,-1.2060547,0.12683105,0.33032227,-0.9926758,-1.3544922,-2.0703125,-0.119262695,0.3034668,3.7714844,-0.7363281,-0.58447266,-1.6132812,-0.18286133,-1.8691406,1.7519531,0.7792969,0.8022461,-1.2871094,0.74560547,1.1542969,1.0703125,-1.8613281,0.01373291,-0.39770508,-0.3137207,-1.0332031,-0.39501953,0.2841797,-0.39526367,-1.6201172,-1.7490234,1.734375,-1.1914062,-0.40039062,-0.59228516,0.5839844,-1.0351562,1.7714844,0.5415039,-0.77685547,0.8457031,-0.62060547,-0.49951172,0.58740234,0.6928711,1.2714844,-0.00699234,-0.9609375,1.1835938,4.5585938,0.2993164,-0.14758301,0.39990234,-0.21655273,-0.9248047,0.34204102,-0.059509277,-1.3271484,0.33154297,-0.9770508,-0.6689453,-2.8730469,-0.95996094,1.1904297,0.25610352,1.4492188,0.69189453,-0.12084961,0.4091797,1.7392578,-1.1074219,-1.2363281,-1.4189453,0.41601562,-0.08996582,1.2255859,-1.6875,1.4189453,-0.80810547,2.3613281,1.2910156,0.32202148,0.52978516,-2.2363281,1.0400391,-0.48999023,1.5654297,-0.19042969,-1.0693359,-1.1015625,0.09124756,-2.3476562,-0.14526367,-0.010192871,2.5566406,-0.09362793,0.15783691,3.5996094,-0.4165039,0.23254395,-0.27294922,-2.1328125,2.0625,0.54589844,0.4038086,-1.5751953,-2.5664062,-5.3359375,1.7001953,-0.03451538,-1.5683594,0.6142578,0.64453125,0.088134766,0.48754883,-1.9589844,-1.0839844,2.1816406,0.69384766,0.12915039,2.9003906,0.10040283,1.4238281,-2.0136719,-1.5517578,-1.203125,-1.6132812,0.17004395,1.7578125,0.6694336,0.5395508,1.4853516,-1.2060547,-0.14416504,-0.021911621,1.0273438,-0.8051758,1.4179688,3.2324219,-0.8823242,-1.5839844,-1.6884766,0.6923828,-0.0010147095,0.36889648,-1.2412109,0.3203125,0.4729004,-3.3007812,-0.40039062,-2.2851562,-2.0820312,1.9091797,-1.1015625,1.9169922,1.2001953,-0.17272949,0.36572266,-0.20703125,-1.2587891,-0.71728516,1.3730469,0.39453125,0.61865234,-2.9785156,-0.20422363,0.2644043,-1.5830078,0.83740234,0.8408203,0.42163086,-1.7304688,0.26586914,-0.49682617,-0.87841797,1.1835938,-5.515625,-0.86083984,-0.15112305,0.4963379,-0.28979492,-1.1679688,0.06738281,-4.171875,1.9199219,-0.109069824,-1.7119141,-0.16442871,-0.24230957,-0.12768555,-0.9848633,-0.070373535,0.2524414,-0.28173828,0.95996094,1.5537109,-1.0068359,-1.4375,-1.7109375,-0.40795898,1.578125,0.16772461,-1.1943359,1.4267578,0.6152344,-1.4150391,-1.2402344,1.9033203,-1.0517578,-0.65478516,-1.6533203,-1.6445312,-1.1992188,-0.77197266,0.27539062,1.3007812,1.6484375,-0.111083984,-1.6123047,1.4287109,0.14855957,-0.8364258,-1.7861328,-0.80371094,3.2304688,0.14782715,-0.4104004,0.9628906,1.828125,-0.88671875,2.9296875,0.6694336,0.2290039,1.2070312,-2.078125,-1.2900391,-1.7001953,-1.4101562,-1.0283203,0.5385742,-1.2929688,1.8837891,0.085754395,-0.7939453,0.32202148,0.25317383,-0.9404297,2.2363281,0.27441406,-1.2509766,-0.64746094,0.37182617,2.2910156,-1.7363281,-0.39794922,0.24206543,-0.2680664,-1.1455078,-0.85253906,-0.17126465,0.328125,0.32983398,0.35180664,0.29541016,-0.92871094,-1.5576172,0.29663086,-0.46044922,1.6210938,-1.7177734,-0.6225586,-0.36108398,-0.14904785,0.8017578,-0.6015625,0.043884277,-1.8017578,0.31811523,-0.75341797,-0.80566406,-0.81396484,-1.9677734,-1.1923828,0.077941895,0.38671875,-0.08502197,-0.4951172,-0.57128906,-0.68603516,-0.9794922,-0.039855957,-0.6166992,-0.74902344,4.1953125,3.0800781,-1.5751953,1.3203125,1.6113281,-1.2695312,-0.10559082,-1.6484375,-1.0341797,0.63623047,1.1201172,-0.48657227,0.8144531,-0.12670898,-0.49926758,-1.0400391,-0.02671814,-0.45092773,-1.1474609,-0.25878906,-0.9711914,0.8129883,2.1445312,0.3010254,0.90771484,1.578125,1.2744141,-1.4101562,0.116882324,-1.1660156,1.2929688,0.4580078,0.32983398,0.029388428,0.37280273,-0.34155273,0.50341797,-1.8818359,-1.0498047,0.4868164,-0.7651367,-1.0537109,2.109375,1.9794922,2.3027344,-0.1685791,-0.09094238,1.9306641,0.5361328,0.8364258,1.9892578,0.84375,-0.07897949,0.39794922,-0.86621094,1.1298828,2.6328125,-0.29174805,2.8964844,0.6713867,0.12420654,1.3046875,1.3818359,1.5,0.7753906,3.6503906,1.6884766,-1.7724609,0.81884766,-1.3056641,0.0949707,0.97216797,0.35961914,1.1816406,-0.6660156,0.17053223,0.5102539,2.1464844,-1.4335938,-0.65185547,1.1611328,-0.99658203,-2.2089844,-0.5703125,-2.5566406,-1.8027344,-1.6884766,1.2333984,-1.0615234,-2.2636719,-1.2294922,0.8310547,0.4831543,0.095703125,-0.15527344,-0.99609375,-3.2070312,0.11230469,0.5332031,-1.8037109,-0.00041365623,1.6923828,0.41674805,1.9804688,0.79052734,-0.2849121,-0.77490234,-0.49267578,-0.26538086,-2.0625,-1.2021484,1.6972656,-1.046875,1.0761719,0.828125,1.3515625,-0.16455078,-0.83251953,1.3300781,-1.5224609,-1.5625,0.29296875,0.78515625,0.44335938,0.019454956,2.1621094,0.9536133,1.0546875,1.5400391,0.13964844,0.6826172,1.2568359,0.9160156,-1.2714844,-2.6347656,-2.46875,0.5385742,0.71728516,-1.0976562,0.87597656,0.022109985,1.2148438,-0.22070312,0.011962891,-0.5732422,-0.057128906,0.5839844,1.4306641,1.4238281,-1.0390625,-0.6748047,-2.0996094,-0.23254395,0.07330322,0.8227539,-0.77685547,-0.17272949,2.1796875,0.0013036728,-0.7910156,0.89746094,-1.5576172,0.8720703,0.31835938,-0.84765625,-0.1751709,0.75097656,0.46606445,0.03286743,-1.4775391,0.33740234,0.9746094,-0.8173828,0.95947266,1.0439453,0.5527344,1.9306641,-0.50341797,-0.23876953,0.0011844635,1.1845703,0.41333008,0.92578125,-1.7050781,0.2211914,2.3945312,-0.40283203,1.1083984,-0.34326172,0.7504883,0.19042969,-1.7226562,-1.3486328,1.6386719,-1.4990234,-0.8515625,0.69091797,-0.93115234,-2.0878906,-0.02670288,0.64746094,0.5209961,-2.4394531,2.3984375,-0.6621094,1.2001953,-0.46191406,0.7573242,0.90283203,-0.17504883,-0.097473145,2.0410156,1.0302734,-0.35058594,1.0664062,-2.3378906,1.09375,2.0292969,-0.12792969,-0.3540039,0.07946777,1.1796875,1.0419922,0.36767578,-0.2253418,0.86328125,0.106933594,0.23828125,0.8120117,0.66748047,-1.5097656,-0.6801758,0.97265625,1.7226562,1.671875,1.90625,1.4423828,1.1318359,-1.4042969,-1.0087891,-0.45214844,0.06304932,0.12756348,-0.02986145,-0.5961914,-0.4814453,0.058135986,-2.1367188,0.46191406,0.09790039,0.23034668,0.52197266,-0.58691406,-1.1914062,-5.2617188,-0.6225586,1.7226562,-0.52685547,-1.4560547,1.7226562,0.042877197,1.5878906,0.6767578,-0.52978516,0.5253906,0.15905762,-1.2910156,0.64746094,-1.578125,-0.90283203,-0.18151855,-1.3535156,0.033721924,-1.3027344,0.2010498,-0.69677734,-0.8105469,-0.6923828,-0.12597656,-0.019058228,-0.09094238,0.32543945,-2.4140625,-0.64453125,-2.5898438,0.93408203,0.04916382,-0.35229492,-0.9975586,-0.26538086,-2.4296875,0.328125,0.20910645,1.2871094,0.18151855,1.0556641,-0.19226074,-0.54541016,2.2441406,-0.62402344,0.7553711,0.026489258,-0.23474121,1.8779297,-0.11883545,-0.0713501,0.36572266,1.5214844,-1.1357422,-0.5517578,0.6035156,-2.0605469,-0.9350586,0.61328125,-0.14453125,-1.4033203,-0.58203125,-1.3779297,1.5742188,-0.62353516,0.3642578,-0.0016527176,0.47485352,-0.17590332,-0.024017334,2.5390625,0.7084961,-0.97802734,-0.25708008,1.2929688,-0.49243164,-0.49731445,0.08947754,-0.59716797,0.82421875,-0.54296875,-0.98339844,-0.20654297,1.9492188,-1.6054688,0.05758667,1.6699219,-0.26220703,0.47558594,1.1376953,-0.82958984,-0.10211182,-0.10119629,0.05618286,0.23522949,-1.7675781,1.4853516,-1.0068359,0.78515625,0.65625,0.4633789,-1.1787109,-2.0625,0.012107849,0.8027344,-0.9633789,-0.74365234,0.9433594,-0.44921875,-1.3183594,-0.84375,0.097961426,1.4306641,0.56103516,-0.7036133,0.33642578,0.1862793,0.2915039,1.8779297,-0.48217773,0.111328125,-0.2043457,2.5800781,-0.20727539,-2.078125,-0.12213135,-0.19433594,-0.6933594,1.3271484,-1.6162109,-2.1601562,1.40625,2.0058594,1.2275391,0.3864746,-0.6669922,-2.3632812,1.2451172,0.49609375,-2.0273438,-1.1445312,1.328125,0.55859375,0.97753906,1.5996094,0.9189453,4.9609375,-1.9101562,-1.4248047,-0.20996094,1.7294922,0.7705078,0.6147461,0.27612305,1.1513672,-0.8930664,-1.3779297,-0.25146484,-0.9511719,-0.7573242,1.4111328,-0.6894531,-0.59472656,1.7773438,0.5097656,-1.0517578,-3.2011719,2.1347656,1.7246094,1.8535156,-2.0644531,-0.12670898,1.6640625,-1.6484375,-0.7163086,2.5996094,-0.32739258,-1.8300781,-1.4638672,0.55371094,1.3652344,-0.14880371,0.6542969,0.19165039,-1.2558594,-0.1920166,-1.8623047,0.51464844,-1.3544922,1.4150391,-0.24243164,-1.6347656,2.1269531,-1.2587891,-1.2548828,1.4912109,-2.3378906,-0.078186035,-1.2216797,-0.50634766,-0.32836914,-0.45458984,0.546875,0.49658203,0.7036133,-0.80322266,-1.5048828,-1.8867188,0.3232422,0.7734375,0.8051758,-2.3671875,0.095947266,-1.171875,0.6855469,0.038146973,0.9770508,0.66308594,2.4335938,0.9116211,0.0039901733,2.1386719,-2.3886719,0.9584961,-0.35913086,1.4726562,0.63623047,-3.3574219,1.71875,-0.017288208,2.2949219,-0.4765625,0.08392334,-1.4375,-1.2060547,0.38891602,1.6748047,0.3527832,0.33544922,0.30371094,0.4284668,1.6806641,-1.6542969,1.0419922,-0.70166016,-0.17053223,0.8847656,-0.75634766,-0.16101074,-0.8901367,-0.33447266,0.91552734,0.37109375,0.69433594,1.1044922,-0.96533203,0.122680664,-0.15209961,-0.7602539,1.3164062,0.4482422,-3.3984375,0.38598633,-1.4140625,1.6884766,-0.033081055,0.059173584,0.12683105,1.5712891,1.1816406,-0.6166992,-4.359375,1.0507812,0.60839844,0.4033203,-0.2565918,0.9448242,0.25073242,-1.1191406,-1.4697266,1.1923828,1.0546875,-1.8242188,-1.1435547,-1.1318359,0.45947266,-0.069885254,2.5703125,0.86376953,-0.22314453,0.4104004,-0.08618164,0.82470703,1.2451172,0.8178711,0.031280518,-1.1923828,0.21118164,3.0800781,0.39501953,0.8852539,0.13208008,-0.38012695,0.84472656,2.0917969,0.33398438,2.1542969,0.22473145,-0.6411133,0.10119629,-0.15136719,-1.2646484,0.037200928,-0.3540039,-1.6455078,-0.37109375,0.33081055,-1.0058594,0.6455078,1.2099609,-2.7265625,-2.2070312,0.88671875,0.4543457,-0.61328125,-4.9375,1.5087891,2.6640625,0.21960449,-0.16247559,-0.8613281,-1.328125,0.58447266,0.28271484,0.79003906,-1.6621094,-0.29125977,0.27856445,-0.28100586,1.1513672,-1.4873047,2.2714844,-2.5742188,0.13781738,0.70214844,-3.0742188,1.6386719,-1.0410156,-1.2197266,1.2607422,0.7573242,-1.9384766,1.9199219,-3.2519531,-0.61035156,0.83984375,0.00071907043,0.69384766,1.3242188,0.2388916,-0.2052002,0.96484375,-0.09197998,-1.4072266,-1.4570312,0.41333008,0.91015625,0.21228027,0.46704102,-1.3720703,-0.84716797,0.7475586,2.2421875,-0.64697266,-0.2763672,0.68310547,2.3535156,0.97753906,0.2919922,-1.1240234,1.1074219,1.4912109,-2.0117188,0.018539429,-0.3605957,0.65283203,-0.65527344,1.1132812,-2.5390625,-0.5649414,0.45947266,3.3359375,-0.7036133,1.125,0.75097656,0.17749023,-2.2734375,1.0683594,0.15454102,-0.19396973,-0.5385742,3.125,-0.29125977,-0.16345215,-1.0507812,-1.2070312,-1.2939453,1.5322266,1.0957031,-1.6796875,1.1240234,-0.57666016,-1.1621094,-1.0195312,0.36206055,-0.30737305,-0.15136719,-0.5678711,-0.39331055,0.21105957,0.1586914,2.5566406,2.2167969,-0.53125,1.1757812,-0.008514404,0.64404297,-0.41259766,-1.2705078,0.50390625,-1.2851562,-1.7998047,0.015090942,0.016082764,0.25024414,2.9980469,-0.4362793,0.46948242,-1.84375,-0.15905762,-0.82421875,-0.29467773,0.40356445,1.3818359,-0.3125,-0.8251953,-1.2216797,-0.74609375,1.7255859,-0.5786133,0.12768555,1.5625,-0.41601562,-0.9770508,-0.27514648,2.5214844,-0.2319336,3.0390625,0.3334961,1.8339844,-2.0820312,-2.625,-0.45385742,1.3964844,0.080322266,-0.23071289,-0.062194824,0.52001953,2.4375,-1.5996094,-0.7788086,0.2734375,-0.9741211,0.7714844,-0.90771484,2.1992188,1.1816406,-1.2089844,-1.1601562,-0.1685791,-0.15539551,2.7226562,0.52490234,-1.1875,-2.4433594,0.24645996,-2.0058594,0.78125,1.0048828,-0.35424805,1.109375,0.91552734,-0.82714844,0.6816406,0.65234375,-0.76660156,-0.12023926,-0.52197266,-2.1542969,1.4980469,1.1015625,-0.17602539,-1.0498047,-0.9316406,-0.9433594,1.7548828,2.0019531,0.37548828,0.25170898,-1.3623047,-3.0039062,-1.2724609,-1.4169922,0.9482422,0.38500977,-1.6582031,-1.6455078,-0.17272949,-0.66503906,-0.18530273,0.8310547,-1.4296875,1.1728516,0.6928711,-3.1347656,-0.78027344,-1.8691406,0.7089844,0.10467529,1.4619141,2.0878906,-0.72021484,-0.35009766,0.5097656,0.6411133,0.12310791,-1.3105469,-0.44580078,2.7792969,-0.028793335,3.7871094,-0.28979492,0.5029297,-0.6777344,1.3046875,1.8583984,-0.89160156,-0.054595947,-1.5097656,-1.3457031,-0.8310547,-1.0029297,-2.1074219,0.5878906,-1.0966797,-1.1660156,1.0576172,1.3105469,0.25219727,0.026016235,-0.0715332,0.5258789,-2.2753906,1.0693359,-0.45336914,1.2353516,-1.8007812,0.93066406,-0.828125,0.60009766,-0.5136719,0.47143555,-0.6098633,2.3183594,-0.21118164,1.5517578,-0.18188477,1.1347656,1.828125,-0.42382812,2.2363281,-0.007282257,-0.76123047,-1.9091797,-0.35253906,-1.5400391,0.93896484,2.3242188,0.054260254,0.37646484,-1.2353516,1.3798828,-0.57470703,-0.7319336,0.32495117,0.25146484,0.086364746,0.23803711,0.15734863,-1.5517578,-1.7265625,2.7597656,0.44580078,-0.7416992,-0.05529785,2.4453125,0.29711914,0.8666992,0.35351562,-1.4970703,-2.4746094,-1.5820312,1.1191406,0.29052734,0.5986328,1.9912109,1.0351562,0.06945801,0.4375,0.20922852,-1.1640625,-2.0761719,1.7666016,-1.3583984,-0.2548828,1.1367188,-0.0062179565,0.96240234,0.4321289,-0.27319336,-1.3515625,0.47509766,-0.54248047,-0.07867432,-0.06414795,-0.007083893,-0.24963379,0.8886719,1.3642578,1.6835938,0.5234375,-0.57177734,2.2792969,-0.09906006,0.9501953,-0.15527344,-0.7426758,1.0976562,-0.97753906,0.044677734,-0.8911133,1.3730469,-1.5214844,0.22888184,-0.5385742,0.8022461,-1.5839844,0.2919922,0.5991211,-3.2910156,1.984375,-1.6787109,0.5073242,-0.8520508,-0.030944824,-0.6435547,0.09039307,-0.65283203,0.5288086,0.6748047,0.008888245,1.5498047,0.4165039,0.88378906,0.38891602,1.2041016,1.7822266,-1.7421875,0.75341797,-0.7758789,-1.7470703,3.2558594,-0.6347656,-0.28759766,0.29345703,-0.79541016,0.13574219,1.5449219,-2.4824219,-1.0087891,1.9091797,-1.4160156,0.38085938,-0.0011234283,-1.0292969,-0.76953125,-0.88671875,0.25048828,-0.65283203,-1.0146484,0.5283203,0.72753906,0.5786133,1.4443359,-0.69921875,-0.22192383,0.9008789,1.1611328,-1.4345703,1.4931641,-0.3942871,0.7939453,0.6220703,-1.9755859,-1.2060547,1.4384766,0.5722656,-1.4179688,-1.1640625,1.5166016,1.8886719,0.45141602,-1.6386719,-2.2207031,0.36132812,-0.051513672,0.7109375,0.38256836,0.7866211,0.82958984,-0.95751953,0.49560547,0.8413086,-0.54248047,0.80371094,1.0478516,0.32177734,-1.4970703,-0.06286621,0.4165039,0.84716797,0.15649414,1.7207031,-2.2226562,-0.1673584,0.96728516,-0.25805664,-0.48999023,-0.58935547,1.9121094,-0.7475586,-0.68603516,1.3837891,0.95458984,-0.6816406,1.0117188,-0.7817383,-0.46777344,1.0234375,1.0771484,-1.7060547,-0.38427734,0.088378906,0.9707031,1.8574219,0.2644043,-0.050231934,2.6953125,0.48999023,-0.21289062,-0.2783203,-1.1582031,1.0585938,0.5810547,1.171875,1.4316406,-0.6196289,-2.9667969,1.9746094,0.98876953,-1.1582031,-1.4833984,-2.3496094,-0.91503906,0.4946289,0.74609375,0.17858887,-0.375,0.65185547,0.6201172,-1.8808594,-0.21435547,1.0107422,1.5351562,0.7988281,-0.57714844,-3.1074219,-1.5224609,1.328125,-0.54589844,-0.49194336,0.52490234,1.0029297,-0.52783203,-1.5771484,-0.3515625,-0.2932129,-0.13562012,-1.28125,-0.8022461,-0.80322266,1.0859375,-1.3808594,0.13964844,0.25585938,-0.7211914,1.1513672,0.15270996,-1.2265625,0.2364502,-1.1992188,1.1464844,-1.2373047,1.4082031,0.90283203,-1.6279297,0.5629883,0.47192383,-0.39501953,1.5810547,-0.4790039,0.99316406,0.29467773,-0.23181152,-0.43969727,0.8432617,0.049743652,-0.17810059,-0.6196289,1.4257812,0.09460449,0.052001953,-0.6665039,0.79541016,0.11468506,0.77685547,-0.03100586,0.5107422,-0.3557129,-0.56884766,1.2470703,-0.25170898,0.7578125,1.4375,0.20898438,-0.5073242,2.4726562,-0.26098633,0.46606445,-0.046661377,1.0517578,0.15490723,0.55810547,0.46289062,0.28930664,-0.18066406,-0.4104004,-0.86376953,-0.23547363,2.1855469,1.6494141,-1.4980469,0.14428711,1.8603516,1.4423828,1.0166016,1.2939453,-1.6748047,-2.296875,-1.2783203,0.8076172,1.0380859,-2.453125,0.05368042,-0.5473633,1.6875,0.076171875,-1.4238281,0.15625,3.0625,-1.0546875,1.7900391,1.2128906,1.8496094,0.43164062,1.1015625,-0.2084961,0.7011719,1.296875,1.7666016,-0.20324707,-2.1386719,-1.7421875,1.3740234,-1.7021484,-1.5048828,1.6640625,3.0800781,0.8911133,0.3293457,0.05923462,2.5410156,1.5703125,-0.43945312,-0.9194336,0.09649658,-1.2138672,-1.1533203,1.6416016,-0.024505615,-0.48217773,0.0680542,-1.6347656,0.18371582,-0.6508789,0.41259766,-0.50683594,2.0175781,1.3398438,-0.75341797,-3.1972656,1.3378906,-1.2128906,0.5546875,-1.9785156,0.7446289,0.26660156,-1.9755859,-0.06878662,1.5908203,-1.796875,1.2050781,1.0048828,0.21838379,-0.21008301,-1.0917969,0.32495117,1.53125,0.7573242,-1.6826172,0.15185547,-0.7607422,-0.58447266,1.6943359,0.9091797,0.022750854,-0.032165527,1.4570312,1.1054688,0.48706055,-0.97753906,-1.1074219,0.14953613,-0.37329102,-1.0185547,-1.3203125,-1.6396484,0.60839844,1.46875,0.21240234,-0.671875,1.7978516,-0.99365234,0.18249512,1.0712891,-0.86328125,0.14624023,-0.9926758,-0.61621094,-0.032348633,1.8554688,0.7832031,1.3681641,-0.55566406,0.65625,-0.9194336,-0.75634766,0.1772461,1.3427734,-1.4931641,-0.77490234,-1.4746094,1.0146484,-1.671875,-0.21472168,0.004863739,-0.5727539,-1.6835938,-1.9746094,1.0664062,-1.1523438,-0.27392578,0.9746094,-0.84765625,-1.0146484,-1.1738281,-0.83935547,0.15283203,-0.062683105,1.2480469,-0.3774414,-0.67333984,-0.21008301,-0.23217773,-0.65478516,0.024993896,2.3789062,0.74560547,-1.5136719,0.75683594,0.96484375,1.7861328,2.9179688,0.66259766,3.125,-0.34326172,1.1611328,1.2402344,0.75,-0.44311523,3.1074219,-0.7338867,-0.7866211,-1.3017578,1.6201172,1.2138672,0.46899414,-0.66503906,0.2602539,-0.88671875,-1.578125,-0.29907227,0.7832031,1.0302734,-0.39794922,0.64501953,-2.2324219,0.08251953,-1.6367188,-0.45874023,-0.18359375,-0.37670898,-2.7363281,0.21130371,-0.29907227,0.039398193,1.5888672,-0.640625,0.33520508,-1.4970703,-0.4963379,0.44848633,0.22888184,-0.7260742,0.02947998,-0.60839844,-1.6484375,-0.20361328,0.049743652,-0.02468872,0.62939453,2.171875,2.6152344,-0.33789062,-0.3647461,2.46875,0.77490234,1.2724609,0.5410156,-1.6923828,-2.1328125,1.6953125,0.9082031,0.82714844,1.8779297,-0.49731445,0.33325195,-0.9560547,-0.33764648,-1.5498047,0.89160156,0.2253418,-1.0419922,-1.2548828,1.3320312,3.7207031,-4.0351562,-2.359375,0.25097656,0.4741211,-0.40576172,1.8691406,0.5239258,0.62158203,-0.3383789,0.18786621,0.49438477,0.86816406,1.5927734,1.8095703,-1.0302734,-0.7626953,0.40551758,-1.8085938,-0.095703125,-2.625,1.1923828,-0.4111328,0.9433594,-1.3642578,-1.5058594,-0.9770508,-0.95458984,0.6352539,1.3183594,-0.3178711,-0.38598633,0.29125977,0.6772461,-2.0898438,0.81396484,-1.3037109,2.84375,0.71972656,-2.3632812,-2.375,-0.7055664,-1.2050781,-0.80615234,0.9423828,-1.8681641,0.39404297,0.55126953,0.74902344,-0.24401855,1.2265625,1.1142578,-1.5556641,1.0166016,-0.002216339,-0.96435547,-0.8574219,-0.64160156,-1.2568359,0.4326172,-2.4199219,-1.6748047,1.3847656,-0.25805664,1.2548828,-0.8286133,-1.1748047,0.35864258,-0.4321289,0.9477539,-0.5239258,0.2709961,0.84228516,-1.0507812,0.72265625,-5.3046875,-0.68066406,1.0771484,-0.6489258,-0.15112305,-1.2089844,-2.1425781,-0.19726562,-0.7651367,0.8251953,1.7929688,1.0732422,0.75439453,-2.2617188,-1.8837891,-0.89746094,-0.3696289,-0.765625,-2.0488281,0.7001953,-1.3115234,1.1328125,-1.1386719,1.1464844,0.09222412,0.037139893,-2.453125,-3.0917969,3.2851562,-0.3540039,-0.21533203,-0.6567383,-0.79248047,-0.3527832,-1.8261719,-0.1574707,0.9160156,0.49047852,-2.6425781,-0.53808594,-0.9057617,2.1503906,1.5332031,-1.0585938,0.65478516,-0.77685547,1.34375,1.8544922,-0.89453125,2.6308594,-0.30493164,1.8515625,2.1933594,-1.2949219,-0.18273926,0.8671875,1.6923828,1.0253906,-2.0097656,1.1425781,-0.6977539,-1.1748047,-0.13879395,0.9423828,0.60498047,-0.49267578,0.053253174,-0.9326172,1.7578125,-0.081726074,-0.06689453,1.1767578,0.7993164,-0.14990234,1.0351562,0.6010742,1.2958984,0.31689453,-0.79248047,-0.85595703,0.8623047,1.2001953,-0.97753906,-1.9257812,-0.2607422,-1.1796875,-2.3945312,-0.5444336,-0.009963989,-1.2490234,-0.6035156,-2.1035156,-0.33569336,0.73876953,-0.076660156,-0.87109375,0.21459961,1.6572266,-0.63378906,1.2998047,-2.3769531,-2.1601562,-1.6953125,-0.9560547,1.5166016,2.7851562,0.85839844,0.13183594,1.2373047,-0.39282227,1.4228516,-1.4414062,-1.9453125,-0.6616211,0.19104004,-0.06390381,0.22216797,1.4101562,1.1572266,-2.0722656,-1.40625,0.25512695,0.7373047,-0.35766602,-0.52001953,-2.1308594,1.0097656,0.23205566,-0.06085205,-0.24072266,-1.2246094,-0.04309082,0.2841797,-0.014259338,-1.5195312,2.1523438,-1.0195312,-0.38256836,-0.085510254,0.008720398,0.69384766,0.7182617,1.1132812,-1.0273438,-1.2421875,1.0351562,1.0849609,-1.2939453,2.1738281,-0.52490234,0.20373535,-0.6279297,-0.43041992,-0.28710938,-3.2871094,0.609375,1.0273438,-0.33911133,0.6826172,1.0058594,-0.85302734,0.51220703,-0.77197266,0.7373047,-0.097351074,-1.2929688,0.94628906,-1.6875,1.5927734,0.033111572,-1.1132812,-1.7128906,0.50146484,0.5,0.2783203,0.046875,-0.4050293,-0.08868408,-1.9316406,-0.5136719,-0.48291016,-0.20422363,-0.56933594,1.3242188,-1.9238281,-0.5439453,1.4257812,0.4658203,2.5742188,-0.0052757263,0.7319336,1.8027344,-0.054229736,-1.4599609,-1.1201172,-0.008415222,-2.1914062,-0.68847656,0.30273438,-1.7402344,0.9291992,1.5654297,-1.7167969,-2.0703125,0.4736328,2.7617188,0.79785156,-0.0008125305,-0.31762695,-1.25,-2.0429688,2.3652344,-0.9165039,-2.3945312,0.020111084,-1.2871094,-0.67529297,-0.9013672,-0.7963867,0.24499512,0.41357422,-1.3857422,-0.10974121,-1.4892578,-0.95751953,-0.47045898,1.3027344,2.6308594,0.03616333,0.21618652,5.4492188,-0.51464844,-0.37890625,0.32348633,-1.0097656,-1.1582031,1.4560547,-1.6123047,2.1875,1.2675781,0.5864258,-1.1660156,-1.7041016,-1.2099609,-0.88183594,-1.9501953,-1.4042969,0.078308105,0.25146484,-0.22619629,-1.1279297,0.4091797,3.0625,-0.16552734,1.6738281,0.22241211,0.46899414,0.39746094,0.36523438,-0.9404297,2.0605469,-1.2695312,0.26660156,-0.71191406,2.1464844,-1.484375,0.87890625,-0.9741211,-0.6035156,0.037872314,-0.7553711,2.3125,6.3320312,1.0742188,0.1262207,1.3613281,-2.7363281,-0.6147461,-0.42211914,-0.97216797,0.91503906,-1.6513672,-1.09375,0.78466797,-0.20483398,0.21936035,0.040649414,0.5996094,0.5131836,2.0214844,1.0800781,-1.5595703,-0.7373047,0.22192383,2.03125,-0.8408203,-0.20678711,1.3515625,-0.4362793,0.45410156,1.171875,0.09094238,0.61328125,0.76123047,0.61621094,1.1103516,1.9238281,2.5898438,0.96533203,1.1914062,0.92578125,0.26782227,1.3408203,-0.55615234,-2.8730469,-0.4140625,1.1015625,1.0283203,-1.3808594,0.2861328,0.90625,3.0488281,1.5839844,-0.67333984,1.5009766,-0.07330322,-0.8510742,-2.6035156,-1.1660156,0.38110352,-0.6640625,-1.2041016,-1.4345703,0.7373047,-3.0664062,0.7553711,0.21154785,1.3320312,0.8378906,0.28027344,-1.3339844,-0.056243896,1.0498047,1.7978516,1.2792969,2.3085938,1.1640625,-1.4335938,-0.82470703,-0.068725586,4.4335938,-1.3759766,0.19470215,-1.9335938,0.6152344,-0.86279297,1.1972656,0.7636719,-0.7871094,1.4121094,-0.71728516,-0.18823242,2.5019531,-0.2668457,0.57958984,-0.24035645,-1.0791016,1.484375,2.640625,-0.7504883,-0.796875,-2.1328125,-0.103881836,0.20422363,-0.16821289,-1.7910156,1.3798828,1.0585938,0.37646484,2.6933594,-0.7402344,1.0654297,0.94384766,1.6162109,0.9169922,1.4140625,-0.20666504,0.5058594,-0.7602539,-1.9560547,0.22009277,1.3271484,-1.0087891,1.8886719,-1.3818359,0.61865234,-0.6928711,-1.1875,1.4316406,-1.1308594,1.9462891,0.10662842,-0.46606445,0.61035156,-0.29663086,2.5625,-0.87646484,-0.117004395,-3.140625,-1.6230469,-0.99121094,-0.18151855,1.7871094,-0.93847656,0.17370605,1.6738281,-0.41967773,-1.6337891,0.56591797,-0.7211914,0.06329346,1.3486328,-0.07861328,0.7050781,-1.0351562,1.3457031,-1.3505859,0.7792969
3
- 17dc2bbc-acc9-11ed-88b9-8a2dec87980d,test2,$2b$12$lYhX8FaSplhaTJ1xnJoBFO70BbAu/sMgaX2kiqFSHroAWvJCisz7u,test2@gmail.com,candidate,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
 
1
+ id,username,password,email,account_type,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767
2
+ 641f876e-acc7-11ed-8b05-8a2dec87980d,test1,$2b$12$ziIVglNbgdsKmNMeLuNCY.6D5CwJMKS9n7eiUXNtSE4w35CmO9UeC,test1@gmail.com,candidate,0.9682617,0.9609375,0.7294922,-2.0058594,-0.12298584,-0.7705078,-1.1816406,0.50439453,1.3583984,-0.21020508,1.4619141,-1.1542969,-1.4482422,-0.71533203,-1.4423828,0.08679199,1.1484375,-0.30981445,0.3310547,0.4855957,1.1083984,0.49121094,-0.38989258,0.005828857,0.32788086,3.859375,1.5410156,-2.0742188,0.19763184,1.7324219,0.49267578,1.53125,0.51220703,-0.015586853,-0.9316406,-1.15625,0.94384766,-0.6015625,-1.0126953,-0.47485352,-2.1933594,0.3852539,0.18762207,1.1689453,-1.0566406,0.9355469,-1.6308594,-0.7080078,1.8203125,0.60839844,0.91064453,0.034332275,-1.5517578,1.3427734,-0.10437012,-0.5234375,-1.9541016,-0.28930664,0.44702148,0.40527344,-0.85595703,1.8486328,-0.4958496,0.21777344,-1.1582031,-0.12792969,0.1583252,0.4428711,-1.5380859,0.04006958,1.3720703,0.9506836,0.4260254,-0.42578125,1.4541016,0.8198242,-1.3818359,-1.5048828,0.67529297,0.05130005,0.58496094,0.92285156,-1.4091797,-0.31201172,-0.19006348,-0.9272461,-2.0703125,-0.7714844,0.020629883,-0.74902344,0.76953125,-2.1855469,0.55078125,-0.4741211,-1.0634766,0.51660156,1.8027344,-1.3691406,-0.25976562,-2.0800781,0.8989258,-1.3193359,0.9345703,0.22192383,0.7680664,0.35986328,1.5126953,-1.1123047,-2.1484375,-0.43481445,0.15075684,-0.22314453,2.7011719,-0.4638672,0.22375488,2.8398438,0.31958008,-1.0498047,-0.64501953,-1.4697266,0.9057617,0.47851562,0.45825195,-0.044525146,-0.09863281,-0.8208008,0.2854004,-2.03125,-0.7167969,0.77685547,-0.8461914,-0.34716797,3.0898438,0.953125,4.0859375,0.56396484,-1.4267578,0.18444824,1.3720703,0.22998047,0.002439499,1.1826172,-0.39453125,2.8613281,1.1025391,-1.1201172,0.8041992,-0.64453125,-1.1367188,-0.8955078,-2.2910156,-1.9912109,-1.3486328,0.49658203,-1.6757812,0.98876953,0.84765625,0.5283203,0.29467773,0.77978516,-0.53125,-0.5991211,2.4003906,0.7451172,0.75390625,1.0185547,1.9931641,0.32836914,-0.4152832,-2.7558594,1.3349609,-1.0410156,0.7133789,1.0878906,0.4025879,-1.0283203,-0.64453125,-3.3496094,0.38061523,-1.6865234,-0.13000488,-1.3046875,2.6152344,0.26000977,-0.8222656,-0.71484375,0.81103516,1.0927734,-2.0058594,1.1396484,0.8129883,-1.421875,-0.53466797,-0.7788086,-0.5961914,-0.24536133,1.6044922,0.55908203,4.0664062,-0.19848633,1.3046875,-0.23669434,-1.4833984,-1.8994141,0.9057617,1.0849609,-0.3112793,-0.92578125,-0.2685547,1.6689453,-1.3339844,-2,0.47387695,0.011543274,0.8129883,1.7851562,-0.62597656,0.6767578,1.7607422,-0.1105957,0.5830078,-2.6972656,-0.47924805,-2.2089844,-1.7148438,-1.5615234,-2.125,0.091796875,0.7993164,-0.1496582,-0.4584961,-1.4326172,1.0097656,2.5898438,1.1689453,-0.63671875,-0.69677734,2.3652344,0.2355957,0.04776001,0.5517578,0.95458984,-1.4453125,-0.7705078,-0.6425781,-0.8105469,0.85302734,-0.5620117,-0.91503906,-0.90234375,1.7978516,0.9506836,-0.25976562,-1.1328125,-1.9951172,-0.7734375,-0.5834961,-0.22253418,0.26489258,-0.79541016,-1.7089844,-1.5292969,1.2998047,0.0927124,0.48632812,0.50146484,-1.8876953,-0.42822266,0.42651367,0.8144531,0.9038086,0.56396484,6.75,0.6220703,0.7939453,0.11853027,1.9326172,-0.5786133,-1.8408203,0.02192688,0.5444336,-1.7832031,0.34228516,0.8359375,1.9648438,-0.26123047,-2.0253906,-0.296875,1.2431641,-0.6982422,-2.1347656,-0.67822266,-0.40649414,-1.9326172,-0.2668457,0.57177734,-0.9379883,0.2841797,-1.4775391,-0.24157715,-1.0292969,0.48364258,-0.12451172,-0.98339844,0.121032715,1.2832031,-0.5683594,-1.7753906,-0.6166992,0.39990234,-1.71875,-1.6435547,-0.7397461,1.2861328,0.5024414,-1.3955078,-0.1541748,-1.7392578,-1.2441406,-3.2617188,-0.15698242,-1.734375,-0.9267578,-0.09893799,-0.6767578,-1.6533203,1.3076172,-2.3730469,1.9287109,0.9609375,0.25512695,1.7353516,-1.4121094,0.92089844,0.30273438,0.60839844,1.1171875,0.3227539,-1.4785156,-2.4042969,-0.4873047,1.3925781,-3.34375,-0.24243164,-1.0273438,0.5546875,-0.74902344,1.3916016,1.6738281,-0.51416016,1.3701172,-1.2246094,2.1152344,-1.1757812,1.7431641,1.9726562,2.4355469,0.4025879,-2.6386719,2.5019531,-0.3581543,-0.45117188,-4.0429688,-0.4165039,0.69091797,-0.9321289,0.15808105,-2.2910156,1.0244141,0.33154297,-1.0126953,2.328125,-0.23034668,0.107910156,0.6713867,-0.14404297,0.17163086,-1.5351562,-0.6225586,-2.4257812,1.9492188,0.34155273,-0.068115234,0.94091797,-1.9912109,0.50439453,-0.17114258,-0.12658691,-0.8339844,-0.6767578,1.1279297,-0.57128906,3.0136719,1.6484375,-0.66308594,-1.3720703,1.5595703,1.2666016,0.13024902,0.18237305,0.57714844,0.35766602,-1.2490234,1.3564453,-0.52001953,1.0117188,-1.6005859,-0.8173828,-0.97802734,-2.4707031,0.93603516,-1.8339844,1.0703125,0.8623047,0.0725708,-0.23132324,-1.0908203,-1.6308594,-1.8134766,1.0810547,1.3554688,2.0859375,0.13549805,0.41235352,0.2130127,-0.58496094,0.7597656,-0.27612305,-2.0644531,1.3984375,-1.5107422,0.33129883,1.0097656,1.5253906,-1.0429688,-2.7460938,1.3486328,1.1884766,-0.11981201,-0.54785156,0.4729004,-0.6713867,0.93847656,1.4541016,0.20739746,3.984375,1.6875,1.0683594,-0.734375,1.6337891,-0.6123047,0.7817383,0.82470703,0.34326172,0.26098633,-1.0693359,0.16357422,-0.32006836,-0.57958984,-0.48657227,0.6303711,-0.83251953,0.36621094,-0.36987305,0.002136231,0.57958984,1.8554688,0.1619873,0.62158203,-1.4472656,-0.44726562,1.2744141,-0.36035156,-0.6586914,-0.6689453,1.2958984,-1.984375,0.88134766,0.55566406,5.6445312,-0.6767578,-0.05923462,-1.7529297,1.0556641,-0.67285156,1.8017578,0.32006836,1.0009766,0.50341797,-0.58984375,-1.7675781,-1.3544922,-0.92089844,-0.7949219,1.2421875,-1.2861328,0.15979004,-0.6958008,1.5664062,1.1591797,0.119262695,-0.07537842,0.5878906,-0.8198242,-0.20166016,-1.5361328,1.0517578,-0.6948242,0.3293457,-0.06878662,-1.2197266,1.7070312,0.74316406,1.2119141,-1.9345703,0.68115234,-1.2529297,-0.7636719,1.1337891,-2.2246094,0.07720947,-2.1953125,-0.1829834,-1.7861328,-0.43481445,3.7792969,-1.5703125,0.12182617,1.1953125,1.6074219,6.28125,0.073913574,0.39746094,-1.4892578,-0.7163086,1.8027344,-0.22216797,-0.7158203,2.1328125,-1.0419922,1.2451172,0.08856201,0.10308838,-2.1894531,0.21972656,1.7636719,0.96972656,-0.000500679,-1.1357422,0.8491211,-0.53125,-0.17456055,0.5620117,0.13500977,1.7265625,0.72265625,1.7587891,1.1074219,0.40307617,-0.05633545,-2.2421875,-0.81396484,-1.4345703,1.4160156,1.0585938,0.5449219,2.7265625,-1.3310547,0.103393555,0.28076172,-0.6376953,-0.6479492,0.8886719,0.6982422,-1.1279297,-0.6069336,1.484375,0.24511719,-1.8173828,-0.32641602,-0.2626953,-0.39379883,-0.47338867,0.5991211,1.8681641,-0.1484375,-1.9970703,-1.5908203,0.19824219,-0.49780273,-1.7470703,2.7148438,-0.15893555,0.68066406,1.6308594,-0.008102417,-0.090026855,1.1181641,-2.0253906,0.10168457,0.024642944,0.5522461,-0.4975586,-1.6289062,0.453125,0.22436523,-1.0732422,-1.546875,2.2753906,2.3398438,-0.29785156,0.01373291,1.6240234,0.609375,-0.20959473,-1.4599609,0.9140625,0.57128906,-0.27001953,0.7373047,2.7773438,0.71728516,-1.6875,0.59033203,0.8857422,-2.0136719,-3.7851562,-0.25390625,-0.10479736,0.6074219,2.7734375,2.0566406,3.7792969,-0.42114258,1.4677734,0.4074707,-0.99560547,0.46557617,-1.4697266,-0.13122559,0.29125977,0.068481445,-0.25634766,2.34375,-0.20617676,-0.5917969,-0.7294922,-2.7363281,1.8251953,1.3085938,0.6376953,1.6992188,2.1699219,-0.08062744,0.6777344,-2.1796875,1.2050781,0.023895264,-2.4296875,0.37426758,-1.109375,0.20178223,-1.3486328,-1.2851562,0.65478516,-0.63720703,1.0849609,-2.6484375,-0.69970703,1.6259766,-0.13952637,1.0966797,-2.3320312,0.07470703,0.24829102,-0.36743164,0.9165039,-0.96972656,-0.01424408,-0.40356445,-0.33447266,-0.9916992,0.3388672,0.38110352,0.6699219,-0.56103516,0.2788086,-0.58447266,0.4946289,5.171875,2.3007812,-2.6621094,-1.0029297,0.93310547,1.4394531,-1.3154297,-0.17053223,0.23352051,-0.19238281,-0.5571289,-0.20300293,0.4855957,1.5966797,1.75,-1.6494141,1.1992188,-0.4958496,-2.40625,-1.828125,0.671875,-0.59814453,1.2646484,0.023422241,1,2.3789062,-2.1660156,1.0390625,0.79833984,0.328125,-0.43969727,1.8818359,0.2644043,-0.69433594,-0.38305664,1.1660156,-0.078552246,-1.6337891,-0.20043945,0.10284424,-0.29125977,-1.6826172,-0.75878906,2.0957031,-2.3984375,-0.9501953,-0.6142578,0.9345703,-0.359375,-1.7773438,-1.4892578,0.48339844,0.875,1.1904297,-0.24523926,0.20043945,0.13562012,-1.9140625,0.50634766,-0.33642578,-0.5366211,2.0820312,0.5390625,-0.46411133,0.6513672,-2.4785156,-1.5195312,-0.29541016,-0.86816406,-0.7211914,0.25512695,-0.07714844,-1.8925781,5.5390625,0.35107422,1.3808594,0.7739258,-0.9272461,-2.5761719
 
static/{neural_chat_tSNE_dat.csv → st5_tSNE_dat.csv} RENAMED
The diff for this file is too large to render. See raw diff