glim_ai 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +25 -0
- data/Gemfile.lock +49 -0
- data/LICENSE.txt +21 -0
- data/README.md +125 -0
- data/Rakefile +31 -0
- data/examples/autocode/autocode.rb +166 -0
- data/examples/autocode/solargraph_test.rb +59 -0
- data/examples/autocode/templates/changed_files_now_evaluate_output.erb +29 -0
- data/examples/autocode/templates/task.erb +16 -0
- data/examples/calc/calc.rb +50 -0
- data/examples/code_competition/code_competition.rb +78 -0
- data/examples/code_competition/output/python_claude-2.rb +33 -0
- data/examples/code_competition/output/python_claude-instant-1.rb +18 -0
- data/examples/code_competition/output/python_gpt-3.5-turbo-16k.rb +69 -0
- data/examples/code_competition/output/python_gpt-3.5-turbo.rb +43 -0
- data/examples/code_competition/output/python_gpt-4.rb +34 -0
- data/examples/code_competition/output/ruby_claude-2.rb +22 -0
- data/examples/code_competition/output/ruby_claude-instant-1.rb +20 -0
- data/examples/code_competition/output/ruby_gpt-3.5-turbo-16k.rb +27 -0
- data/examples/code_competition/output/ruby_gpt-3.5-turbo.rb +30 -0
- data/examples/code_competition/output/ruby_gpt-4.rb +31 -0
- data/examples/code_competition/output/ruby_human.rb +41 -0
- data/examples/code_competition/templates/analyze_code.erb +33 -0
- data/examples/code_competition/templates/write_code.erb +26 -0
- data/examples/glim_demo/ask_all.rb +35 -0
- data/examples/glim_demo/templates/rate_all.erb +24 -0
- data/examples/improve_prompt/improve_prompt.rb +62 -0
- data/examples/improve_prompt/templates/stashed/prompt_attempt_explicit_steps.erb +15 -0
- data/examples/improve_prompt/templates/stashed/prompt_attempt_explicit_steps_user_message.erb +15 -0
- data/examples/improve_prompt/templates/stashed/prompt_attempt_initial.erb +8 -0
- data/examples/improve_prompt/templates/stashed/prompt_attempt_nothing.erb +19 -0
- data/examples/improve_prompt/templates/try_code_first.erb +13 -0
- data/examples/improve_prompt/templates/try_code_first_system.erb +22 -0
- data/examples/old/econ/discounting.rb +27 -0
- data/examples/old/econ/templates/discounting.erb +10 -0
- data/examples/old/generate_glim_code/generate_glim_code.rb +34 -0
- data/examples/old/generate_glim_code/templates/generate_glim_code.erb +17 -0
- data/examples/old/generate_glim_code/templates/improve_code.erb +27 -0
- data/examples/old/glim_dev_tools/ask_code_question.rb +38 -0
- data/examples/old/glim_dev_tools/templates/ask_code_question.erb +12 -0
- data/examples/old/glim_dev_tools/templates/write_globals_test.erb +28 -0
- data/examples/old/glim_dev_tools/write_globals_test.rb +20 -0
- data/examples/old/linguistics/nine.rb +0 -0
- data/examples/old/rewrite_code/input/hello.py +1 -0
- data/examples/old/rewrite_code/input/subdir/hello.py +1 -0
- data/examples/old/rewrite_code/input/world.py +1 -0
- data/examples/old/rewrite_code/rewrite_code.rb +18 -0
- data/examples/old/rewrite_code/templates/rewrite_code.erb +32 -0
- data/examples/window_check/data.rb +1260 -0
- data/examples/window_check/fruits.rb +118 -0
- data/examples/window_check/tools.rb +56 -0
- data/examples/window_check/window_check.rb +214 -0
- data/glim_generated_tests/make_special_code_with_fixed_length_test.rb +44 -0
- data/glim_generated_tests/old-20230831120513-make_special_code_with_fixed_length_test.rb +1 -0
- data/glim_generated_tests/old-20230831121222-make_special_code_with_fixed_length_test.rb +55 -0
- data/glim_generated_tests/old-20230831124501-make_special_code_with_fixed_length_test.rb +33 -0
- data/glim_generated_tests/test/make_special_code_with_fixed_length_test.rb +58 -0
- data/lib/anthropic_request_details.rb +37 -0
- data/lib/anthropic_response.rb +101 -0
- data/lib/chat_request_details.rb +140 -0
- data/lib/chat_response.rb +303 -0
- data/lib/glim_ai/version.rb +5 -0
- data/lib/glim_ai.rb +8 -0
- data/lib/glim_ai_callable.rb +151 -0
- data/lib/glim_context.rb +62 -0
- data/lib/glim_helpers.rb +54 -0
- data/lib/glim_request.rb +266 -0
- data/lib/glim_response.rb +155 -0
- data/lib/globals.rb +255 -0
- data/lib/html_templates/chat_request.erb +86 -0
- data/sample.env +9 -0
- metadata +131 -0
@@ -0,0 +1,1260 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
def raw_fruits
|
4
|
+
$raw_fruits ||=
|
5
|
+
[
|
6
|
+
"apples",
|
7
|
+
"bananas",
|
8
|
+
"cherries",
|
9
|
+
"grapes",
|
10
|
+
"oranges",
|
11
|
+
"pears",
|
12
|
+
"plums",
|
13
|
+
"peaches",
|
14
|
+
"lemons",
|
15
|
+
"limes",
|
16
|
+
"mangoes",
|
17
|
+
"strawberries",
|
18
|
+
"raspberries",
|
19
|
+
"blueberries",
|
20
|
+
"kiwis",
|
21
|
+
"apricots",
|
22
|
+
"nectarines",
|
23
|
+
"watermelons",
|
24
|
+
"cantaloupes",
|
25
|
+
"honeydews",
|
26
|
+
"blackberries",
|
27
|
+
"papayas",
|
28
|
+
"pineapples",
|
29
|
+
"figs",
|
30
|
+
"dates",
|
31
|
+
"avocados",
|
32
|
+
"guavas",
|
33
|
+
"elderberries",
|
34
|
+
"currants",
|
35
|
+
"pomegranates",
|
36
|
+
"cranberries",
|
37
|
+
"lychees",
|
38
|
+
"persimmons",
|
39
|
+
"mulberries",
|
40
|
+
"boysenberries",
|
41
|
+
"tangerines",
|
42
|
+
"satsumas",
|
43
|
+
"grapefruits",
|
44
|
+
"quinces",
|
45
|
+
"gooseberries",
|
46
|
+
"lingonberries",
|
47
|
+
"peppers",
|
48
|
+
"tomatoes",
|
49
|
+
"cucumbers",
|
50
|
+
"onions",
|
51
|
+
"carrots",
|
52
|
+
"potatoes",
|
53
|
+
"sweetpotatoes",
|
54
|
+
"yams",
|
55
|
+
"turnips",
|
56
|
+
"beets",
|
57
|
+
"parsnips",
|
58
|
+
"rutabagas",
|
59
|
+
"radishes",
|
60
|
+
"eggplants",
|
61
|
+
"zucchinis",
|
62
|
+
"squashes",
|
63
|
+
"pumpkins",
|
64
|
+
"gourds",
|
65
|
+
"cabbages",
|
66
|
+
"cauliflowers",
|
67
|
+
"broccolis",
|
68
|
+
"kales",
|
69
|
+
"lettuces",
|
70
|
+
"kumquats",
|
71
|
+
"durians",
|
72
|
+
"tamarinds",
|
73
|
+
"plantains",
|
74
|
+
"coconuts",
|
75
|
+
"mangosteens",
|
76
|
+
"passionfruits",
|
77
|
+
"dragonfruits",
|
78
|
+
"rambutans",
|
79
|
+
"mirabelles",
|
80
|
+
"cempedaks",
|
81
|
+
"longans",
|
82
|
+
"jackfruits",
|
83
|
+
"jicamas",
|
84
|
+
"salsifies",
|
85
|
+
"artichokes",
|
86
|
+
"okras",
|
87
|
+
"asparagus",
|
88
|
+
"scallions",
|
89
|
+
"leeks",
|
90
|
+
"shallots",
|
91
|
+
"fennels",
|
92
|
+
"sorrels",
|
93
|
+
"cassavas",
|
94
|
+
"tamarillos",
|
95
|
+
"salak",
|
96
|
+
"loquats",
|
97
|
+
"medlars",
|
98
|
+
"damsons",
|
99
|
+
"pomelos",
|
100
|
+
"uglis",
|
101
|
+
"yuzu",
|
102
|
+
"jabuticabas",
|
103
|
+
"sapotes",
|
104
|
+
"youplons",
|
105
|
+
"cherimoyas"
|
106
|
+
].uniq[0..99]
|
107
|
+
end
|
108
|
+
|
109
|
+
def raw_names_biblical
|
110
|
+
$raw_names ||= [
|
111
|
+
"Abel",
|
112
|
+
"Abigail",
|
113
|
+
"Abner",
|
114
|
+
"Abraham",
|
115
|
+
"Adam",
|
116
|
+
"Adriel",
|
117
|
+
"Ahaz",
|
118
|
+
"Ahaziah",
|
119
|
+
"Ahimelech",
|
120
|
+
"Ahab",
|
121
|
+
"Amaziah",
|
122
|
+
"Amnon",
|
123
|
+
"Amos",
|
124
|
+
"Ananias",
|
125
|
+
"Andrew",
|
126
|
+
"Anna",
|
127
|
+
"Aquila",
|
128
|
+
"Asa",
|
129
|
+
"Asher",
|
130
|
+
"Balaam",
|
131
|
+
"Barnabas",
|
132
|
+
"Bartholomew",
|
133
|
+
"Baruch",
|
134
|
+
"Benjamin",
|
135
|
+
"Boaz",
|
136
|
+
"Caleb",
|
137
|
+
"Canaan",
|
138
|
+
"Chloe",
|
139
|
+
"Claudia",
|
140
|
+
"Cyrus",
|
141
|
+
"Daniel",
|
142
|
+
"Darius",
|
143
|
+
"David",
|
144
|
+
"Deborah",
|
145
|
+
"Delilah",
|
146
|
+
"Dinah",
|
147
|
+
"Dorcas",
|
148
|
+
"Ehud",
|
149
|
+
"Elah",
|
150
|
+
"Eli",
|
151
|
+
"Eliakim",
|
152
|
+
"Elijah",
|
153
|
+
"Elisha",
|
154
|
+
"Elizabeth",
|
155
|
+
"Ephraim",
|
156
|
+
"Esau",
|
157
|
+
"Esther",
|
158
|
+
"Ethan",
|
159
|
+
"Eunice",
|
160
|
+
"Eve",
|
161
|
+
"Ezekiel",
|
162
|
+
"Ezra",
|
163
|
+
"Felix",
|
164
|
+
"Gideon",
|
165
|
+
"Hagar",
|
166
|
+
"Haggai",
|
167
|
+
"Hannah",
|
168
|
+
"Hezekiah",
|
169
|
+
"Hiram",
|
170
|
+
"Hosea",
|
171
|
+
"Isaac",
|
172
|
+
"Isaiah",
|
173
|
+
"Ishmael",
|
174
|
+
"Jacob",
|
175
|
+
"Jairus",
|
176
|
+
"James",
|
177
|
+
"Japheth",
|
178
|
+
"Jedediah",
|
179
|
+
"Jehoshaphat",
|
180
|
+
"Jeremiah",
|
181
|
+
"Jeroboam",
|
182
|
+
"Jesse",
|
183
|
+
"Jezebel",
|
184
|
+
"Joash",
|
185
|
+
"Job",
|
186
|
+
"Joel",
|
187
|
+
"John",
|
188
|
+
"Jonah",
|
189
|
+
"Jonathan",
|
190
|
+
"Joseph",
|
191
|
+
"Joshua",
|
192
|
+
"Josiah",
|
193
|
+
"Judah",
|
194
|
+
"Julia",
|
195
|
+
"Keturah",
|
196
|
+
"Keziah",
|
197
|
+
"Laban",
|
198
|
+
"Leah",
|
199
|
+
"Levi",
|
200
|
+
"Lois",
|
201
|
+
"Luke",
|
202
|
+
"Lydia",
|
203
|
+
"Malachi",
|
204
|
+
"Manasseh",
|
205
|
+
"Mark",
|
206
|
+
"Martha",
|
207
|
+
"Mary",
|
208
|
+
"Matthew",
|
209
|
+
"Methuselah",
|
210
|
+
"Micah",
|
211
|
+
"Miriam",
|
212
|
+
"Mordecai",
|
213
|
+
"Moses",
|
214
|
+
"Naaman",
|
215
|
+
"Nahum",
|
216
|
+
"Nathan",
|
217
|
+
"Nathanael",
|
218
|
+
"Nebuchadnezzar",
|
219
|
+
"Nicodemus",
|
220
|
+
"Noah",
|
221
|
+
"Obadiah",
|
222
|
+
"Othniel",
|
223
|
+
"Paul",
|
224
|
+
"Peter",
|
225
|
+
"Philip",
|
226
|
+
"Priscilla",
|
227
|
+
"Rachel",
|
228
|
+
"Rahab",
|
229
|
+
"Rebecca",
|
230
|
+
"Reuben",
|
231
|
+
"Ruth",
|
232
|
+
"Samson",
|
233
|
+
"Samuel",
|
234
|
+
"Sarah",
|
235
|
+
"Saul",
|
236
|
+
"Seth",
|
237
|
+
"Silas",
|
238
|
+
"Simon",
|
239
|
+
"Solomon",
|
240
|
+
"Stephen",
|
241
|
+
"Susanna",
|
242
|
+
"Tabitha",
|
243
|
+
"Thaddeus",
|
244
|
+
"Thomas",
|
245
|
+
"Timothy",
|
246
|
+
"Titus",
|
247
|
+
"Tobiah",
|
248
|
+
"Uriah",
|
249
|
+
"Zacchaeus",
|
250
|
+
"Zachariah",
|
251
|
+
"Zebulun",
|
252
|
+
"Zephaniah",
|
253
|
+
"Zerubbabel"
|
254
|
+
].uniq[0..99]
|
255
|
+
end
|
256
|
+
|
257
|
+
|
258
|
+
def raw_names
|
259
|
+
%w(
|
260
|
+
Liam
|
261
|
+
Noah
|
262
|
+
Oliver
|
263
|
+
James
|
264
|
+
Elijah
|
265
|
+
William
|
266
|
+
Henry
|
267
|
+
Lucas
|
268
|
+
Benjamin
|
269
|
+
Theodore
|
270
|
+
Mateo
|
271
|
+
Levi
|
272
|
+
Sebastian
|
273
|
+
Daniel
|
274
|
+
Jack
|
275
|
+
Michael
|
276
|
+
Alexander
|
277
|
+
Owen
|
278
|
+
Asher
|
279
|
+
Samuel
|
280
|
+
Ethan
|
281
|
+
Leo
|
282
|
+
Jackson
|
283
|
+
Mason
|
284
|
+
Ezra
|
285
|
+
John
|
286
|
+
Hudson
|
287
|
+
Luca
|
288
|
+
Aiden
|
289
|
+
Joseph
|
290
|
+
David
|
291
|
+
Jacob
|
292
|
+
Logan
|
293
|
+
Luke
|
294
|
+
Julian
|
295
|
+
Gabriel
|
296
|
+
Grayson
|
297
|
+
Wyatt
|
298
|
+
Matthew
|
299
|
+
Maverick
|
300
|
+
Dylan
|
301
|
+
Isaac
|
302
|
+
Elias
|
303
|
+
Anthony
|
304
|
+
Thomas
|
305
|
+
Jayden
|
306
|
+
Carter
|
307
|
+
Santiago
|
308
|
+
Ezekiel
|
309
|
+
Charles
|
310
|
+
Josiah
|
311
|
+
Caleb
|
312
|
+
Cooper
|
313
|
+
Lincoln
|
314
|
+
Miles
|
315
|
+
Christopher
|
316
|
+
Nathan
|
317
|
+
Isaiah
|
318
|
+
Kai
|
319
|
+
Joshua
|
320
|
+
Andrew
|
321
|
+
Angel
|
322
|
+
Adrian
|
323
|
+
Cameron
|
324
|
+
Nolan
|
325
|
+
Waylon
|
326
|
+
Jaxon
|
327
|
+
Roman
|
328
|
+
Eli
|
329
|
+
Wesley
|
330
|
+
Aaron
|
331
|
+
Ian
|
332
|
+
Christian
|
333
|
+
Ryan
|
334
|
+
Leonardo
|
335
|
+
Brooks
|
336
|
+
Axel
|
337
|
+
Walker
|
338
|
+
Jonathan
|
339
|
+
Easton
|
340
|
+
Everett
|
341
|
+
Weston
|
342
|
+
Bennett
|
343
|
+
Robert
|
344
|
+
Jameson
|
345
|
+
Landon
|
346
|
+
Silas
|
347
|
+
Jose
|
348
|
+
Beau
|
349
|
+
Micah
|
350
|
+
Colton
|
351
|
+
Jordan
|
352
|
+
Jeremiah
|
353
|
+
Parker
|
354
|
+
Greyson
|
355
|
+
Rowan
|
356
|
+
Adam
|
357
|
+
Nicholas
|
358
|
+
Theo
|
359
|
+
Xavier
|
360
|
+
Hunter
|
361
|
+
Dominic
|
362
|
+
Jace
|
363
|
+
Gael
|
364
|
+
River
|
365
|
+
Thiago
|
366
|
+
Kayden
|
367
|
+
Damian
|
368
|
+
August
|
369
|
+
Carson
|
370
|
+
Austin
|
371
|
+
Myles
|
372
|
+
Amir
|
373
|
+
Declan
|
374
|
+
Emmett
|
375
|
+
Ryder
|
376
|
+
Luka
|
377
|
+
Connor
|
378
|
+
Jaxson
|
379
|
+
Milo
|
380
|
+
Enzo
|
381
|
+
Giovanni
|
382
|
+
Vincent
|
383
|
+
Diego
|
384
|
+
Luis
|
385
|
+
Archer
|
386
|
+
Harrison
|
387
|
+
Kingston
|
388
|
+
Atlas
|
389
|
+
Jasper
|
390
|
+
Sawyer
|
391
|
+
Legend
|
392
|
+
Lorenzo
|
393
|
+
Evan
|
394
|
+
Jonah
|
395
|
+
Chase
|
396
|
+
Bryson
|
397
|
+
Adriel
|
398
|
+
Nathaniel
|
399
|
+
Arthur
|
400
|
+
Juan
|
401
|
+
George
|
402
|
+
Cole
|
403
|
+
Zion
|
404
|
+
Jason
|
405
|
+
Ashton
|
406
|
+
Carlos
|
407
|
+
Calvin
|
408
|
+
Brayden
|
409
|
+
Elliot
|
410
|
+
Rhett
|
411
|
+
Emiliano
|
412
|
+
Ace
|
413
|
+
Jayce
|
414
|
+
Graham
|
415
|
+
Max
|
416
|
+
Braxton
|
417
|
+
Leon
|
418
|
+
Ivan
|
419
|
+
Hayden
|
420
|
+
Jude
|
421
|
+
Malachi
|
422
|
+
Dean
|
423
|
+
Tyler
|
424
|
+
Jesus
|
425
|
+
Zachary
|
426
|
+
Kaiden
|
427
|
+
Elliott
|
428
|
+
Arlo
|
429
|
+
Emmanuel
|
430
|
+
Ayden
|
431
|
+
Bentley
|
432
|
+
Maxwell
|
433
|
+
Amari
|
434
|
+
Ryker
|
435
|
+
Finn
|
436
|
+
Antonio
|
437
|
+
Charlie
|
438
|
+
Maddox
|
439
|
+
Justin
|
440
|
+
Judah
|
441
|
+
Kevin
|
442
|
+
Dawson
|
443
|
+
Matteo
|
444
|
+
Miguel
|
445
|
+
Zayden
|
446
|
+
Camden
|
447
|
+
Messiah
|
448
|
+
Alan
|
449
|
+
Alex
|
450
|
+
Nicolas
|
451
|
+
Felix
|
452
|
+
Alejandro
|
453
|
+
Jesse
|
454
|
+
Beckett
|
455
|
+
Matias
|
456
|
+
Tucker
|
457
|
+
Emilio
|
458
|
+
Xander
|
459
|
+
Knox
|
460
|
+
Oscar
|
461
|
+
Beckham
|
462
|
+
Timothy
|
463
|
+
Abraham
|
464
|
+
Andres
|
465
|
+
Gavin
|
466
|
+
Brody
|
467
|
+
Barrett
|
468
|
+
Hayes
|
469
|
+
Jett
|
470
|
+
Brandon
|
471
|
+
Joel
|
472
|
+
Victor
|
473
|
+
Peter
|
474
|
+
Abel
|
475
|
+
Edward
|
476
|
+
Karter
|
477
|
+
Patrick
|
478
|
+
Richard
|
479
|
+
Grant
|
480
|
+
Avery
|
481
|
+
King
|
482
|
+
Caden
|
483
|
+
Adonis
|
484
|
+
Riley
|
485
|
+
Tristan
|
486
|
+
Kyrie
|
487
|
+
Blake
|
488
|
+
Eric
|
489
|
+
Griffin
|
490
|
+
Malakai
|
491
|
+
Rafael
|
492
|
+
Israel
|
493
|
+
Tate
|
494
|
+
Lukas
|
495
|
+
Nico
|
496
|
+
Marcus
|
497
|
+
Stetson
|
498
|
+
Javier
|
499
|
+
Colt
|
500
|
+
Omar
|
501
|
+
Simon
|
502
|
+
Kash
|
503
|
+
Remington
|
504
|
+
Jeremy
|
505
|
+
Louis
|
506
|
+
Mark
|
507
|
+
Lennox
|
508
|
+
Callum
|
509
|
+
Kairo
|
510
|
+
Nash
|
511
|
+
Kyler
|
512
|
+
Dallas
|
513
|
+
Crew
|
514
|
+
Preston
|
515
|
+
Paxton
|
516
|
+
Steven
|
517
|
+
Zane
|
518
|
+
Kaleb
|
519
|
+
Lane
|
520
|
+
Phoenix
|
521
|
+
Paul
|
522
|
+
Cash
|
523
|
+
Kenneth
|
524
|
+
Bryce
|
525
|
+
Ronan
|
526
|
+
Kaden
|
527
|
+
Maximiliano
|
528
|
+
Walter
|
529
|
+
Maximus
|
530
|
+
Emerson
|
531
|
+
Hendrix
|
532
|
+
Jax
|
533
|
+
Atticus
|
534
|
+
Zayn
|
535
|
+
Tobias
|
536
|
+
Cohen
|
537
|
+
Aziel
|
538
|
+
Kayson
|
539
|
+
Rory
|
540
|
+
Brady
|
541
|
+
Finley
|
542
|
+
Holden
|
543
|
+
Jorge
|
544
|
+
Malcolm
|
545
|
+
Clayton
|
546
|
+
Niko
|
547
|
+
Francisco
|
548
|
+
Josue
|
549
|
+
Brian
|
550
|
+
Bryan
|
551
|
+
Cade
|
552
|
+
Colin
|
553
|
+
Andre
|
554
|
+
Cayden
|
555
|
+
Aidan
|
556
|
+
Muhammad
|
557
|
+
Derek
|
558
|
+
Ali
|
559
|
+
Elian
|
560
|
+
Bodhi
|
561
|
+
Cody
|
562
|
+
Jensen
|
563
|
+
Damien
|
564
|
+
Martin
|
565
|
+
Cairo
|
566
|
+
Ellis
|
567
|
+
Khalil
|
568
|
+
Otto
|
569
|
+
Zander
|
570
|
+
Dante
|
571
|
+
Ismael
|
572
|
+
Angelo
|
573
|
+
Brantley
|
574
|
+
Manuel
|
575
|
+
Colson
|
576
|
+
Cruz
|
577
|
+
Tatum
|
578
|
+
Jaylen
|
579
|
+
Jaden
|
580
|
+
Erick
|
581
|
+
Cristian
|
582
|
+
Romeo
|
583
|
+
Milan
|
584
|
+
Reid
|
585
|
+
Cyrus
|
586
|
+
Leonel
|
587
|
+
Joaquin
|
588
|
+
Ari
|
589
|
+
Odin
|
590
|
+
Orion
|
591
|
+
Ezequiel
|
592
|
+
Gideon
|
593
|
+
Daxton
|
594
|
+
Warren
|
595
|
+
Casey
|
596
|
+
Anderson
|
597
|
+
Spencer
|
598
|
+
Karson
|
599
|
+
Eduardo
|
600
|
+
Chance
|
601
|
+
Fernando
|
602
|
+
Raymond
|
603
|
+
Bradley
|
604
|
+
Cesar
|
605
|
+
Wade
|
606
|
+
Prince
|
607
|
+
Julius
|
608
|
+
Dakota
|
609
|
+
Kade
|
610
|
+
Koa
|
611
|
+
Raiden
|
612
|
+
Callan
|
613
|
+
Hector
|
614
|
+
Onyx
|
615
|
+
Remy
|
616
|
+
Ricardo
|
617
|
+
Edwin
|
618
|
+
Stephen
|
619
|
+
Kane
|
620
|
+
Saint
|
621
|
+
Titus
|
622
|
+
Desmond
|
623
|
+
Killian
|
624
|
+
Sullivan
|
625
|
+
Mario
|
626
|
+
Jay
|
627
|
+
Kamari
|
628
|
+
Luciano
|
629
|
+
Royal
|
630
|
+
Zyaire
|
631
|
+
Marco
|
632
|
+
Wilder
|
633
|
+
Russell
|
634
|
+
Nasir
|
635
|
+
Rylan
|
636
|
+
Archie
|
637
|
+
Jared
|
638
|
+
Gianni
|
639
|
+
Kashton
|
640
|
+
Kobe
|
641
|
+
Sergio
|
642
|
+
Travis
|
643
|
+
Marshall
|
644
|
+
Iker
|
645
|
+
Briggs
|
646
|
+
Gunner
|
647
|
+
Apollo
|
648
|
+
Bowen
|
649
|
+
Baylor
|
650
|
+
Sage
|
651
|
+
Tyson
|
652
|
+
Kyle
|
653
|
+
Oakley
|
654
|
+
Malik
|
655
|
+
Mathias
|
656
|
+
Sean
|
657
|
+
Armani
|
658
|
+
Hugo
|
659
|
+
Johnny
|
660
|
+
Sterling
|
661
|
+
Forrest
|
662
|
+
Harvey
|
663
|
+
Banks
|
664
|
+
Grady
|
665
|
+
Kameron
|
666
|
+
Jake
|
667
|
+
Franklin
|
668
|
+
Lawson
|
669
|
+
Tanner
|
670
|
+
Eden
|
671
|
+
Jaziel
|
672
|
+
Pablo
|
673
|
+
Reed
|
674
|
+
Pedro
|
675
|
+
Zayne
|
676
|
+
Royce
|
677
|
+
Edgar
|
678
|
+
Ibrahim
|
679
|
+
Winston
|
680
|
+
Ronin
|
681
|
+
Leonidas
|
682
|
+
Devin
|
683
|
+
Damon
|
684
|
+
Noel
|
685
|
+
Rhys
|
686
|
+
Clark
|
687
|
+
Corbin
|
688
|
+
Sonny
|
689
|
+
Colter
|
690
|
+
Esteban
|
691
|
+
Erik
|
692
|
+
Baker
|
693
|
+
Adan
|
694
|
+
Dariel
|
695
|
+
Kylo
|
696
|
+
Tripp
|
697
|
+
Caiden
|
698
|
+
Frank
|
699
|
+
Solomon
|
700
|
+
Major
|
701
|
+
Memphis
|
702
|
+
Quinn
|
703
|
+
Dax
|
704
|
+
Hank
|
705
|
+
Donovan
|
706
|
+
Finnegan
|
707
|
+
Nehemiah
|
708
|
+
Andy
|
709
|
+
Camilo
|
710
|
+
Asa
|
711
|
+
Jeffrey
|
712
|
+
Santino
|
713
|
+
Isaias
|
714
|
+
Jaiden
|
715
|
+
Kian
|
716
|
+
Fabian
|
717
|
+
Callen
|
718
|
+
Ruben
|
719
|
+
Alexis
|
720
|
+
Emanuel
|
721
|
+
Francis
|
722
|
+
Garrett
|
723
|
+
Kendrick
|
724
|
+
Matthias
|
725
|
+
Wells
|
726
|
+
Augustus
|
727
|
+
Jasiah
|
728
|
+
Alijah
|
729
|
+
Alonzo
|
730
|
+
Koda
|
731
|
+
Collin
|
732
|
+
Ford
|
733
|
+
Frederick
|
734
|
+
Jaxton
|
735
|
+
Kohen
|
736
|
+
Troy
|
737
|
+
Kason
|
738
|
+
Seth
|
739
|
+
Denver
|
740
|
+
Kyson
|
741
|
+
Ares
|
742
|
+
Raphael
|
743
|
+
Bodie
|
744
|
+
Sylas
|
745
|
+
Uriel
|
746
|
+
Zaiden
|
747
|
+
Shiloh
|
748
|
+
Lewis
|
749
|
+
Kieran
|
750
|
+
Marcos
|
751
|
+
Bo
|
752
|
+
Shepherd
|
753
|
+
Philip
|
754
|
+
Zaire
|
755
|
+
Gregory
|
756
|
+
Princeton
|
757
|
+
Roberto
|
758
|
+
Leland
|
759
|
+
Eithan
|
760
|
+
Moshe
|
761
|
+
Johnathan
|
762
|
+
Lucca
|
763
|
+
Kenzo
|
764
|
+
Mack
|
765
|
+
Porter
|
766
|
+
Kolton
|
767
|
+
Kaison
|
768
|
+
Valentino
|
769
|
+
Saul
|
770
|
+
Shane
|
771
|
+
Jamari
|
772
|
+
Rocco
|
773
|
+
Kylan
|
774
|
+
Deacon
|
775
|
+
Dalton
|
776
|
+
Moses
|
777
|
+
Callahan
|
778
|
+
Tadeo
|
779
|
+
Makai
|
780
|
+
Amiri
|
781
|
+
Rowen
|
782
|
+
Drew
|
783
|
+
Jalen
|
784
|
+
Kylian
|
785
|
+
Sutton
|
786
|
+
Dominick
|
787
|
+
Reece
|
788
|
+
Rodrigo
|
789
|
+
Soren
|
790
|
+
Kasen
|
791
|
+
Ridge
|
792
|
+
Zachariah
|
793
|
+
Jamir
|
794
|
+
Peyton
|
795
|
+
Omari
|
796
|
+
Trevor
|
797
|
+
Morgan
|
798
|
+
Izaiah
|
799
|
+
Alessandro
|
800
|
+
Kaysen
|
801
|
+
Enrique
|
802
|
+
Marcelo
|
803
|
+
Sincere
|
804
|
+
Lucian
|
805
|
+
Leandro
|
806
|
+
Armando
|
807
|
+
Braylen
|
808
|
+
Jayson
|
809
|
+
Julio
|
810
|
+
Lawrence
|
811
|
+
Cassius
|
812
|
+
Raul
|
813
|
+
Jase
|
814
|
+
Mohammad
|
815
|
+
Zain
|
816
|
+
Jayceon
|
817
|
+
Jonas
|
818
|
+
Ronald
|
819
|
+
Ayaan
|
820
|
+
Rio
|
821
|
+
Allen
|
822
|
+
Bruce
|
823
|
+
Mohamed
|
824
|
+
Dorian
|
825
|
+
Maximilian
|
826
|
+
Keegan
|
827
|
+
Shawn
|
828
|
+
Yusuf
|
829
|
+
Pierce
|
830
|
+
Ariel
|
831
|
+
Ander
|
832
|
+
Conor
|
833
|
+
Conrad
|
834
|
+
Phillip
|
835
|
+
Arjun
|
836
|
+
Roy
|
837
|
+
Moises
|
838
|
+
Arturo
|
839
|
+
Johan
|
840
|
+
Gerardo
|
841
|
+
Atreus
|
842
|
+
Nikolai
|
843
|
+
Braylon
|
844
|
+
Samson
|
845
|
+
Hezekiah
|
846
|
+
Kayce
|
847
|
+
Scott
|
848
|
+
Gunnar
|
849
|
+
Jamison
|
850
|
+
Samir
|
851
|
+
Keanu
|
852
|
+
Ledger
|
853
|
+
Jaime
|
854
|
+
Finnley
|
855
|
+
Cannon
|
856
|
+
Colby
|
857
|
+
Nikolas
|
858
|
+
Emmitt
|
859
|
+
Kamden
|
860
|
+
Miller
|
861
|
+
Boone
|
862
|
+
Hamza
|
863
|
+
Ocean
|
864
|
+
Mac
|
865
|
+
Anakin
|
866
|
+
Brixton
|
867
|
+
Roland
|
868
|
+
Huxley
|
869
|
+
Zeke
|
870
|
+
Danny
|
871
|
+
Marvin
|
872
|
+
Otis
|
873
|
+
Albert
|
874
|
+
Clay
|
875
|
+
Emir
|
876
|
+
Boston
|
877
|
+
Bruno
|
878
|
+
Lionel
|
879
|
+
Ozzy
|
880
|
+
Taylor
|
881
|
+
Jamie
|
882
|
+
Augustine
|
883
|
+
Chaim
|
884
|
+
Krew
|
885
|
+
Rayan
|
886
|
+
Alden
|
887
|
+
Bellamy
|
888
|
+
Amos
|
889
|
+
Drake
|
890
|
+
Davis
|
891
|
+
Dustin
|
892
|
+
Corey
|
893
|
+
Ahmad
|
894
|
+
Conner
|
895
|
+
Gustavo
|
896
|
+
Layton
|
897
|
+
Abram
|
898
|
+
Axton
|
899
|
+
Chandler
|
900
|
+
Azariah
|
901
|
+
Reese
|
902
|
+
Benson
|
903
|
+
Tru
|
904
|
+
Case
|
905
|
+
Trey
|
906
|
+
Mauricio
|
907
|
+
Westin
|
908
|
+
Gage
|
909
|
+
Reign
|
910
|
+
Creed
|
911
|
+
Mylo
|
912
|
+
Dennis
|
913
|
+
Quentin
|
914
|
+
Madden
|
915
|
+
Rome
|
916
|
+
Julien
|
917
|
+
Sam
|
918
|
+
Zaid
|
919
|
+
Marcel
|
920
|
+
Maximo
|
921
|
+
Layne
|
922
|
+
Ahmed
|
923
|
+
Kannon
|
924
|
+
Quincy
|
925
|
+
Yosef
|
926
|
+
Aarav
|
927
|
+
Lennon
|
928
|
+
Ryland
|
929
|
+
Skyler
|
930
|
+
Chris
|
931
|
+
Eliam
|
932
|
+
Kareem
|
933
|
+
Kyree
|
934
|
+
Dario
|
935
|
+
Donald
|
936
|
+
Fletcher
|
937
|
+
Darius
|
938
|
+
Duke
|
939
|
+
Rayden
|
940
|
+
Salem
|
941
|
+
Vicente
|
942
|
+
Vincenzo
|
943
|
+
Cayson
|
944
|
+
Eliseo
|
945
|
+
Issac
|
946
|
+
Lian
|
947
|
+
Clyde
|
948
|
+
Wilson
|
949
|
+
Santana
|
950
|
+
Tomas
|
951
|
+
Dexter
|
952
|
+
Keith
|
953
|
+
Houston
|
954
|
+
Harry
|
955
|
+
Uriah
|
956
|
+
Lee
|
957
|
+
Rex
|
958
|
+
Tony
|
959
|
+
Carmelo
|
960
|
+
Alberto
|
961
|
+
Loyal
|
962
|
+
Trace
|
963
|
+
Alfredo
|
964
|
+
Riggs
|
965
|
+
Forest
|
966
|
+
Raylan
|
967
|
+
Salvador
|
968
|
+
Jakari
|
969
|
+
Zakai
|
970
|
+
Louie
|
971
|
+
Flynn
|
972
|
+
Leonard
|
973
|
+
Mohammed
|
974
|
+
Derrick
|
975
|
+
Musa
|
976
|
+
Avi
|
977
|
+
Ty
|
978
|
+
Westley
|
979
|
+
Ambrose
|
980
|
+
Brycen
|
981
|
+
Aron
|
982
|
+
Caspian
|
983
|
+
Gatlin
|
984
|
+
Harlan
|
985
|
+
Dillon
|
986
|
+
Emery
|
987
|
+
Nixon
|
988
|
+
Tommy
|
989
|
+
Watson
|
990
|
+
Zayd
|
991
|
+
Azrael
|
992
|
+
Zyair
|
993
|
+
Azriel
|
994
|
+
Legacy
|
995
|
+
Cillian
|
996
|
+
Alvin
|
997
|
+
Bridger
|
998
|
+
Alec
|
999
|
+
Edison
|
1000
|
+
Kingsley
|
1001
|
+
Remi
|
1002
|
+
Briar
|
1003
|
+
Jaxxon
|
1004
|
+
Truett
|
1005
|
+
Lachlan
|
1006
|
+
Cal
|
1007
|
+
Landen
|
1008
|
+
Roger
|
1009
|
+
Alonso
|
1010
|
+
Kaiser
|
1011
|
+
Blaze
|
1012
|
+
Jerry
|
1013
|
+
Seven
|
1014
|
+
Kenji
|
1015
|
+
Noe
|
1016
|
+
Quinton
|
1017
|
+
Grey
|
1018
|
+
Jefferson
|
1019
|
+
Marcellus
|
1020
|
+
Ray
|
1021
|
+
Kyro
|
1022
|
+
Benicio
|
1023
|
+
Justice
|
1024
|
+
Neil
|
1025
|
+
Idris
|
1026
|
+
Bear
|
1027
|
+
Kiaan
|
1028
|
+
Wayne
|
1029
|
+
Ben
|
1030
|
+
Junior
|
1031
|
+
Karim
|
1032
|
+
Yehuda
|
1033
|
+
Jimmy
|
1034
|
+
Ramon
|
1035
|
+
Bjorn
|
1036
|
+
Nathanael
|
1037
|
+
Stanley
|
1038
|
+
Hassan
|
1039
|
+
Magnus
|
1040
|
+
Trenton
|
1041
|
+
Brayan
|
1042
|
+
Brock
|
1043
|
+
Jagger
|
1044
|
+
Cason
|
1045
|
+
Dakari
|
1046
|
+
Rey
|
1047
|
+
Abdiel
|
1048
|
+
Abdullah
|
1049
|
+
Casen
|
1050
|
+
Jiraiya
|
1051
|
+
Lance
|
1052
|
+
Misael
|
1053
|
+
Alvaro
|
1054
|
+
Robin
|
1055
|
+
Langston
|
1056
|
+
Nelson
|
1057
|
+
Wes
|
1058
|
+
Khari
|
1059
|
+
Landyn
|
1060
|
+
Jakai
|
1061
|
+
Lochlan
|
1062
|
+
Valentin
|
1063
|
+
Keaton
|
1064
|
+
Amias
|
1065
|
+
Joziah
|
1066
|
+
Thaddeus
|
1067
|
+
Jedidiah
|
1068
|
+
Orlando
|
1069
|
+
Eliel
|
1070
|
+
Hugh
|
1071
|
+
Koen
|
1072
|
+
Calum
|
1073
|
+
Enoch
|
1074
|
+
Mitchell
|
1075
|
+
Rohan
|
1076
|
+
Aryan
|
1077
|
+
Dilan
|
1078
|
+
Aden
|
1079
|
+
Allan
|
1080
|
+
Leighton
|
1081
|
+
Elisha
|
1082
|
+
Evander
|
1083
|
+
Castiel
|
1084
|
+
Curtis
|
1085
|
+
Kellen
|
1086
|
+
Dash
|
1087
|
+
Douglas
|
1088
|
+
Eddie
|
1089
|
+
Melvin
|
1090
|
+
Avyaan
|
1091
|
+
Everest
|
1092
|
+
Zamir
|
1093
|
+
Ricky
|
1094
|
+
Dutton
|
1095
|
+
Yahir
|
1096
|
+
Devon
|
1097
|
+
Franco
|
1098
|
+
Khaza
|
1099
|
+
Dior
|
1100
|
+
Leif
|
1101
|
+
Sevyn
|
1102
|
+
Guillermo
|
1103
|
+
Ira
|
1104
|
+
Emory
|
1105
|
+
Felipe
|
1106
|
+
Titan
|
1107
|
+
Alfred
|
1108
|
+
Azael
|
1109
|
+
Zahir
|
1110
|
+
Kellan
|
1111
|
+
Darren
|
1112
|
+
Rudy
|
1113
|
+
Ayan
|
1114
|
+
Leroy
|
1115
|
+
Anders
|
1116
|
+
Ishaan
|
1117
|
+
Reuben
|
1118
|
+
Boden
|
1119
|
+
Mccoy
|
1120
|
+
Heath
|
1121
|
+
Kase
|
1122
|
+
Wylder
|
1123
|
+
Judson
|
1124
|
+
Khai
|
1125
|
+
Kye
|
1126
|
+
Axl
|
1127
|
+
Crue
|
1128
|
+
Ernesto
|
1129
|
+
Ahmir
|
1130
|
+
Zyon
|
1131
|
+
Aries
|
1132
|
+
Mustafa
|
1133
|
+
Santos
|
1134
|
+
Dane
|
1135
|
+
Damari
|
1136
|
+
Elio
|
1137
|
+
Jadiel
|
1138
|
+
Jovanni
|
1139
|
+
Salvatore
|
1140
|
+
Mathew
|
1141
|
+
Kolson
|
1142
|
+
Nova
|
1143
|
+
Brendan
|
1144
|
+
Murphy
|
1145
|
+
Brodie
|
1146
|
+
Damir
|
1147
|
+
Rocky
|
1148
|
+
Larry
|
1149
|
+
Fisher
|
1150
|
+
Waylen
|
1151
|
+
Byron
|
1152
|
+
Ermias
|
1153
|
+
Joey
|
1154
|
+
Joe
|
1155
|
+
Jon
|
1156
|
+
Arian
|
1157
|
+
Chosen
|
1158
|
+
Jairo
|
1159
|
+
Vihaan
|
1160
|
+
Kylen
|
1161
|
+
Ameer
|
1162
|
+
Dion
|
1163
|
+
Jrue
|
1164
|
+
Kaizen
|
1165
|
+
Yousef
|
1166
|
+
Bryant
|
1167
|
+
Cullen
|
1168
|
+
Kaisen
|
1169
|
+
Kelvin
|
1170
|
+
Zen
|
1171
|
+
Kartier
|
1172
|
+
Randy
|
1173
|
+
Shepard
|
1174
|
+
Alaric
|
1175
|
+
Cain
|
1176
|
+
Jeremias
|
1177
|
+
Alfonso
|
1178
|
+
Brecken
|
1179
|
+
Colten
|
1180
|
+
Gian
|
1181
|
+
Rhodes
|
1182
|
+
Wesson
|
1183
|
+
Duncan
|
1184
|
+
Harold
|
1185
|
+
Henrik
|
1186
|
+
Harley
|
1187
|
+
Alistair
|
1188
|
+
Agustin
|
1189
|
+
Jericho
|
1190
|
+
Talon
|
1191
|
+
Westyn
|
1192
|
+
Cassian
|
1193
|
+
Eugene
|
1194
|
+
Ryatt
|
1195
|
+
Shmuel
|
1196
|
+
Braden
|
1197
|
+
Yahya
|
1198
|
+
Aldo
|
1199
|
+
Dangelo
|
1200
|
+
Ezrah
|
1201
|
+
Korbin
|
1202
|
+
Zavier
|
1203
|
+
Bronson
|
1204
|
+
Teo
|
1205
|
+
Jones
|
1206
|
+
Neo
|
1207
|
+
Stefan
|
1208
|
+
Van
|
1209
|
+
Mekhi
|
1210
|
+
Coleson
|
1211
|
+
Eren
|
1212
|
+
Ignacio
|
1213
|
+
Kristian
|
1214
|
+
Harlem
|
1215
|
+
Zev
|
1216
|
+
Canaan
|
1217
|
+
Cedric
|
1218
|
+
Khalid
|
1219
|
+
Bode
|
1220
|
+
Gary
|
1221
|
+
Rene
|
1222
|
+
Benedict
|
1223
|
+
Maxton
|
1224
|
+
Thatcher
|
1225
|
+
Wallace
|
1226
|
+
Davian
|
1227
|
+
Gordon
|
1228
|
+
Niklaus
|
1229
|
+
Yisroel
|
1230
|
+
Kabir
|
1231
|
+
Osman
|
1232
|
+
Adler
|
1233
|
+
Darian
|
1234
|
+
Terry
|
1235
|
+
Cartier
|
1236
|
+
Osiris
|
1237
|
+
Vance
|
1238
|
+
Demetrius
|
1239
|
+
Kamryn
|
1240
|
+
Lux
|
1241
|
+
Stone
|
1242
|
+
Jaxx
|
1243
|
+
Kooper
|
1244
|
+
Rodney
|
1245
|
+
Aurelio
|
1246
|
+
Darwin
|
1247
|
+
Jakob
|
1248
|
+
Zechariah
|
1249
|
+
Brennan
|
1250
|
+
Marlon
|
1251
|
+
Meir
|
1252
|
+
Yael
|
1253
|
+
Asaiah
|
1254
|
+
Atharv
|
1255
|
+
Imran
|
1256
|
+
Ivaan
|
1257
|
+
Kanan
|
1258
|
+
Kalel
|
1259
|
+
London).uniq
|
1260
|
+
end
|