So after some research, I have found a new and yet useless solution, is there a script which could divide a point by a set range?
Like dividing target public key by 1000, 999, 998, 997 etc, we select start and end range for division and it should divide the target as many times as we specify.
For educational purposes only.😉
import bitcoin
import secp256k1 as ice
print("Generating Div-Range...")
target= "03633cbe3ec02b9401c5effa144c5b4d22f87940259634858fc7e59b1c09937852"
print("Target:",target)
Start_Range= 1000
end_Range= 2000
for i in range(Start_Range, end_Range+1):
Div = bitcoin.divide(target, i)
data = open("Div-Range.txt","a")
data.write(str(Div) +"\n")
data.close()