Andzhig
Jr. Member
Offline
Activity: 184
Merit: 3
|
|
March 26, 2021, 08:15:19 AM Last edit: March 26, 2021, 05:37:28 PM by Andzhig |
|
There is no fact that experts on hacking (with experience in decades) will be able to come up with something (or have been hacked for a long time) It looks more like rar password hacking. Each new step increases password long. RAR Encryption is based on AES with a 256-bit key. Even taking into account the Moore law on Brut's 16-character persistent password, more than a century will be required.
Explanation why it is so
Length of the English alphabet 26 characters, plus 10 numbers. We have the full length of the password alphabet in 36 characters. If Brut is used and we admit a repetition of symbols in a row, the number of possible combinations is equal to the factorial of the length of the alphabet.
36! = 3719933267899010000000000000000000000000.
This is the number of possible combinations.
Here they are talking about two GPUs and the speed is 15,000 overgoing per second.
From here we obtain, taking into account the law of Moore (every two years, performance doubles) the number of hips for 100 years:
15000 * 3600 * 24 * 365 * (2 ^ 50) = 5325956919328350000000000
It is easy to see that this number is much smaller than the above.
If we divide the initial number of password options for this number, we will receive the number of instances that will be required to break the password after 100 years.
371993326789901000000000000000000000000000/532595691932835000000000000 = 698453503144019
I believe that hacking the password even on the scale of the whole world does not make sense. It is much more profitable to use social engineering and any other non-technical approach. And if the password is simply forgotten - to apply psychotechnics or abandon the venture.
By the way, if you add a password to the alphabet one character, the complexity of its brute force increases by the length of its alphabet. Therefore, it is so important to use a complex password with special mixes inside. We have no compressed WIF 51 char. 5HpHagT65TZzG1PH3CSu63k8DbpvD8s5ip + 15 (51×51×51×51×51×51×51×51×51×51×51×51×51×51×51) = 41072642160770556400888251 all brut... or 5HpHagT65TZzG1PH3CSu63k8DbpvD8s5ip7 + 14 = 805345924720991301978201 all brut... 5HpHagT65TZzG1PH3CSu63k8DbpvD8s5ip8 + 14 = 805345924720991301978201 all brut... 5HpHagT65TZzG1PH3CSu63k8DbpvD8s5ip9 + 14 = 805345924720991301978201 all brut... It's even more than sorting out the numbers 18446744073709551615 Think just to find the number of long 20 char from 0-9 = 10×10×10×10×10×10×10×10×10×10×10×10×10×10×10×10×10×10×10×10 = 100000000000000000000 or analog 00-99 100×100×100×100×100×100×100×100×100×100 = 100000000000000000000 e.t.c. *** Therefore continue to dig in the sandbox... Need one who can calculate the likelihood of probabilities and put traps. throw a coin 1000 times (from set 00-99, len 100 to set "set" len 60) These 1000 sets ("set" len 60) retain in the string and save. then for each of these 1000 ("set" len 60) we smack every string of 2 characters and choose new sets ( "new set" len 15 or 17) We get out 1000×1000×1000 = 1000000000 And it is already starting to choose (traps) and mix (a,b,c-c,b,a-b,a,c-c,a,b) How much will it be places to occupy 1000000000 rows of 15 or 17 characters you need to check)) In the picture with circles where the traps can be placed (or like that). With many complete cycles in these traps, we need it will be. https://ibb.co/DC3tqYZHow many 1 character takes 1 byte ... 17 by 2 + "" without converting a string 17*2*2 68000000000 byte > 68 Gb. And it still needs to save on the disk and then somehow need to read (it's good if it can read the desired line without loading all the lines into memory). Example 100x100x100 1000000 ['38', '07', '22', '46', '45', '40', '22', '77', '59', '81', '85', '24', '62', '78', '34', '17', '89'] traps 1/1000000 ['57', '46', '22', '76', '78', '22', '38', '16', '92', '24', '76', '60', '89', '89', '86', '17', '81'] traps 10/1000000 ['76', '17', '92', '10', '75', '92', '93', '92', '92', '92', '92', '92', '33', '97', '46', '93', '64'] traps 100/1000000 ['61', '16', '83', '10', '83', '92', '06', '43', '61', '40', '61', '85', '22', '16', '60', '10', '61'] traps 1000/1000000 then there is vomit or 65 to search or choose by initial for 63... import random import time
Nn =['00', '01', '02', '03', '04', '05', '06', '07', '08', '09', '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']
RRR1 = [] RRR2 = [] i = 1 while i <= 100:
for x1 in range(60): # set 00-99 screening out length DDD = random.choice(Nn) RRR1.append(DDD)
RRR2.append(RRR1) RRR1=[] i=i+1
#for elem in RRR2: # print(elem)
RR1 = [] RR2 = []
for elem in RRR2: i = 1 while i <= 100: for x1 in range(30): DDD = random.choice(elem) RR1.append(DDD)
RR2.append(RR1) #print(RR1) RR1=[] i=i+1
print("")
#for elem in RR2: # print(elem)
R1 = [] R2 = []
for elem in RR2: i = 1 while i <= 100: for x1 in range(17): DDD = random.choice(elem) R1.append(DDD)
R2.append(R1) #print(R1) R1=[] i=i+1
print("")
#for elem in R2: # print(elem)
print(len(R2)) print(R2[0]) #traps print(R2[10]) #traps print(R2[100]) #traps print(R2[1000]) #traps #print(R2[123456])
time.sleep(360.0)*** or so "F5 throw a coin" 60 > 30 > 17
import random import time
Nn =['00', '01', '02', '03', '04', '05', '06', '07', '08', '09', '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']
#print(Nn,len(Nn))
RRR = [] RRR2 = [] count = 0 print("") print("loop 1") print("") #for A in range (10000000): i = 1 while i <= 1000: count += 1 for RR in range(60): DDD = random.choice(Nn) RRR.append(DDD)
Nn1 =['30'] Nn2 =['56'] Nn3 =['83'] Nn4 =['77'] Nn5 =['31'] Nn6 =['20'] Nn7 =['64'] Nn8 =['20'] Nn9 =['28'] Nn10 =['55'] for elem1 in Nn1: if elem1 in RRR: for elem2 in Nn2: if elem2 in RRR: for elem3 in Nn3: if elem3 in RRR: for elem4 in Nn4: if elem4 in RRR: for elem5 in Nn5: if elem5 in RRR: for elem6 in Nn6: if elem6 in RRR: for elem7 in Nn7: if elem7 in RRR: for elem8 in Nn8: if elem8 in RRR: for elem9 in Nn9: if elem9 in RRR: for elem10 in Nn10: if elem10 in RRR:
print(count,"huuurrraaa..."," ",RRR,len(RRR)," ",Nn1,Nn2,Nn3,Nn4,Nn5,Nn6,Nn7,Nn8,Nn9,Nn10) RRR2.append(RRR) break #print(RRR) RRR = [] #print(RRR) i=i+1
#print(RRR2) print("") print("loop 2")
RRR = [] RRR3 = [] count = 0
i = 1 while i <= 1000: count += 1 for RR in range(30): DDD = random.choice(RRR2[0]) RRR.append(DDD)
Nn1 =['30'] Nn2 =['56'] Nn3 =['83'] Nn4 =['77'] Nn5 =['31'] Nn6 =['20'] Nn7 =['64'] Nn8 =['20'] Nn9 =['28'] Nn10 =['55'] for elem1 in Nn1: if elem1 in RRR: for elem2 in Nn2: if elem2 in RRR: for elem3 in Nn3: if elem3 in RRR: for elem4 in Nn4: if elem4 in RRR: for elem5 in Nn5: if elem5 in RRR: for elem6 in Nn6: if elem6 in RRR: for elem7 in Nn7: if elem7 in RRR: for elem8 in Nn8: if elem8 in RRR: for elem9 in Nn9: if elem9 in RRR: for elem10 in Nn10: if elem10 in RRR:
print(count,"huuurrraaa..."," ",RRR,len(RRR)," ",Nn1,Nn2,Nn3,Nn4,Nn5,Nn6,Nn7,Nn8,Nn9,Nn10) RRR3.append(RRR) break #print(RRR) RRR = [] #print(RRR) i=i+1 count = 0 print("") #print(RRR2) print("") print("loop 3")
i = 1 while i <= 1000: count += 1 for RR in range(17): DDD = random.choice(RRR3[0]) RRR.append(DDD)
Nn1 =['30'] Nn2 =['56'] Nn3 =['83'] Nn4 =['77'] Nn5 =['31'] Nn6 =['20'] Nn7 =['64'] Nn8 =['20'] Nn9 =['28'] Nn10 =['55'] for elem1 in Nn1: if elem1 in RRR: for elem2 in Nn2: if elem2 in RRR: for elem3 in Nn3: if elem3 in RRR: for elem4 in Nn4: if elem4 in RRR: for elem5 in Nn5: if elem5 in RRR: for elem6 in Nn6: if elem6 in RRR: for elem7 in Nn7: if elem7 in RRR: for elem8 in Nn8: if elem8 in RRR: for elem9 in Nn9: if elem9 in RRR: for elem10 in Nn10: if elem10 in RRR:
print(count,"huuurrraaa..."," ",RRR,len(RRR)," ",Nn1,Nn2,Nn3,Nn4,Nn5,Nn6,Nn7,Nn8,Nn9,Nn10) #RRR3.append(RRR) break #print(RRR) RRR = [] #print(RRR) i=i+1
loop 1
428 huuurrraaa... ['14', '64', '23', '43', '22', '65', '95', '10', '74', '62', '77', '81', '11', '25', '87', '42', '30', '79', '16', '36', '84', '31', '16', '18', '57', '08', '21', '94', '50', '99', '53', '56', '69', '38', '77', '90', '15', '63', '45', '87', '76', '60', '89', '85', '87', '44', '96', '90', '28', '87', '80', '63', '10', '07', '12', '55', '83', '24', '34', '38', '20', '93', '47', '25', '20', '69', '51', '48', '75', '13'] 70 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55']
loop 2 837 huuurrraaa... ['77', '20', '94', '25', '77', '55', '14', '36', '10', '64', '15', '28', '87', '65', '25', '76', '13', '31', '79', '93', '90', '96', '56', '80', '30', '55', '83', '75', '94', '83'] 30 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55']
loop 3 132 huuurrraaa... ['28', '56', '77', '93', '13', '75', '64', '75', '76', '55', '31', '30', '83', '96', '87', '20', '93'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55']
Here we have out of 1000 samples, the required one was found 428 1 ... 428 ... 1000 (60-70) And for each we chose 30 1 - 1000 ... 428 > 837 .... 1000 - 1000 (25-30) And from the 837 we found 123 (15-17) that is enough 1000x1000= 1000000 (30 lenght), from file or mem for selection (15-17) Then can create this file 1000000 (30 lenght) and drive it a randomly or fixed with a sample when replacing this file 1000000 (30 lenght) in a few days. Or run a few samples for the first step (60) he will jump on the desired samples from 1 > 428 > 1000 And we choose from them a fixed position 1000 samples with fixed sample 428 Or is it all a delusional idea ... loop 1 100000 loop 2 1000 loop 3 1000 83 huuurrraaa... ['17', '77', '75', '28', '17', '20', '64', '39', '31', '74', '17', '56', '20', '30', '55', '01', '83'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 1107 huuurrraaa... ['83', '77', '39', '56', '20', '12', '55', '31', '28', '00', '63', '64', '30', '56', '14', '17', '56'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 1430 huuurrraaa... ['56', '33', '12', '77', '55', '02', '31', '28', '14', '33', '12', '30', '83', '20', '64', '01', '55'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 2028 huuurrraaa... ['19', '55', '83', '77', '43', '56', '20', '13', '13', '19', '30', '64', '31', '28', '21', '13', '06'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 3920 huuurrraaa... ['39', '05', '64', '08', '56', '77', '28', '30', '27', '70', '27', '12', '76', '31', '83', '20', '55'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 3991 huuurrraaa... ['72', '08', '12', '30', '01', '64', '28', '05', '56', '44', '20', '20', '77', '83', '31', '55', '20'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 4505 huuurrraaa... ['56', '77', '31', '30', '56', '28', '05', '64', '83', '77', '55', '42', '20', '33', '24', '72', '28'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 4556 huuurrraaa... ['55', '83', '77', '31', '77', '72', '56', '55', '64', '88', '26', '42', '30', '20', '33', '28', '77'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 7113 huuurrraaa... ['41', '77', '64', '20', '56', '60', '31', '83', '28', '69', '28', '49', '86', '86', '69', '30', '55'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 7469 huuurrraaa... ['83', '77', '69', '55', '41', '64', '31', '55', '83', '30', '55', '69', '28', '56', '49', '41', '20'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 9882 huuurrraaa... ['56', '77', '81', '28', '10', '31', '07', '83', '20', '06', '64', '30', '20', '30', '55', '02', '01'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 10505 huuurrraaa... ['30', '60', '33', '55', '20', '28', '28', '33', '64', '31', '77', '20', '33', '56', '64', '28', '83'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 10654 huuurrraaa... ['36', '20', '64', '89', '89', '28', '30', '86', '77', '20', '83', '55', '56', '31', '33', '28', '31'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 12215 huuurrraaa... ['31', '83', '30', '43', '77', '57', '28', '55', '16', '56', '57', '28', '23', '64', '91', '94', '20'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 12685 huuurrraaa... ['83', '11', '45', '20', '64', '91', '56', '90', '28', '28', '90', '55', '31', '23', '77', '20', '30'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 13747 huuurrraaa... ['31', '77', '30', '28', '91', '64', '23', '77', '41', '20', '41', '30', '55', '16', '19', '56', '83'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 13865 huuurrraaa... ['43', '30', '83', '56', '28', '58', '64', '55', '20', '16', '11', '77', '31', '55', '41', '64', '31'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 13871 huuurrraaa... ['83', '28', '16', '77', '30', '55', '30', '55', '20', '11', '31', '83', '77', '57', '77', '64', '56'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 16347 huuurrraaa... ['28', '70', '61', '56', '55', '20', '31', '70', '05', '83', '76', '30', '31', '80', '38', '77', '64'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 17977 huuurrraaa... ['55', '28', '20', '56', '28', '20', '28', '12', '56', '67', '64', '29', '31', '77', '83', '30', '56'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 18164 huuurrraaa... ['28', '11', '31', '77', '55', '20', '83', '64', '83', '56', '33', '77', '49', '06', '30', '38', '77'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 20687 huuurrraaa... ['64', '98', '55', '30', '56', '28', '77', '31', '83', '98', '20', '31', '28', '98', '28', '06', '49'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 23872 huuurrraaa... ['14', '77', '31', '55', '07', '64', '28', '49', '51', '56', '20', '56', '20', '30', '31', '30', '83'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55']loop 1 100000 loop 2 100000 loop 3 1000 961 huuurrraaa... ['27', '27', '27', '68', '83', '77', '27', '55', '27', '27', '28', '20', '56', '68', '31', '64', '30'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 2486 huuurrraaa... ['27', '81', '00', '55', '56', '28', '64', '20', '83', '55', '29', '31', '77', '27', '30', '22', '55'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 5863 huuurrraaa... ['28', '71', '30', '27', '64', '55', '20', '65', '83', '29', '99', '99', '61', '31', '77', '14', '56'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 7435 huuurrraaa... ['31', '07', '73', '28', '56', '30', '56', '07', '15', '64', '35', '77', '64', '83', '20', '20', '55'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 8306 huuurrraaa... ['30', '20', '76', '42', '28', '36', '36', '64', '56', '73', '31', '77', '28', '55', '30', '27', '83'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 8672 huuurrraaa... ['42', '77', '56', '28', '55', '20', '31', '29', '00', '81', '55', '64', '30', '73', '83', '83', '55'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 8999 huuurrraaa... ['83', '56', '27', '28', '31', '56', '55', '56', '92', '77', '20', '56', '30', '28', '30', '77', '64'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 9181 huuurrraaa... ['73', '92', '20', '42', '83', '30', '31', '55', '64', '73', '28', '56', '20', '73', '30', '77', '73'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 12129 huuurrraaa... ['77', '28', '30', '00', '64', '07', '56', '83', '30', '56', '68', '92', '20', '74', '77', '31', '55'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 13618 huuurrraaa... ['32', '79', '15', '04', '64', '31', '28', '56', '64', '04', '83', '55', '55', '77', '77', '20', '30'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 15672 huuurrraaa... ['28', '30', '83', '03', '55', '64', '83', '76', '31', '77', '50', '27', '76', '56', '14', '20', '29'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 15984 huuurrraaa... ['20', '31', '77', '14', '28', '56', '31', '64', '03', '99', '64', '55', '55', '83', '30', '64', '14'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 17184 huuurrraaa... ['92', '83', '65', '31', '28', '41', '00', '64', '77', '28', '99', '30', '64', '55', '00', '56', '20'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 20035 huuurrraaa... ['64', '20', '77', '20', '12', '57', '31', '50', '55', '56', '29', '28', '77', '30', '92', '55', '83'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 20181 huuurrraaa... ['28', '28', '83', '29', '64', '31', '56', '57', '55', '32', '20', '28', '20', '30', '12', '77', '30'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 20348 huuurrraaa... ['30', '20', '71', '12', '83', '71', '12', '29', '31', '64', '29', '57', '28', '55', '31', '77', '56'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 20700 huuurrraaa... ['31', '27', '28', '12', '12', '50', '64', '03', '50', '83', '20', '56', '28', '20', '77', '55', '30'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 26421 huuurrraaa... ['31', '30', '12', '55', '70', '29', '12', '20', '35', '64', '83', '56', '77', '28', '30', '00', '71'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 36070 huuurrraaa... ['74', '31', '55', '10', '17', '29', '31', '02', '77', '56', '30', '64', '64', '28', '31', '20', '83'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 36174 huuurrraaa... ['56', '31', '10', '26', '28', '35', '64', '77', '55', '30', '02', '65', '20', '83', '81', '83', '90'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 37751 huuurrraaa... ['72', '30', '26', '31', '64', '65', '28', '56', '77', '31', '56', '20', '35', '29', '83', '48', '55'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 39388 huuurrraaa... ['52', '17', '88', '55', '83', '20', '77', '74', '30', '28', '74', '29', '56', '64', '80', '31', '17'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 41472 huuurrraaa... ['77', '83', '64', '30', '20', '83', '19', '28', '39', '55', '31', '56', '93', '20', '40', '26', '64'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 42379 huuurrraaa... ['64', '20', '28', '77', '24', '58', '28', '88', '56', '30', '31', '55', '83', '39', '55', '39', '52'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] ...
2149902 huuurrraaa... ['64', '68', '80', '28', '77', '61', '56', '30', '31', '41', '83', '80', '80', '77', '20', '55', '80'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 2150060 huuurrraaa... ['64', '20', '22', '31', '83', '30', '56', '20', '30', '30', '56', '77', '28', '05', '41', '55', '41'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 2150438 huuurrraaa... ['20', '30', '28', '56', '64', '31', '30', '56', '77', '41', '55', '30', '83', '83', '69', '20', '91'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 2150942 huuurrraaa... ['91', '56', '31', '20', '30', '30', '64', '83', '77', '55', '22', '64', '94', '20', '95', '28', '66'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 2151627 huuurrraaa... ['80', '31', '14', '55', '22', '77', '83', '30', '56', '15', '28', '68', '31', '22', '28', '20', '64'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 2152941 huuurrraaa... ['56', '30', '35', '77', '80', '14', '55', '83', '03', '00', '64', '28', '20', '83', '35', '05', '31'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 2153463 huuurrraaa... ['68', '20', '30', '35', '55', '31', '20', '55', '83', '32', '56', '55', '77', '88', '28', '64', '77'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 2155518 huuurrraaa... ['77', '28', '28', '64', '30', '83', '31', '77', '56', '77', '55', '20', '28', '55', '61', '83', '28'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 2162821 huuurrraaa... ['46', '30', '77', '65', '46', '37', '28', '31', '48', '20', '56', '76', '08', '64', '83', '28', '55'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 2163547 huuurrraaa... ['20', '83', '30', '83', '09', '28', '99', '47', '31', '77', '56', '30', '77', '64', '55', '48', '83'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55'] 2170943 huuurrraaa... ['64', '30', '28', '20', '57', '77', '56', '83', '75', '83', '20', '28', '55', '83', '55', '80', '31'] 17 ['30'] ['56'] ['83'] ['77'] ['31'] ['20'] ['64'] ['20'] ['28'] ['55']1321 count.
|