News
LATEST NEWS
FTD 25+ Affiliate Lottery
Are you still sad about the passing summer? Better appreciate the gifts of autumn and get rich! The affiliate lottery prize pool has overflowed and now amounts to 700,000 rubles.
Lottery Details
Time: from 1 October 2020 (00.00) till 1 November 2020 (00.00)
1 lottery ticket is given for an achievement of 25 FTD
If you have a lot of FTD, then 1 lottery ticket is given for every 25 FTD
6 prizes in RUB (USDEUR equivalent on the day of receiving the prize)
220 000
170 000
120 000
100 000
60 000
30 000
The draw will be held on 1 November 2020
The list of lottery tickets is generated automatically
Open the tickets list
Terms of participation
1) Have 25+ FTD from 1 October 2020 (00.00) till 1 November 2020 (00.00)
2) Apply for participation through an affiliate program ticket on any day during the Lottery
3) How to apply: write through the affiliate program messenger from your id: “I want to participate in the FTD Lottery.”
4) All revshare, CPA and brand accounts are involved, except for networks
How the prize draw is held
The draw will be held using this code in Python version 3.4.0 / 3.5.2 / 3.5.1 / 3.6.1 / 3.6.5.
# code that selects winners
import random
import sys
print ("python version -", sys.version)
number of_tickets = ??? # ???? will be replaced by the total number of tickets - it will be known at the time of the drawing
course_euro = ??? # ??? will be replaced by the EUR / USD rate at the close of the session on the next day after the end of ticket issuance xe.com/currencytables/?from=USD
random.seed (euro_ rate)
seats = list (range (1, number of_tickets + 1))
random.shuffle (locations)
print ("220 thousand rubles - ticket #", seats [0])
print ("170 thousand rubles - ticket #", seats [1])
print ("120 thousand rubles - ticket #", seats [2])
print ("100 thousand rubles - ticket #", seats [3])
print ("60 thousand rubles - ticket #", seats [4])
print ("30 thousand rubles - ticket #", seats [5])
You can check the draw code by substituting the exchange rate value and the number of tickets on sites such as:
https://rextester.com/l/python3_online_compiler
https://repl.it/repls/DisgustingSlipperyCommand
https://www.jdoodle.com/python3-programming-online
https://www.onlinegdb.com/online_python_compiler
Simply put
1. Go to the website https://rextester.com/l/python3_online_compiler
2. Copy the code there
3. In the code, replace "???" on the number of tickets and the EUR / USD rate
4. Click Run it