This post is by a banned member (kasnobato) - Unhide
05 November, 2021 - 02:02 PM
Reply
[font] I'm trying to make instagram message bot and I know the struggle[/font]
This post is by a banned member (mcdksr) - Unhide
25 November, 2021 - 01:18 PM
Reply
(18 May, 2020 - 02:21 AM)landal Wrote: Show MoreInstagram Account Generator and Random Email Generator
hi, Cracked.to.
I've been working on a Selenium-based Instagram Account Generator through OpenBullet to mass-produce Instagram accounts. The progress I have made seems straight forwards and I was hoping to walk Cracked.to through what I've achieved and get help figuring out what I should do next.
I will be providing the code I have been working with to anyone wanting to experiment themselves or help me along the way
MY PROGRESS
Show ContentSpoiler:
When first running the Instagram generator I was able to create 10 accounts using "Linden :)" as the full name alongside a random string of numbers and letters with an email domain added to the end. Looking something like this: [email protected]. After those accounts were made Instagram put a full stop on the program, sending Recaptcha, email verification and phone verification requests.
Afterwards, I attempted to use proxies to set the verification standards to a neutral level for each time I attempt to make an account. Sadly Instagram flags and detects open proxies, not allowing the usage of them to create accounts. The same thing goes for VPNs, Instagram will give you one creation attempt then block you out with verification requests.
To slip past the verification I made my program act in a more human-like behaviour. I added random delays between each input, more realistic emails and full names, along with Browser Action "Sendhumankeys". That had got me 15 more accounts before Instagram implemented another level of automation detection.
and that brings me to my guesses at what could be holding back my program.
MY GUESS
My best guess is that Instagram using Selenium Detection found at Stackoverflow (https://stackoverflow.com/questions/3322...7#41220267). Or Instagram is tracking mouse movements to differentiate between automation or humans. found at Instagram. (https://help.instagram.com/519522125107875) Where they say,
Quote:"Device operations: information about operations and behaviors performed on the device, such as whether a window is foregrounded or backgrounded, or mouse movements (which can help distinguish humans from bots)."
CONCLUSION
I need help figuring out what my next step is going to be with programming this Account Generator. I would take any support I could get, including people testing the config and giving me insights on how I can improve it.
CODE
this was made with python :3
Random Email Generator:
Things you'll need will be:
- a word list
- a name list
or if you want, here's mine: mega.nz
the exports of the code are in email:fullname formats, I used these formats because they were specific to the requirements for my Instagram config
Code: [align=left]
import random
import string
word_file = r"D:\randwords.txt"
words = open(word_file).read().splitlines()
name_file = r"D:\randnames.txt"
names = open(name_file).read().splitlines()
email = ("aol.com", "att.net", "comcast.net", "facebook.com", "gmail.com", "gmx.com", "googlemail.com", "google.com", "hotmail.com", "hotmail.co.uk", "mac.com", "me.com", "mail.com", "msn.com", "live.com", "sbcglobal.net", "verizon.net", "yahoo.com", "yahoo.co.uk", "email.com", "fastmail.fm", "games.com", "gmx.net", "hush.com", "hushmail.com", "icloud.com", "iname.com", "inbox.com", "lavabit.com", "love.com", "outlook.com", "pobox.com", "protonmail.ch", "protonmail.com", "tutanota.de", "tutanota.com", "tutamail.com", "tuta.io", "keemail.me", "rocketmail.com", "safe-mail.net", "wow.com", "ygm.com", "ymail.com", "zoho.com", "yandex.com", "bellsouth.net", "charter.net", "cox.net", "earthlink.net", "juno.com", "btinternet.com", "virginmedia.com", "blueyonder.co.uk", "freeserve.co.uk", "live.co.uk", "ntlworld.com", "o2.co.uk", "orange.net", "sky.com", "talktalk.co.uk", "tiscali.co.uk", "virgin.net", "wanadoo.co.uk", "bt.com", "sina.com", "sina.cn", "qq.com", "naver.com", "hanmail.net", "daum.net", "nate.com", "yahoo.co.jp", "yahoo.co.kr", "yahoo.co.id", "yahoo.co.in", "yahoo.com.sg", "yahoo.com.ph", "163.com", "yeah.net", "126.com", "21cn.com", "aliyun.com", "foxmail.com", "hotmail.fr", "live.fr", "laposte.net", "yahoo.fr", "wanadoo.fr", "orange.fr", "gmx.fr", "sfr.fr", "neuf.fr", "free.fr", "gmx.de", "hotmail.de", "live.de", "online.de", "t-online.de", "web.de", "yahoo.de", "libero.it", "virgilio.it", "hotmail.it", "aol.it", "tiscali.it", "alice.it", "live.it", "yahoo.it", "email.it", "tin.it", "poste.it", "teletu.it", "mail.ru", "rambler.ru", "yandex.ru", "ya.ru", "list.ru", "hotmail.be", "live.be", "skynet.be", "voo.be", "tvcablenet.be", "telenet.be", "hotmail.com.ar", "live.com.ar", "yahoo.com.ar", "fibertel.com.ar", "speedy.com.ar", "arnet.com.ar", "yahoo.com.mx", "live.com.mx", "hotmail.es", "hotmail.com.mx", "prodigy.net.mx", "yahoo.ca", "hotmail.ca", "bell.net", "shaw.ca", "sympatico.ca", "rogers.com", "yahoo.com.br", "hotmail.com.br", "outlook.com.br", "uol.com.br", "bol.com.br", "terra.com.br", "ig.com.br", "itelefonica.com.br", "r7.com", "zipmail.com.br", "globo.com", "globomail.com", "oi.com.br")
x = 1
rbreak = (".", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "", ".", "-", ".", "-", ".", ".", ".", ".", ".")
while x==1:
randomname1 = random.choice(names)
randomname2 = random.choice(names)
randombreak1 = random.choice(rbreak)
randombreak2 = random.choice(rbreak)
randomemail = random.choice(email)
randomword1 = random.choice(words)
randomword2 = random.choice(words)
random1 = (randomname1, randomword2)
random2 = (randomname2, randomword1)
random3 = (randombreak1, randombreak2)
print(random.choice(random1) + random.choice(random3) + random.choice(random2) + "@" + randomemail + ":" + randomname1 + " " + randomname2)[/align]
and if you want the Instagram Account Generator config:
feel free to dm me :pepegun:
nice mannns
This post is by a banned member (MerkzDev) - Unhide
21 April, 2022 - 10:43 PM
Reply
(18 May, 2020 - 02:21 AM)landal Wrote: Show MoreInstagram Account Generator and Random Email Generator
hi, Cracked.to.
I've been working on a Selenium-based Instagram Account Generator through OpenBullet to mass-produce Instagram accounts. The progress I have made seems straight forwards and I was hoping to walk Cracked.to through what I've achieved and get help figuring out what I should do next.
I will be providing the code I have been working with to anyone wanting to experiment themselves or help me along the way
MY PROGRESS
Show ContentSpoiler:
When first running the Instagram generator I was able to create 10 accounts using "Linden :)" as the full name alongside a random string of numbers and letters with an email domain added to the end. Looking something like this: [email protected]. After those accounts were made Instagram put a full stop on the program, sending Recaptcha, email verification and phone verification requests.
Afterwards, I attempted to use proxies to set the verification standards to a neutral level for each time I attempt to make an account. Sadly Instagram flags and detects open proxies, not allowing the usage of them to create accounts. The same thing goes for VPNs, Instagram will give you one creation attempt then block you out with verification requests.
To slip past the verification I made my program act in a more human-like behaviour. I added random delays between each input, more realistic emails and full names, along with Browser Action "Sendhumankeys". That had got me 15 more accounts before Instagram implemented another level of automation detection.
and that brings me to my guesses at what could be holding back my program.
MY GUESS
My best guess is that Instagram using Selenium Detection found at Stackoverflow (https://stackoverflow.com/questions/3322...7#41220267). Or Instagram is tracking mouse movements to differentiate between automation or humans. found at Instagram. (https://help.instagram.com/519522125107875) Where they say,
Quote:"Device operations: information about operations and behaviors performed on the device, such as whether a window is foregrounded or backgrounded, or mouse movements (which can help distinguish humans from bots)."
CONCLUSION
I need help figuring out what my next step is going to be with programming this Account Generator. I would take any support I could get, including people testing the config and giving me insights on how I can improve it.
CODE
this was made with python :3
Random Email Generator:
Things you'll need will be:
- a word list
- a name list
or if you want, here's mine: mega.nz
the exports of the code are in email:fullname formats, I used these formats because they were specific to the requirements for my Instagram config
Code: [align=left]
import random
import string
word_file = r"D:\randwords.txt"
words = open(word_file).read().splitlines()
name_file = r"D:\randnames.txt"
names = open(name_file).read().splitlines()
email = ("aol.com", "att.net", "comcast.net", "facebook.com", "gmail.com", "gmx.com", "googlemail.com", "google.com", "hotmail.com", "hotmail.co.uk", "mac.com", "me.com", "mail.com", "msn.com", "live.com", "sbcglobal.net", "verizon.net", "yahoo.com", "yahoo.co.uk", "email.com", "fastmail.fm", "games.com", "gmx.net", "hush.com", "hushmail.com", "icloud.com", "iname.com", "inbox.com", "lavabit.com", "love.com", "outlook.com", "pobox.com", "protonmail.ch", "protonmail.com", "tutanota.de", "tutanota.com", "tutamail.com", "tuta.io", "keemail.me", "rocketmail.com", "safe-mail.net", "wow.com", "ygm.com", "ymail.com", "zoho.com", "yandex.com", "bellsouth.net", "charter.net", "cox.net", "earthlink.net", "juno.com", "btinternet.com", "virginmedia.com", "blueyonder.co.uk", "freeserve.co.uk", "live.co.uk", "ntlworld.com", "o2.co.uk", "orange.net", "sky.com", "talktalk.co.uk", "tiscali.co.uk", "virgin.net", "wanadoo.co.uk", "bt.com", "sina.com", "sina.cn", "qq.com", "naver.com", "hanmail.net", "daum.net", "nate.com", "yahoo.co.jp", "yahoo.co.kr", "yahoo.co.id", "yahoo.co.in", "yahoo.com.sg", "yahoo.com.ph", "163.com", "yeah.net", "126.com", "21cn.com", "aliyun.com", "foxmail.com", "hotmail.fr", "live.fr", "laposte.net", "yahoo.fr", "wanadoo.fr", "orange.fr", "gmx.fr", "sfr.fr", "neuf.fr", "free.fr", "gmx.de", "hotmail.de", "live.de", "online.de", "t-online.de", "web.de", "yahoo.de", "libero.it", "virgilio.it", "hotmail.it", "aol.it", "tiscali.it", "alice.it", "live.it", "yahoo.it", "email.it", "tin.it", "poste.it", "teletu.it", "mail.ru", "rambler.ru", "yandex.ru", "ya.ru", "list.ru", "hotmail.be", "live.be", "skynet.be", "voo.be", "tvcablenet.be", "telenet.be", "hotmail.com.ar", "live.com.ar", "yahoo.com.ar", "fibertel.com.ar", "speedy.com.ar", "arnet.com.ar", "yahoo.com.mx", "live.com.mx", "hotmail.es", "hotmail.com.mx", "prodigy.net.mx", "yahoo.ca", "hotmail.ca", "bell.net", "shaw.ca", "sympatico.ca", "rogers.com", "yahoo.com.br", "hotmail.com.br", "outlook.com.br", "uol.com.br", "bol.com.br", "terra.com.br", "ig.com.br", "itelefonica.com.br", "r7.com", "zipmail.com.br", "globo.com", "globomail.com", "oi.com.br")
x = 1
rbreak = (".", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "", ".", "-", ".", "-", ".", ".", ".", ".", ".")
while x==1:
randomname1 = random.choice(names)
randomname2 = random.choice(names)
randombreak1 = random.choice(rbreak)
randombreak2 = random.choice(rbreak)
randomemail = random.choice(email)
randomword1 = random.choice(words)
randomword2 = random.choice(words)
random1 = (randomname1, randomword2)
random2 = (randomname2, randomword1)
random3 = (randombreak1, randombreak2)
print(random.choice(random1) + random.choice(random3) + random.choice(random2) + "@" + randomemail + ":" + randomname1 + " " + randomname2)[/align]
and if you want the Instagram Account Generator config:
feel free to dm me :pepegun:
nice!!!
This post is by a banned member (bouraq9) - Unhide
03 August, 2022 - 08:24 PM
Reply
This post is by a banned member (Jays28838737737) - Unhide
04 August, 2022 - 06:41 AM
Reply
(18 May, 2020 - 02:21 AM)landal Wrote: Show MoreInstagram Account Generator and Random Email Generator
hi, Cracked.to.
I've been working on a Selenium-based Instagram Account Generator through OpenBullet to mass-produce Instagram accounts. The progress I have made seems straight forwards and I was hoping to walk Cracked.to through what I've achieved and get help figuring out what I should do next.
I will be providing the code I have been working with to anyone wanting to experiment themselves or help me along the way
MY PROGRESS
Show ContentSpoiler:
When first running the Instagram generator I was able to create 10 accounts using "Linden :)" as the full name alongside a random string of numbers and letters with an email domain added to the end. Looking something like this: [email protected]. After those accounts were made Instagram put a full stop on the program, sending Recaptcha, email verification and phone verification requests.
Afterwards, I attempted to use proxies to set the verification standards to a neutral level for each time I attempt to make an account. Sadly Instagram flags and detects open proxies, not allowing the usage of them to create accounts. The same thing goes for VPNs, Instagram will give you one creation attempt then block you out with verification requests.
To slip past the verification I made my program act in a more human-like behaviour. I added random delays between each input, more realistic emails and full names, along with Browser Action "Sendhumankeys". That had got me 15 more accounts before Instagram implemented another level of automation detection.
and that brings me to my guesses at what could be holding back my program.
MY GUESS
My best guess is that Instagram using Selenium Detection found at Stackoverflow (https://stackoverflow.com/questions/3322...7#41220267). Or Instagram is tracking mouse movements to differentiate between automation or humans. found at Instagram. (https://help.instagram.com/519522125107875) Where they say,
Quote:"Device operations: information about operations and behaviors performed on the device, such as whether a window is foregrounded or backgrounded, or mouse movements (which can help distinguish humans from bots)."
CONCLUSION
I need help figuring out what my next step is going to be with programming this Account Generator. I would take any support I could get, including people testing the config and giving me insights on how I can improve it.
CODE
this was made with python :3
Random Email Generator:
Things you'll need will be:
- a word list
- a name list
or if you want, here's mine: mega.nz
the exports of the code are in email:fullname formats, I used these formats because they were specific to the requirements for my Instagram config
Code: [align=left]
import random
import string
word_file = r"D:\randwords.txt"
words = open(word_file).read().splitlines()
name_file = r"D:\randnames.txt"
names = open(name_file).read().splitlines()
email = ("aol.com", "att.net", "comcast.net", "facebook.com", "gmail.com", "gmx.com", "googlemail.com", "google.com", "hotmail.com", "hotmail.co.uk", "mac.com", "me.com", "mail.com", "msn.com", "live.com", "sbcglobal.net", "verizon.net", "yahoo.com", "yahoo.co.uk", "email.com", "fastmail.fm", "games.com", "gmx.net", "hush.com", "hushmail.com", "icloud.com", "iname.com", "inbox.com", "lavabit.com", "love.com", "outlook.com", "pobox.com", "protonmail.ch", "protonmail.com", "tutanota.de", "tutanota.com", "tutamail.com", "tuta.io", "keemail.me", "rocketmail.com", "safe-mail.net", "wow.com", "ygm.com", "ymail.com", "zoho.com", "yandex.com", "bellsouth.net", "charter.net", "cox.net", "earthlink.net", "juno.com", "btinternet.com", "virginmedia.com", "blueyonder.co.uk", "freeserve.co.uk", "live.co.uk", "ntlworld.com", "o2.co.uk", "orange.net", "sky.com", "talktalk.co.uk", "tiscali.co.uk", "virgin.net", "wanadoo.co.uk", "bt.com", "sina.com", "sina.cn", "qq.com", "naver.com", "hanmail.net", "daum.net", "nate.com", "yahoo.co.jp", "yahoo.co.kr", "yahoo.co.id", "yahoo.co.in", "yahoo.com.sg", "yahoo.com.ph", "163.com", "yeah.net", "126.com", "21cn.com", "aliyun.com", "foxmail.com", "hotmail.fr", "live.fr", "laposte.net", "yahoo.fr", "wanadoo.fr", "orange.fr", "gmx.fr", "sfr.fr", "neuf.fr", "free.fr", "gmx.de", "hotmail.de", "live.de", "online.de", "t-online.de", "web.de", "yahoo.de", "libero.it", "virgilio.it", "hotmail.it", "aol.it", "tiscali.it", "alice.it", "live.it", "yahoo.it", "email.it", "tin.it", "poste.it", "teletu.it", "mail.ru", "rambler.ru", "yandex.ru", "ya.ru", "list.ru", "hotmail.be", "live.be", "skynet.be", "voo.be", "tvcablenet.be", "telenet.be", "hotmail.com.ar", "live.com.ar", "yahoo.com.ar", "fibertel.com.ar", "speedy.com.ar", "arnet.com.ar", "yahoo.com.mx", "live.com.mx", "hotmail.es", "hotmail.com.mx", "prodigy.net.mx", "yahoo.ca", "hotmail.ca", "bell.net", "shaw.ca", "sympatico.ca", "rogers.com", "yahoo.com.br", "hotmail.com.br", "outlook.com.br", "uol.com.br", "bol.com.br", "terra.com.br", "ig.com.br", "itelefonica.com.br", "r7.com", "zipmail.com.br", "globo.com", "globomail.com", "oi.com.br")
x = 1
rbreak = (".", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "", ".", "-", ".", "-", ".", ".", ".", ".", ".")
while x==1:
randomname1 = random.choice(names)
randomname2 = random.choice(names)
randombreak1 = random.choice(rbreak)
randombreak2 = random.choice(rbreak)
randomemail = random.choice(email)
randomword1 = random.choice(words)
randomword2 = random.choice(words)
random1 = (randomname1, randomword2)
random2 = (randomname2, randomword1)
random3 = (randombreak1, randombreak2)
print(random.choice(random1) + random.choice(random3) + random.choice(random2) + "@" + randomemail + ":" + randomname1 + " " + randomname2)[/align]
and if you want the Instagram Account Generator config:
feel free to dm me :pepegun:
bhss
This post is by a banned member (Fate666) - Unhide
21 November, 2022 - 01:01 AM
Reply
(18 May, 2020 - 02:21 AM)landal Wrote: Show More Instagram Account Generator and Random Email Generator
hi, Cracked.to.
I've been working on a Selenium-based Instagram Account Generator through OpenBullet to mass-produce Instagram accounts. The progress I have made seems straight forwards and I was hoping to walk Cracked.to through what I've achieved and get help figuring out what I should do next.
I will be providing the code I have been working with to anyone wanting to experiment themselves or help me along the way
MY PROGRESS
Show ContentSpoiler:
When first running the Instagram generator I was able to create 10 accounts using "Linden :)" as the full name alongside a random string of numbers and letters with an email domain added to the end. Looking something like this: [email protected]. After those accounts were made Instagram put a full stop on the program, sending Recaptcha, email verification and phone verification requests.
Afterwards, I attempted to use proxies to set the verification standards to a neutral level for each time I attempt to make an account. Sadly Instagram flags and detects open proxies, not allowing the usage of them to create accounts. The same thing goes for VPNs, Instagram will give you one creation attempt then block you out with verification requests.
To slip past the verification I made my program act in a more human-like behaviour. I added random delays between each input, more realistic emails and full names, along with Browser Action "Sendhumankeys". That had got me 15 more accounts before Instagram implemented another level of automation detection.
and that brings me to my guesses at what could be holding back my program.
MY GUESS
My best guess is that Instagram using Selenium Detection found at Stackoverflow (https://stackoverflow.com/questions/3322...7#41220267). Or Instagram is tracking mouse movements to differentiate between automation or humans. found at Instagram. (https://help.instagram.com/519522125107875) Where they say,
Quote:"Device operations: information about operations and behaviors performed on the device, such as whether a window is foregrounded or backgrounded, or mouse movements (which can help distinguish humans from bots)."
CONCLUSION
I need help figuring out what my next step is going to be with programming this Account Generator. I would take any support I could get, including people testing the config and giving me insights on how I can improve it.
CODE
this was made with python :3
Random Email Generator:
Things you'll need will be:
- a word list
- a name list
or if you want, here's mine: mega.nz
the exports of the code are in email:fullname formats, I used these formats because they were specific to the requirements for my Instagram config
Code: [align=left]
import random
import string
word_file = r"D:\randwords.txt"
words = open(word_file).read().splitlines()
name_file = r"D:\randnames.txt"
names = open(name_file).read().splitlines()
email = ("aol.com", "att.net", "comcast.net", "facebook.com", "gmail.com", "gmx.com", "googlemail.com", "google.com", "hotmail.com", "hotmail.co.uk", "mac.com", "me.com", "mail.com", "msn.com", "live.com", "sbcglobal.net", "verizon.net", "yahoo.com", "yahoo.co.uk", "email.com", "fastmail.fm", "games.com", "gmx.net", "hush.com", "hushmail.com", "icloud.com", "iname.com", "inbox.com", "lavabit.com", "love.com", "outlook.com", "pobox.com", "protonmail.ch", "protonmail.com", "tutanota.de", "tutanota.com", "tutamail.com", "tuta.io", "keemail.me", "rocketmail.com", "safe-mail.net", "wow.com", "ygm.com", "ymail.com", "zoho.com", "yandex.com", "bellsouth.net", "charter.net", "cox.net", "earthlink.net", "juno.com", "btinternet.com", "virginmedia.com", "blueyonder.co.uk", "freeserve.co.uk", "live.co.uk", "ntlworld.com", "o2.co.uk", "orange.net", "sky.com", "talktalk.co.uk", "tiscali.co.uk", "virgin.net", "wanadoo.co.uk", "bt.com", "sina.com", "sina.cn", "qq.com", "naver.com", "hanmail.net", "daum.net", "nate.com", "yahoo.co.jp", "yahoo.co.kr", "yahoo.co.id", "yahoo.co.in", "yahoo.com.sg", "yahoo.com.ph", "163.com", "yeah.net", "126.com", "21cn.com", "aliyun.com", "foxmail.com", "hotmail.fr", "live.fr", "laposte.net", "yahoo.fr", "wanadoo.fr", "orange.fr", "gmx.fr", "sfr.fr", "neuf.fr", "free.fr", "gmx.de", "hotmail.de", "live.de", "online.de", "t-online.de", "web.de", "yahoo.de", "libero.it", "virgilio.it", "hotmail.it", "aol.it", "tiscali.it", "alice.it", "live.it", "yahoo.it", "email.it", "tin.it", "poste.it", "teletu.it", "mail.ru", "rambler.ru", "yandex.ru", "ya.ru", "list.ru", "hotmail.be", "live.be", "skynet.be", "voo.be", "tvcablenet.be", "telenet.be", "hotmail.com.ar", "live.com.ar", "yahoo.com.ar", "fibertel.com.ar", "speedy.com.ar", "arnet.com.ar", "yahoo.com.mx", "live.com.mx", "hotmail.es", "hotmail.com.mx", "prodigy.net.mx", "yahoo.ca", "hotmail.ca", "bell.net", "shaw.ca", "sympatico.ca", "rogers.com", "yahoo.com.br", "hotmail.com.br", "outlook.com.br", "uol.com.br", "bol.com.br", "terra.com.br", "ig.com.br", "itelefonica.com.br", "r7.com", "zipmail.com.br", "globo.com", "globomail.com", "oi.com.br")
x = 1
rbreak = (".", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "", ".", "-", ".", "-", ".", ".", ".", ".", ".")
while x==1:
randomname1 = random.choice(names)
randomname2 = random.choice(names)
randombreak1 = random.choice(rbreak)
randombreak2 = random.choice(rbreak)
randomemail = random.choice(email)
randomword1 = random.choice(words)
randomword2 = random.choice(words)
random1 = (randomname1, randomword2)
random2 = (randomname2, randomword1)
random3 = (randombreak1, randombreak2)
print(random.choice(random1) + random.choice(random3) + random.choice(random2) + "@" + randomemail + ":" + randomname1 + " " + randomname2)[/align]
and if you want the Instagram Account Generator config:
feel free to dm me :pepegun:
This post is by a banned member (Wayyko) - Unhide
10 June, 2023 - 08:30 PM
Reply
This post is by a banned member (SuperAmine) - Unhide
22 June, 2023 - 12:24 PM
Reply
|