This repository has been archived by the owner on May 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.js
57 lines (56 loc) · 1.67 KB
/
variables.js
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
49
50
51
52
53
54
55
56
57
const variables = {
//Counters
counter1: '95.642.642.124', //Op welk aantal moet de counter beginnen?
counter2: '1.200.000',
counter3: '109.000',
counter4: '250',
counter5: '1.640',
counter6: '84.000',
increaseCounterBy_1: 70, //Per hoeveel moet de counter oplopen?
increaseCounterBy_2: 0.0019,
increaseCounterBy_3: 0,
increaseCounterBy_4: 0.025,
increaseCounterBy_5: 1,
increaseCounterBy_6: 7,
//List Items
listitem1: 'Diabetes type 2 ',
listnumber1: '1.200.000',
listincrease1: '0.0019',
listitem2: 'Hoge bloeddruk',
listnumber2: '2.700.000',
listincrease2: '0.0019',
listitem3: 'Overgewicht ',
listnumber3: '7.000.000',
listincrease3: '0.0019',
listitem4: 'Obesitas',
listnumber4: '2.500.000',
listincrease4: '0.0019',
listitem5: 'Maag-darmaandoeningen',
listnumber5: '2.200.000',
listincrease5: '0.0019',
listitem6: 'Gewrichtsaandoeningen',
listnumber6: '2.000.000',
listincrease6: '0.0019',
listitem7: 'Luchtwegaandoeningen',
listnumber7: '1.200.000',
listincrease7: '0.0019',
listitem8: 'Hart- en vaatzieken*',
listnumber8: '1.500.000',
listincrease8: '0.0019',
listitem9: 'Kanker*',
listnumber9: '109.000',
listincrease9: '0.0019',
listitem10: 'Depressie*',
listnumber10: '1.000.000',
listincrease10: '0.0019',
listitem11: 'Dementie',
listnumber11: '260.000',
listincrease11: '0.0019',
listitem12: 'Migraine ',
listnumber12: '266.000',
listincrease12: '0.0019',
listitem13: 'Nek- en rugaandoeningen ',
listnumber13: '1.950.000',
listincrease13: '0.0019',
};
module.exports.variables = variables;