- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 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
var offers = {
'BM': {
offer_type: 'bonus_months_high',
promos: {
'24' : 'iguazafalls_30m' , // 24 + 3
'12': 'iguazafalls_15m' // 12 + 3
}
},
'CM': {
offer_type: 'extra_gift_very_heavy',
promos: {
'24' : 'iguazafalls_24mp24' , // 24 + 24
'12': 'iguazafalls_12mp12', // 12 + 12
'06': 'iguazafalls_6mp6', // 6 + 6
'03' : 'iguazafalls_3mp3', // 3 + 3
}
},
'cw-heavy': {
offer_type: 'extra_gift_heavy',
promos: {
'24' : 'iguazafalls_24mp12' , // 24+12
'12': 'iguazafalls_12mp6', // 12+6
'06': 'iguazafalls_6mp3', //6+3
}
},
'cw-very-heavy-bonus': {
offer_type: 'bonus_months_very_high',
promos: {
'24' : 'iguazafalls_36M' , // 24+12
}
},
'bm-low': {
offer_type: 'bonus_months_low',
promos: {
'24' : 'iguazafalls_27M' , // 24+3
'12': 'iguazafalls_13M', // 12+1
}
},
'bf-email': {
offer_type: 'bonus_months_low',
promos: {
'24' : 'iguazafalls_27M' , // 24+3
'12': 'iguazafalls_13M', // 12+1
}
},
}