kothariyashhh commited on
Commit
60434a7
·
verified ·
1 Parent(s): 41cb74e

Upload 7 files

Browse files
app.py ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ from predict import InsuranceClaimPredictor
4
+
5
+ # Initialize the predictor
6
+ predictor = InsuranceClaimPredictor('model/insurance_claim_prediction_model.joblib')
7
+
8
+ # Title of the Streamlit app
9
+ st.title('Insurance Claim Prediction')
10
+
11
+ # Sidebar for user input
12
+ st.sidebar.header('User Input Parameters')
13
+
14
+ def user_input_features():
15
+ age = st.sidebar.number_input('Age (in years)', min_value=0, max_value=100, value=40)
16
+
17
+ sex = st.sidebar.selectbox('Sex', ['male', 'female'])
18
+
19
+ bmi = st.sidebar.number_input('BMI (Body Mass Index)', min_value=0.0, max_value=50.0, value=25.3)
20
+
21
+ children = st.sidebar.number_input('Number of Children', min_value=0, max_value=10, value=2)
22
+
23
+ smoker = st.sidebar.selectbox('Smoker', ['yes', 'no'])
24
+
25
+ region = st.sidebar.selectbox('Region', ['northeast', 'northwest', 'southeast', 'southwest'])
26
+
27
+ charges = st.sidebar.number_input('Medical Charges ($)', min_value=0.0, max_value=100000.0, value=2900.0)
28
+
29
+
30
+ data = {'age': age,
31
+ 'sex': sex,
32
+ 'bmi': bmi,
33
+ 'children': children,
34
+ 'smoker': smoker,
35
+ 'region': region,
36
+ 'charges': charges}
37
+ features = pd.DataFrame(data, index=[0])
38
+ return features
39
+
40
+ df = user_input_features()
41
+
42
+ # Button for prediction
43
+ if st.sidebar.button('Predict'):
44
+ # Make prediction
45
+ prediction = predictor.predict(df)
46
+
47
+ # Display the prediction
48
+ if prediction[0] == 1:
49
+ st.sidebar.success('This person is likely to make an insurance claim.')
50
+ else:
51
+ st.sidebar.info('This person is less likely to make an insurance claim.')
52
+
53
+ # Display user input
54
+ st.subheader('User Input Parameters')
55
+
56
+ # Add descriptions for each input
57
+ st.write("""
58
+ - **Age**: The age of the individual.
59
+ - **Sex**: The gender of the individual.
60
+ - **BMI**: Body Mass Index, a measure of body fat based on height and weight.
61
+ - **Number of Children**: Number of children or dependents.
62
+ - **Smoker**: Whether the individual is a smoker.
63
+ - **Region**: The geographical region where the individual resides.
64
+ - **Medical Charges**: Annual medical charges billed.
65
+ """)
66
+
67
+ # Demo data
68
+ st.subheader('Demo Data')
69
+
70
+ # Sample data for demo
71
+ demo_data = pd.DataFrame({
72
+ 'age': [23, 45],
73
+ 'sex': ['female', 'male'],
74
+ 'bmi': [22.0, 30.0],
75
+ 'children': [0, 2],
76
+ 'smoker': ['no', 'yes'],
77
+ 'region': ['southeast', 'northwest'],
78
+ 'charges': [2000.0, 12000.0],
79
+ 'claim': ['No', 'Yes']
80
+ })
81
+
82
+ st.write(demo_data)
83
+
84
+ # Notifications for analysis
85
+ st.subheader('Analysis Dashboard')
86
+
87
+ claimed_data = demo_data[demo_data['claim'] == 'Yes']
88
+ not_claimed_data = demo_data[demo_data['claim'] == 'No']
89
+
90
+
91
+ st.write(f"### Charges Analysis")
92
+ st.write(f"- **Average charges for claims made**: ${claimed_data['charges'].mean():.2f}")
93
+ st.write(f"- **Average charges for claims not made**: ${not_claimed_data['charges'].mean():.2f}")
dataset/insurance2.csv ADDED
@@ -0,0 +1,1339 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ age,sex,bmi,children,smoker,region,charges,insuranceclaim
2
+ 19,0,27.9,0,1,3,16884.924,1
3
+ 18,1,33.77,1,0,2,1725.5523,1
4
+ 28,1,33,3,0,2,4449.462,0
5
+ 33,1,22.705,0,0,1,21984.47061,0
6
+ 32,1,28.88,0,0,1,3866.8552,1
7
+ 31,0,25.74,0,0,2,3756.6216,0
8
+ 46,0,33.44,1,0,2,8240.5896,1
9
+ 37,0,27.74,3,0,1,7281.5056,0
10
+ 37,1,29.83,2,0,0,6406.4107,0
11
+ 60,0,25.84,0,0,1,28923.13692,0
12
+ 25,1,26.22,0,0,0,2721.3208,1
13
+ 62,0,26.29,0,1,2,27808.7251,1
14
+ 23,1,34.4,0,0,3,1826.843,1
15
+ 56,0,39.82,0,0,2,11090.7178,1
16
+ 27,1,42.13,0,1,2,39611.7577,1
17
+ 19,1,24.6,1,0,3,1837.237,0
18
+ 52,0,30.78,1,0,0,10797.3362,1
19
+ 23,1,23.845,0,0,0,2395.17155,0
20
+ 56,1,40.3,0,0,3,10602.385,1
21
+ 30,1,35.3,0,1,3,36837.467,1
22
+ 60,0,36.005,0,0,0,13228.84695,1
23
+ 30,0,32.4,1,0,3,4149.736,1
24
+ 18,1,34.1,0,0,2,1137.011,1
25
+ 34,0,31.92,1,1,0,37701.8768,1
26
+ 37,1,28.025,2,0,1,6203.90175,0
27
+ 59,0,27.72,3,0,2,14001.1338,1
28
+ 63,0,23.085,0,0,0,14451.83515,0
29
+ 55,0,32.775,2,0,1,12268.63225,0
30
+ 23,1,17.385,1,0,1,2775.19215,1
31
+ 31,1,36.3,2,1,3,38711,1
32
+ 22,1,35.6,0,1,3,35585.576,1
33
+ 18,0,26.315,0,0,0,2198.18985,1
34
+ 19,0,28.6,5,0,3,4687.797,0
35
+ 63,1,28.31,0,0,1,13770.0979,1
36
+ 28,1,36.4,1,1,3,51194.55914,1
37
+ 19,1,20.425,0,0,1,1625.43375,0
38
+ 62,0,32.965,3,0,1,15612.19335,0
39
+ 26,1,20.8,0,0,3,2302.3,0
40
+ 35,1,36.67,1,1,0,39774.2763,1
41
+ 60,1,39.9,0,1,3,48173.361,1
42
+ 24,0,26.6,0,0,0,3046.062,1
43
+ 31,0,36.63,2,0,2,4949.7587,0
44
+ 41,1,21.78,1,0,2,6272.4772,0
45
+ 37,0,30.8,2,0,2,6313.759,0
46
+ 38,1,37.05,1,0,0,6079.6715,0
47
+ 55,1,37.3,0,0,3,20630.28351,1
48
+ 18,0,38.665,2,0,0,3393.35635,0
49
+ 28,0,34.77,0,0,1,3556.9223,1
50
+ 60,0,24.53,0,0,2,12629.8967,0
51
+ 36,1,35.2,1,1,2,38709.176,1
52
+ 18,0,35.625,0,0,0,2211.13075,1
53
+ 21,0,33.63,2,0,1,3579.8287,0
54
+ 48,1,28,1,1,3,23568.272,1
55
+ 36,1,34.43,0,1,2,37742.5757,1
56
+ 40,0,28.69,3,0,1,8059.6791,0
57
+ 58,1,36.955,2,1,1,47496.49445,1
58
+ 58,0,31.825,2,0,0,13607.36875,0
59
+ 18,1,31.68,2,1,2,34303.1672,1
60
+ 53,0,22.88,1,1,2,23244.7902,1
61
+ 34,0,37.335,2,0,1,5989.52365,0
62
+ 43,1,27.36,3,0,0,8606.2174,1
63
+ 25,1,33.66,4,0,2,4504.6624,0
64
+ 64,1,24.7,1,0,1,30166.61817,0
65
+ 28,0,25.935,1,0,1,4133.64165,0
66
+ 20,0,22.42,0,1,1,14711.7438,1
67
+ 19,0,28.9,0,0,3,1743.214,1
68
+ 61,0,39.1,2,0,3,14235.072,1
69
+ 40,1,26.315,1,0,1,6389.37785,0
70
+ 40,0,36.19,0,0,2,5920.1041,1
71
+ 28,1,23.98,3,1,2,17663.1442,0
72
+ 27,0,24.75,0,1,2,16577.7795,1
73
+ 31,1,28.5,5,0,0,6799.458,0
74
+ 53,0,28.1,3,0,3,11741.726,1
75
+ 58,1,32.01,1,0,2,11946.6259,1
76
+ 44,1,27.4,2,0,3,7726.854,1
77
+ 57,1,34.01,0,0,1,11356.6609,1
78
+ 29,0,29.59,1,0,2,3947.4131,0
79
+ 21,1,35.53,0,0,2,1532.4697,1
80
+ 22,0,39.805,0,0,0,2755.02095,1
81
+ 41,0,32.965,0,0,1,6571.02435,1
82
+ 31,1,26.885,1,0,0,4441.21315,0
83
+ 45,0,38.285,0,0,0,7935.29115,1
84
+ 22,1,37.62,1,1,2,37165.1638,1
85
+ 48,0,41.23,4,0,1,11033.6617,0
86
+ 37,0,34.8,2,1,3,39836.519,1
87
+ 45,1,22.895,2,1,1,21098.55405,1
88
+ 57,0,31.16,0,1,1,43578.9394,1
89
+ 56,0,27.2,0,0,3,11073.176,1
90
+ 46,0,27.74,0,0,1,8026.6666,1
91
+ 55,0,26.98,0,0,1,11082.5772,1
92
+ 21,0,39.49,0,0,2,2026.9741,1
93
+ 53,0,24.795,1,0,1,10942.13205,0
94
+ 59,1,29.83,3,1,0,30184.9367,1
95
+ 35,1,34.77,2,0,1,5729.0053,0
96
+ 64,0,31.3,2,1,3,47291.055,1
97
+ 28,0,37.62,1,0,2,3766.8838,0
98
+ 54,0,30.8,3,0,3,12105.32,0
99
+ 55,1,38.28,0,0,2,10226.2842,1
100
+ 56,1,19.95,0,1,0,22412.6485,1
101
+ 38,1,19.3,0,1,3,15820.699,1
102
+ 41,0,31.6,0,0,3,6186.127,1
103
+ 30,1,25.46,0,0,0,3645.0894,0
104
+ 18,0,30.115,0,0,0,21344.8467,1
105
+ 61,0,29.92,3,1,2,30942.1918,1
106
+ 34,0,27.5,1,0,3,5003.853,0
107
+ 20,1,28.025,1,1,1,17560.37975,1
108
+ 19,0,28.4,1,0,3,2331.519,0
109
+ 26,1,30.875,2,0,1,3877.30425,0
110
+ 29,1,27.94,0,0,2,2867.1196,1
111
+ 63,1,35.09,0,1,2,47055.5321,1
112
+ 54,1,33.63,1,0,1,10825.2537,1
113
+ 55,0,29.7,2,0,3,11881.358,1
114
+ 37,1,30.8,0,0,3,4646.759,1
115
+ 21,0,35.72,0,0,1,2404.7338,1
116
+ 52,1,32.205,3,0,0,11488.31695,0
117
+ 60,1,28.595,0,0,0,30259.99556,1
118
+ 58,1,49.06,0,0,2,11381.3254,1
119
+ 29,0,27.94,1,1,2,19107.7796,1
120
+ 49,0,27.17,0,0,2,8601.3293,1
121
+ 37,0,23.37,2,0,1,6686.4313,0
122
+ 44,1,37.1,2,0,3,7740.337,1
123
+ 18,1,23.75,0,0,0,1705.6245,0
124
+ 20,0,28.975,0,0,1,2257.47525,1
125
+ 44,1,31.35,1,1,0,39556.4945,1
126
+ 47,0,33.915,3,0,1,10115.00885,0
127
+ 26,0,28.785,0,0,0,3385.39915,1
128
+ 19,0,28.3,0,1,3,17081.08,1
129
+ 52,0,37.4,0,0,3,9634.538,1
130
+ 32,0,17.765,2,1,1,32734.1863,0
131
+ 38,1,34.7,2,0,3,6082.405,0
132
+ 59,0,26.505,0,0,0,12815.44495,1
133
+ 61,0,22.04,0,0,0,13616.3586,0
134
+ 53,0,35.9,2,0,3,11163.568,1
135
+ 19,1,25.555,0,0,1,1632.56445,0
136
+ 20,0,28.785,0,0,0,2457.21115,1
137
+ 22,0,28.05,0,0,2,2155.6815,1
138
+ 19,1,34.1,0,0,3,1261.442,1
139
+ 22,1,25.175,0,0,1,2045.68525,0
140
+ 54,0,31.9,3,0,2,27322.73386,0
141
+ 22,0,36,0,0,3,2166.732,1
142
+ 34,1,22.42,2,0,0,27375.90478,0
143
+ 26,1,32.49,1,0,0,3490.5491,1
144
+ 34,1,25.3,2,1,2,18972.495,0
145
+ 29,1,29.735,2,0,1,18157.876,0
146
+ 30,1,28.69,3,1,1,20745.9891,0
147
+ 29,0,38.83,3,0,2,5138.2567,0
148
+ 46,1,30.495,3,1,1,40720.55105,1
149
+ 51,0,37.73,1,0,2,9877.6077,1
150
+ 53,0,37.43,1,0,1,10959.6947,1
151
+ 19,1,28.4,1,0,3,1842.519,0
152
+ 35,1,24.13,1,0,1,5125.2157,0
153
+ 48,1,29.7,0,0,2,7789.635,1
154
+ 32,0,37.145,3,0,0,6334.34355,0
155
+ 42,0,23.37,0,1,0,19964.7463,1
156
+ 40,0,25.46,1,0,0,7077.1894,0
157
+ 44,1,39.52,0,0,1,6948.7008,1
158
+ 48,1,24.42,0,1,2,21223.6758,1
159
+ 18,1,25.175,0,1,0,15518.18025,1
160
+ 30,1,35.53,0,1,2,36950.2567,1
161
+ 50,0,27.83,3,0,2,19749.38338,1
162
+ 42,0,26.6,0,1,1,21348.706,1
163
+ 18,0,36.85,0,1,2,36149.4835,1
164
+ 54,1,39.6,1,0,3,10450.552,1
165
+ 32,0,29.8,2,0,3,5152.134,0
166
+ 37,1,29.64,0,0,1,5028.1466,1
167
+ 47,1,28.215,4,0,0,10407.08585,1
168
+ 20,0,37,5,0,3,4830.63,0
169
+ 32,0,33.155,3,0,1,6128.79745,0
170
+ 19,0,31.825,1,0,1,2719.27975,1
171
+ 27,1,18.905,3,0,0,4827.90495,0
172
+ 63,1,41.47,0,0,2,13405.3903,1
173
+ 49,1,30.3,0,0,3,8116.68,1
174
+ 18,1,15.96,0,0,0,1694.7964,1
175
+ 35,0,34.8,1,0,3,5246.047,1
176
+ 24,0,33.345,0,0,1,2855.43755,1
177
+ 63,0,37.7,0,1,3,48824.45,1
178
+ 38,1,27.835,2,0,1,6455.86265,0
179
+ 54,1,29.2,1,0,3,10436.096,0
180
+ 46,0,28.9,2,0,3,8823.279,1
181
+ 41,0,33.155,3,0,0,8538.28845,0
182
+ 58,1,28.595,0,0,1,11735.87905,1
183
+ 18,0,38.28,0,0,2,1631.8212,1
184
+ 22,1,19.95,3,0,0,4005.4225,0
185
+ 44,0,26.41,0,0,1,7419.4779,1
186
+ 44,1,30.69,2,0,2,7731.4271,0
187
+ 36,1,41.895,3,1,0,43753.33705,1
188
+ 26,0,29.92,2,0,2,3981.9768,0
189
+ 30,0,30.9,3,0,3,5325.651,0
190
+ 41,0,32.2,1,0,3,6775.961,1
191
+ 29,0,32.11,2,0,1,4922.9159,0
192
+ 61,1,31.57,0,0,2,12557.6053,1
193
+ 36,0,26.2,0,0,3,4883.866,1
194
+ 25,1,25.74,0,0,2,2137.6536,0
195
+ 56,0,26.6,1,0,1,12044.342,0
196
+ 18,1,34.43,0,0,2,1137.4697,1
197
+ 19,1,30.59,0,0,1,1639.5631,1
198
+ 39,0,32.8,0,0,3,5649.715,1
199
+ 45,0,28.6,2,0,2,8516.829,1
200
+ 51,0,18.05,0,0,1,9644.2525,0
201
+ 64,0,39.33,0,0,0,14901.5167,1
202
+ 19,0,32.11,0,0,1,2130.6759,1
203
+ 48,0,32.23,1,0,2,8871.1517,1
204
+ 60,0,24.035,0,0,1,13012.20865,0
205
+ 27,0,36.08,0,1,2,37133.8982,1
206
+ 46,1,22.3,0,0,3,7147.105,0
207
+ 28,0,28.88,1,0,0,4337.7352,0
208
+ 59,1,26.4,0,0,2,11743.299,1
209
+ 35,1,27.74,2,1,0,20984.0936,0
210
+ 63,0,31.8,0,0,3,13880.949,1
211
+ 40,1,41.23,1,0,0,6610.1097,1
212
+ 20,1,33,1,0,3,1980.07,1
213
+ 40,1,30.875,4,0,1,8162.71625,0
214
+ 24,1,28.5,2,0,1,3537.703,0
215
+ 34,0,26.73,1,0,2,5002.7827,0
216
+ 45,0,30.9,2,0,3,8520.026,0
217
+ 41,0,37.1,2,0,3,7371.772,1
218
+ 53,0,26.6,0,0,1,10355.641,1
219
+ 27,1,23.1,0,0,2,2483.736,0
220
+ 26,0,29.92,1,0,2,3392.9768,0
221
+ 24,0,23.21,0,0,2,25081.76784,0
222
+ 34,0,33.7,1,0,3,5012.471,1
223
+ 53,0,33.25,0,0,0,10564.8845,1
224
+ 32,1,30.8,3,0,3,5253.524,0
225
+ 19,1,34.8,0,1,3,34779.615,1
226
+ 42,1,24.64,0,1,2,19515.5416,1
227
+ 55,1,33.88,3,0,2,11987.1682,0
228
+ 28,1,38.06,0,0,2,2689.4954,1
229
+ 58,0,41.91,0,0,2,24227.33724,1
230
+ 41,0,31.635,1,0,0,7358.17565,1
231
+ 47,1,25.46,2,0,0,9225.2564,1
232
+ 42,0,36.195,1,0,1,7443.64305,1
233
+ 59,0,27.83,3,0,2,14001.2867,1
234
+ 19,0,17.8,0,0,3,1727.785,0
235
+ 59,1,27.5,1,0,3,12333.828,0
236
+ 39,1,24.51,2,0,1,6710.1919,0
237
+ 40,0,22.22,2,1,2,19444.2658,0
238
+ 18,0,26.73,0,0,2,1615.7667,1
239
+ 31,1,38.39,2,0,2,4463.2051,0
240
+ 19,1,29.07,0,1,1,17352.6803,1
241
+ 44,1,38.06,1,0,2,7152.6714,1
242
+ 23,0,36.67,2,1,0,38511.6283,1
243
+ 33,0,22.135,1,0,0,5354.07465,0
244
+ 55,0,26.8,1,0,3,35160.13457,0
245
+ 40,1,35.3,3,0,3,7196.867,0
246
+ 63,0,27.74,0,1,0,29523.1656,1
247
+ 54,1,30.02,0,0,1,24476.47851,1
248
+ 60,0,38.06,0,0,2,12648.7034,1
249
+ 24,1,35.86,0,0,2,1986.9334,1
250
+ 19,1,20.9,1,0,3,1832.094,0
251
+ 29,1,28.975,1,0,0,4040.55825,0
252
+ 18,1,17.29,2,1,0,12829.4551,0
253
+ 63,0,32.2,2,1,3,47305.305,1
254
+ 54,1,34.21,2,1,2,44260.7499,1
255
+ 27,1,30.3,3,0,3,4260.744,0
256
+ 50,1,31.825,0,1,0,41097.16175,1
257
+ 55,0,25.365,3,0,0,13047.33235,1
258
+ 56,1,33.63,0,1,1,43921.1837,1
259
+ 38,0,40.15,0,0,2,5400.9805,1
260
+ 51,1,24.415,4,0,1,11520.09985,0
261
+ 19,1,31.92,0,1,1,33750.2918,1
262
+ 58,0,25.2,0,0,3,11837.16,0
263
+ 20,0,26.84,1,1,2,17085.2676,1
264
+ 52,1,24.32,3,1,0,24869.8368,1
265
+ 19,1,36.955,0,1,1,36219.40545,1
266
+ 53,0,38.06,3,0,2,20462.99766,0
267
+ 46,1,42.35,3,1,2,46151.1245,1
268
+ 40,1,19.8,1,1,2,17179.522,1
269
+ 59,0,32.395,3,0,0,14590.63205,0
270
+ 45,1,30.2,1,0,3,7441.053,1
271
+ 49,1,25.84,1,0,0,9282.4806,0
272
+ 18,1,29.37,1,0,2,1719.4363,0
273
+ 50,1,34.2,2,1,3,42856.838,1
274
+ 41,1,37.05,2,0,1,7265.7025,1
275
+ 50,1,27.455,1,0,0,9617.66245,0
276
+ 25,1,27.55,0,0,1,2523.1695,1
277
+ 47,0,26.6,2,0,0,9715.841,1
278
+ 19,1,20.615,2,0,1,2803.69785,0
279
+ 22,0,24.3,0,0,3,2150.469,0
280
+ 59,1,31.79,2,0,2,12928.7911,0
281
+ 51,0,21.56,1,0,2,9855.1314,0
282
+ 40,0,28.12,1,1,0,22331.5668,1
283
+ 54,1,40.565,3,1,0,48549.17835,1
284
+ 30,1,27.645,1,0,0,4237.12655,0
285
+ 55,0,32.395,1,0,0,11879.10405,1
286
+ 52,0,31.2,0,0,3,9625.92,1
287
+ 46,1,26.62,1,0,2,7742.1098,0
288
+ 46,0,48.07,2,0,0,9432.9253,1
289
+ 63,0,26.22,0,0,1,14256.1928,1
290
+ 59,0,36.765,1,1,0,47896.79135,1
291
+ 52,1,26.4,3,0,2,25992.82104,1
292
+ 28,0,33.4,0,0,3,3172.018,1
293
+ 29,1,29.64,1,0,0,20277.80751,0
294
+ 25,1,45.54,2,1,2,42112.2356,1
295
+ 22,0,28.82,0,0,2,2156.7518,1
296
+ 25,1,26.8,3,0,3,3906.127,0
297
+ 18,1,22.99,0,0,0,1704.5681,0
298
+ 19,1,27.7,0,1,3,16297.846,1
299
+ 47,1,25.41,1,1,2,21978.6769,1
300
+ 31,1,34.39,3,1,1,38746.3551,1
301
+ 48,0,28.88,1,0,1,9249.4952,0
302
+ 36,1,27.55,3,0,0,6746.7425,0
303
+ 53,0,22.61,3,1,0,24873.3849,1
304
+ 56,0,37.51,2,0,2,12265.5069,1
305
+ 28,0,33,2,0,2,4349.462,0
306
+ 57,0,38,2,0,3,12646.207,1
307
+ 29,1,33.345,2,0,1,19442.3535,0
308
+ 28,0,27.5,2,0,3,20177.67113,0
309
+ 30,0,33.33,1,0,2,4151.0287,1
310
+ 58,1,34.865,0,0,0,11944.59435,1
311
+ 41,0,33.06,2,0,1,7749.1564,0
312
+ 50,1,26.6,0,0,3,8444.474,1
313
+ 19,0,24.7,0,0,3,1737.376,0
314
+ 43,1,35.97,3,1,2,42124.5153,1
315
+ 49,1,35.86,0,0,2,8124.4084,1
316
+ 27,0,31.4,0,1,3,34838.873,1
317
+ 52,1,33.25,0,0,0,9722.7695,1
318
+ 50,1,32.205,0,0,1,8835.26495,1
319
+ 54,1,32.775,0,0,0,10435.06525,1
320
+ 44,0,27.645,0,0,1,7421.19455,1
321
+ 32,1,37.335,1,0,0,4667.60765,0
322
+ 34,1,25.27,1,0,1,4894.7533,0
323
+ 26,0,29.64,4,0,0,24671.66334,0
324
+ 34,1,30.8,0,1,3,35491.64,1
325
+ 57,1,40.945,0,0,0,11566.30055,1
326
+ 29,1,27.2,0,0,3,2866.091,1
327
+ 40,1,34.105,1,0,0,6600.20595,1
328
+ 27,0,23.21,1,0,2,3561.8889,0
329
+ 45,1,36.48,2,1,1,42760.5022,1
330
+ 64,0,33.8,1,1,3,47928.03,1
331
+ 52,1,36.7,0,0,3,9144.565,1
332
+ 61,0,36.385,1,1,0,48517.56315,1
333
+ 52,1,27.36,0,1,1,24393.6224,1
334
+ 61,0,31.16,0,0,1,13429.0354,1
335
+ 56,0,28.785,0,0,0,11658.37915,1
336
+ 43,0,35.72,2,0,0,19144.57652,1
337
+ 64,1,34.5,0,0,3,13822.803,1
338
+ 60,1,25.74,0,0,2,12142.5786,0
339
+ 62,1,27.55,1,0,1,13937.6665,0
340
+ 50,1,32.3,1,1,0,41919.097,1
341
+ 46,0,27.72,1,0,2,8232.6388,0
342
+ 24,0,27.6,0,0,3,18955.22017,1
343
+ 62,1,30.02,0,0,1,13352.0998,1
344
+ 60,0,27.55,0,0,0,13217.0945,1
345
+ 63,1,36.765,0,0,0,13981.85035,1
346
+ 49,0,41.47,4,0,2,10977.2063,0
347
+ 34,0,29.26,3,0,2,6184.2994,0
348
+ 33,1,35.75,2,0,2,4889.9995,0
349
+ 46,1,33.345,1,0,0,8334.45755,1
350
+ 36,0,29.92,1,0,2,5478.0368,0
351
+ 19,1,27.835,0,0,1,1635.73365,1
352
+ 57,0,23.18,0,0,1,11830.6072,0
353
+ 50,0,25.6,0,0,3,8932.084,0
354
+ 30,0,27.7,0,0,3,3554.203,1
355
+ 33,1,35.245,0,0,0,12404.8791,1
356
+ 18,0,38.28,0,0,2,14133.03775,1
357
+ 46,1,27.6,0,0,3,24603.04837,1
358
+ 46,1,43.89,3,0,2,8944.1151,0
359
+ 47,1,29.83,3,0,1,9620.3307,1
360
+ 23,1,41.91,0,0,2,1837.2819,1
361
+ 18,0,20.79,0,0,2,1607.5101,0
362
+ 48,0,32.3,2,0,0,10043.249,0
363
+ 35,1,30.5,1,0,3,4751.07,0
364
+ 19,0,21.7,0,1,3,13844.506,1
365
+ 21,0,26.4,1,0,3,2597.779,0
366
+ 21,0,21.89,2,0,2,3180.5101,0
367
+ 49,0,30.78,1,0,0,9778.3472,1
368
+ 56,0,32.3,3,0,0,13430.265,0
369
+ 42,0,24.985,2,0,1,8017.06115,0
370
+ 44,1,32.015,2,0,1,8116.26885,0
371
+ 18,1,30.4,3,0,0,3481.868,0
372
+ 61,0,21.09,0,0,1,13415.0381,0
373
+ 57,0,22.23,0,0,0,12029.2867,0
374
+ 42,0,33.155,1,0,0,7639.41745,1
375
+ 26,1,32.9,2,1,3,36085.219,1
376
+ 20,1,33.33,0,0,2,1391.5287,1
377
+ 23,0,28.31,0,1,1,18033.9679,1
378
+ 39,0,24.89,3,1,0,21659.9301,0
379
+ 24,1,40.15,0,1,2,38126.2465,1
380
+ 64,0,30.115,3,0,1,16455.70785,0
381
+ 62,1,31.46,1,0,2,27000.98473,1
382
+ 27,0,17.955,2,1,0,15006.57945,0
383
+ 55,1,30.685,0,1,0,42303.69215,1
384
+ 55,1,33,0,0,2,20781.48892,1
385
+ 35,0,43.34,2,0,2,5846.9176,0
386
+ 44,1,22.135,2,0,0,8302.53565,0
387
+ 19,1,34.4,0,0,3,1261.859,1
388
+ 58,0,39.05,0,0,2,11856.4115,1
389
+ 50,1,25.365,2,0,1,30284.64294,1
390
+ 26,0,22.61,0,0,1,3176.8159,0
391
+ 24,0,30.21,3,0,1,4618.0799,0
392
+ 48,1,35.625,4,0,0,10736.87075,0
393
+ 19,0,37.43,0,0,1,2138.0707,1
394
+ 48,1,31.445,1,0,0,8964.06055,1
395
+ 49,1,31.35,1,0,0,9290.1395,1
396
+ 46,0,32.3,2,0,0,9411.005,0
397
+ 46,1,19.855,0,0,1,7526.70645,0
398
+ 43,0,34.4,3,0,3,8522.003,0
399
+ 21,1,31.02,0,0,2,16586.49771,1
400
+ 64,1,25.6,2,0,3,14988.432,1
401
+ 18,0,38.17,0,0,2,1631.6683,1
402
+ 51,0,20.6,0,0,3,9264.797,0
403
+ 47,1,47.52,1,0,2,8083.9198,1
404
+ 64,0,32.965,0,0,1,14692.66935,1
405
+ 49,1,32.3,3,0,1,10269.46,0
406
+ 31,1,20.4,0,0,3,3260.199,0
407
+ 52,0,38.38,2,0,0,11396.9002,1
408
+ 33,0,24.31,0,0,2,4185.0979,0
409
+ 47,0,23.6,1,0,3,8539.671,0
410
+ 38,1,21.12,3,0,2,6652.5288,0
411
+ 32,1,30.03,1,0,2,4074.4537,0
412
+ 19,1,17.48,0,0,1,1621.3402,1
413
+ 44,0,20.235,1,1,0,19594.80965,1
414
+ 26,0,17.195,2,1,0,14455.64405,0
415
+ 25,1,23.9,5,0,3,5080.096,0
416
+ 19,0,35.15,0,0,1,2134.9015,1
417
+ 43,0,35.64,1,0,2,7345.7266,1
418
+ 52,1,34.1,0,0,2,9140.951,1
419
+ 36,0,22.6,2,1,3,18608.262,0
420
+ 64,1,39.16,1,0,2,14418.2804,1
421
+ 63,0,26.98,0,1,1,28950.4692,1
422
+ 64,1,33.88,0,1,2,46889.2612,1
423
+ 61,1,35.86,0,1,2,46599.1084,1
424
+ 40,1,32.775,1,1,0,39125.33225,1
425
+ 25,1,30.59,0,0,0,2727.3951,1
426
+ 48,1,30.2,2,0,3,8968.33,0
427
+ 45,1,24.31,5,0,2,9788.8659,0
428
+ 38,0,27.265,1,0,0,6555.07035,0
429
+ 18,0,29.165,0,0,0,7323.734819,1
430
+ 21,0,16.815,1,0,0,3167.45585,1
431
+ 27,0,30.4,3,0,1,18804.7524,0
432
+ 19,1,33.1,0,0,3,23082.95533,1
433
+ 29,0,20.235,2,0,1,4906.40965,0
434
+ 42,1,26.9,0,0,3,5969.723,1
435
+ 60,0,30.5,0,0,3,12638.195,1
436
+ 31,1,28.595,1,0,1,4243.59005,0
437
+ 60,1,33.11,3,0,2,13919.8229,0
438
+ 22,1,31.73,0,0,0,2254.7967,1
439
+ 35,1,28.9,3,0,3,5926.846,0
440
+ 52,0,46.75,5,0,2,12592.5345,1
441
+ 26,1,29.45,0,0,0,2897.3235,1
442
+ 31,0,32.68,1,0,1,4738.2682,1
443
+ 33,0,33.5,0,1,3,37079.372,1
444
+ 18,1,43.01,0,0,2,1149.3959,1
445
+ 59,0,36.52,1,0,2,28287.89766,1
446
+ 56,1,26.695,1,1,1,26109.32905,1
447
+ 45,0,33.1,0,0,3,7345.084,1
448
+ 60,1,29.64,0,0,0,12730.9996,1
449
+ 56,0,25.65,0,0,1,11454.0215,0
450
+ 40,0,29.6,0,0,3,5910.944,1
451
+ 35,1,38.6,1,0,3,4762.329,0
452
+ 39,1,29.6,4,0,3,7512.267,0
453
+ 30,1,24.13,1,0,1,4032.2407,0
454
+ 24,1,23.4,0,0,3,1969.614,0
455
+ 20,1,29.735,0,0,1,1769.53165,1
456
+ 32,1,46.53,2,0,2,4686.3887,1
457
+ 59,1,37.4,0,0,3,21797.0004,1
458
+ 55,0,30.14,2,0,2,11881.9696,0
459
+ 57,0,30.495,0,0,1,11840.77505,1
460
+ 56,1,39.6,0,0,3,10601.412,1
461
+ 40,0,33,3,0,2,7682.67,0
462
+ 49,0,36.63,3,0,2,10381.4787,0
463
+ 42,1,30,0,1,3,22144.032,1
464
+ 62,0,38.095,2,0,0,15230.32405,1
465
+ 56,1,25.935,0,0,0,11165.41765,0
466
+ 19,1,25.175,0,0,1,1632.03625,0
467
+ 30,0,28.38,1,1,2,19521.9682,1
468
+ 60,0,28.7,1,0,3,13224.693,0
469
+ 56,0,33.82,2,0,1,12643.3778,0
470
+ 28,0,24.32,1,0,0,23288.9284,0
471
+ 18,0,24.09,1,0,2,2201.0971,0
472
+ 27,1,32.67,0,0,2,2497.0383,1
473
+ 18,0,30.115,0,0,0,2203.47185,1
474
+ 19,0,29.8,0,0,3,1744.465,1
475
+ 47,0,33.345,0,0,0,20878.78443,1
476
+ 54,1,25.1,3,1,3,25382.297,1
477
+ 61,1,28.31,1,1,1,28868.6639,1
478
+ 24,1,28.5,0,1,0,35147.52848,1
479
+ 25,1,35.625,0,0,1,2534.39375,1
480
+ 21,1,36.85,0,0,2,1534.3045,1
481
+ 23,1,32.56,0,0,2,1824.2854,1
482
+ 63,1,41.325,3,0,1,15555.18875,0
483
+ 49,1,37.51,2,0,2,9304.7019,1
484
+ 18,0,31.35,0,0,2,1622.1885,1
485
+ 51,0,39.5,1,0,3,9880.068,1
486
+ 48,1,34.3,3,0,3,9563.029,0
487
+ 31,0,31.065,0,0,0,4347.02335,1
488
+ 54,0,21.47,3,0,1,12475.3513,0
489
+ 19,1,28.7,0,0,3,1253.936,1
490
+ 44,0,38.06,0,1,2,48885.13561,1
491
+ 53,1,31.16,1,0,1,10461.9794,1
492
+ 19,0,32.9,0,0,3,1748.774,1
493
+ 61,0,25.08,0,0,2,24513.09126,0
494
+ 18,0,25.08,0,0,0,2196.4732,0
495
+ 61,1,43.4,0,0,3,12574.049,1
496
+ 21,1,25.7,4,1,3,17942.106,0
497
+ 20,1,27.93,0,0,0,1967.0227,1
498
+ 31,0,23.6,2,0,3,4931.647,0
499
+ 45,1,28.7,2,0,3,8027.968,1
500
+ 44,0,23.98,2,0,2,8211.1002,0
501
+ 62,0,39.2,0,0,3,13470.86,1
502
+ 29,1,34.4,0,1,3,36197.699,1
503
+ 43,1,26.03,0,0,0,6837.3687,1
504
+ 51,1,23.21,1,1,2,22218.1149,1
505
+ 19,1,30.25,0,1,2,32548.3405,1
506
+ 38,0,28.93,1,0,2,5974.3847,0
507
+ 37,1,30.875,3,0,1,6796.86325,0
508
+ 22,1,31.35,1,0,1,2643.2685,1
509
+ 21,1,23.75,2,0,1,3077.0955,0
510
+ 24,0,25.27,0,0,0,3044.2133,0
511
+ 57,0,28.7,0,0,3,11455.28,1
512
+ 56,1,32.11,1,0,0,11763.0009,1
513
+ 27,1,33.66,0,0,2,2498.4144,1
514
+ 51,1,22.42,0,0,0,9361.3268,0
515
+ 19,1,30.4,0,0,3,1256.299,1
516
+ 39,1,28.3,1,1,3,21082.16,1
517
+ 58,1,35.7,0,0,3,11362.755,1
518
+ 20,1,35.31,1,0,2,27724.28875,0
519
+ 45,1,30.495,2,0,1,8413.46305,0
520
+ 35,0,31,1,0,3,5240.765,0
521
+ 31,1,30.875,0,0,0,3857.75925,1
522
+ 50,0,27.36,0,0,0,25656.57526,1
523
+ 32,0,44.22,0,0,2,3994.1778,1
524
+ 51,0,33.915,0,0,0,9866.30485,1
525
+ 38,0,37.73,0,0,2,5397.6167,1
526
+ 42,1,26.07,1,1,2,38245.59327,1
527
+ 18,0,33.88,0,0,2,11482.63485,1
528
+ 19,0,30.59,2,0,1,24059.68019,0
529
+ 51,0,25.8,1,0,3,9861.025,0
530
+ 46,1,39.425,1,0,0,8342.90875,1
531
+ 18,1,25.46,0,0,0,1708.0014,0
532
+ 57,1,42.13,1,1,2,48675.5177,1
533
+ 62,0,31.73,0,0,0,14043.4767,1
534
+ 59,1,29.7,2,0,2,12925.886,1
535
+ 37,1,36.19,0,0,2,19214.70553,1
536
+ 64,1,40.48,0,0,2,13831.1152,1
537
+ 38,1,28.025,1,0,0,6067.12675,0
538
+ 33,0,38.9,3,0,3,5972.378,0
539
+ 46,0,30.2,2,0,3,8825.086,0
540
+ 46,0,28.05,1,0,2,8233.0975,0
541
+ 53,1,31.35,0,0,2,27346.04207,1
542
+ 34,0,38,3,0,3,6196.448,0
543
+ 20,0,31.79,2,0,2,3056.3881,0
544
+ 63,0,36.3,0,0,2,13887.204,1
545
+ 54,0,47.41,0,1,2,63770.42801,1
546
+ 54,1,30.21,0,0,1,10231.4999,1
547
+ 49,1,25.84,2,1,1,23807.2406,1
548
+ 28,1,35.435,0,0,0,3268.84665,1
549
+ 54,0,46.7,2,0,3,11538.421,1
550
+ 25,0,28.595,0,0,0,3213.62205,1
551
+ 43,0,46.2,0,1,2,45863.205,1
552
+ 63,1,30.8,0,0,3,13390.559,1
553
+ 32,0,28.93,0,0,2,3972.9247,1
554
+ 62,1,21.4,0,0,3,12957.118,0
555
+ 52,0,31.73,2,0,1,11187.6567,0
556
+ 25,0,41.325,0,0,0,17878.90068,1
557
+ 28,1,23.8,2,0,3,3847.674,0
558
+ 46,1,33.44,1,0,0,8334.5896,1
559
+ 34,1,34.21,0,0,2,3935.1799,1
560
+ 35,0,34.105,3,1,1,39983.42595,1
561
+ 19,1,35.53,0,0,1,1646.4297,1
562
+ 46,0,19.95,2,0,1,9193.8385,0
563
+ 54,0,32.68,0,0,0,10923.9332,1
564
+ 27,1,30.5,0,0,3,2494.022,1
565
+ 50,1,44.77,1,0,2,9058.7303,1
566
+ 18,0,32.12,2,0,2,2801.2588,0
567
+ 19,0,30.495,0,0,1,2128.43105,1
568
+ 38,0,40.565,1,0,1,6373.55735,1
569
+ 41,1,30.59,2,0,1,7256.7231,0
570
+ 49,0,31.9,5,0,3,11552.904,0
571
+ 48,1,40.565,2,1,1,45702.02235,1
572
+ 31,0,29.1,0,0,3,3761.292,1
573
+ 18,0,37.29,1,0,2,2219.4451,0
574
+ 30,0,43.12,2,0,2,4753.6368,0
575
+ 62,0,36.86,1,0,0,31620.00106,1
576
+ 57,0,34.295,2,0,0,13224.05705,0
577
+ 58,0,27.17,0,0,1,12222.8983,1
578
+ 22,1,26.84,0,0,2,1664.9996,1
579
+ 31,0,38.095,1,1,0,58571.07448,1
580
+ 52,1,30.2,1,0,3,9724.53,1
581
+ 25,0,23.465,0,0,0,3206.49135,0
582
+ 59,1,25.46,1,0,0,12913.9924,0
583
+ 19,1,30.59,0,0,1,1639.5631,1
584
+ 39,1,45.43,2,0,2,6356.2707,1
585
+ 32,0,23.65,1,0,2,17626.23951,0
586
+ 19,1,20.7,0,0,3,1242.816,0
587
+ 33,0,28.27,1,0,2,4779.6023,0
588
+ 21,1,20.235,3,0,0,3861.20965,0
589
+ 34,0,30.21,1,1,1,43943.8761,1
590
+ 61,0,35.91,0,0,0,13635.6379,1
591
+ 38,0,30.69,1,0,2,5976.8311,0
592
+ 58,0,29,0,0,3,11842.442,1
593
+ 47,1,19.57,1,0,1,8428.0693,0
594
+ 20,1,31.13,2,0,2,2566.4707,0
595
+ 21,0,21.85,1,1,0,15359.1045,1
596
+ 41,1,40.26,0,0,2,5709.1644,1
597
+ 46,0,33.725,1,0,0,8823.98575,1
598
+ 42,0,29.48,2,0,2,7640.3092,1
599
+ 34,0,33.25,1,0,0,5594.8455,1
600
+ 43,1,32.6,2,0,3,7441.501,0
601
+ 52,0,37.525,2,0,1,33471.97189,1
602
+ 18,0,39.16,0,0,2,1633.0444,1
603
+ 51,1,31.635,0,0,1,9174.13565,1
604
+ 56,0,25.3,0,0,3,11070.535,0
605
+ 64,0,39.05,3,0,2,16085.1275,0
606
+ 19,0,28.31,0,1,1,17468.9839,1
607
+ 51,0,34.1,0,0,2,9283.562,1
608
+ 27,0,25.175,0,0,0,3558.62025,0
609
+ 59,0,23.655,0,1,1,25678.77845,1
610
+ 28,1,26.98,2,0,0,4435.0942,0
611
+ 30,1,37.8,2,1,3,39241.442,1
612
+ 47,0,29.37,1,0,2,8547.6913,0
613
+ 38,0,34.8,2,0,3,6571.544,0
614
+ 18,0,33.155,0,0,0,2207.69745,1
615
+ 34,0,19,3,0,0,6753.038,0
616
+ 20,0,33,0,0,2,1880.07,1
617
+ 47,0,36.63,1,1,2,42969.8527,1
618
+ 56,0,28.595,0,0,0,11658.11505,1
619
+ 49,1,25.6,2,1,3,23306.547,1
620
+ 19,0,33.11,0,1,2,34439.8559,1
621
+ 55,0,37.1,0,0,3,10713.644,1
622
+ 30,1,31.4,1,0,3,3659.346,1
623
+ 37,1,34.1,4,1,3,40182.246,1
624
+ 49,0,21.3,1,0,3,9182.17,0
625
+ 18,1,33.535,0,1,0,34617.84065,1
626
+ 59,1,28.785,0,0,1,12129.61415,1
627
+ 29,0,26.03,0,0,1,3736.4647,1
628
+ 36,1,28.88,3,0,0,6748.5912,0
629
+ 33,1,42.46,1,0,2,11326.71487,1
630
+ 58,1,38,0,0,3,11365.952,1
631
+ 44,0,38.95,0,1,1,42983.4585,1
632
+ 53,1,36.1,1,0,3,10085.846,1
633
+ 24,1,29.3,0,0,3,1977.815,1
634
+ 29,0,35.53,0,0,2,3366.6697,1
635
+ 40,1,22.705,2,0,0,7173.35995,0
636
+ 51,1,39.7,1,0,3,9391.346,1
637
+ 64,1,38.19,0,0,0,14410.9321,1
638
+ 19,0,24.51,1,0,1,2709.1119,0
639
+ 35,0,38.095,2,0,0,24915.04626,0
640
+ 39,1,26.41,0,1,0,20149.3229,1
641
+ 56,1,33.66,4,0,2,12949.1554,0
642
+ 33,1,42.4,5,0,3,6666.243,0
643
+ 42,1,28.31,3,1,1,32787.45859,0
644
+ 61,1,33.915,0,0,0,13143.86485,1
645
+ 23,0,34.96,3,0,1,4466.6214,0
646
+ 43,1,35.31,2,0,2,18806.14547,1
647
+ 48,1,30.78,3,0,0,10141.1362,0
648
+ 39,1,26.22,1,0,1,6123.5688,0
649
+ 40,0,23.37,3,0,0,8252.2843,0
650
+ 18,1,28.5,0,0,0,1712.227,1
651
+ 58,0,32.965,0,0,0,12430.95335,1
652
+ 49,0,42.68,2,0,2,9800.8882,0
653
+ 53,0,39.6,1,0,2,10579.711,1
654
+ 48,0,31.13,0,0,2,8280.6227,1
655
+ 45,0,36.3,2,0,2,8527.532,1
656
+ 59,0,35.2,0,0,2,12244.531,1
657
+ 52,0,25.3,2,1,2,24667.419,1
658
+ 26,0,42.4,1,0,3,3410.324,1
659
+ 27,1,33.155,2,0,1,4058.71245,0
660
+ 48,0,35.91,1,0,0,26392.26029,1
661
+ 57,0,28.785,4,0,0,14394.39815,1
662
+ 37,1,46.53,3,0,2,6435.6237,1
663
+ 57,0,23.98,1,0,2,22192.43711,0
664
+ 32,0,31.54,1,0,0,5148.5526,1
665
+ 18,1,33.66,0,0,2,1136.3994,1
666
+ 64,0,22.99,0,1,2,27037.9141,1
667
+ 43,1,38.06,2,1,2,42560.4304,1
668
+ 49,1,28.7,1,0,3,8703.456,0
669
+ 40,0,32.775,2,1,1,40003.33225,1
670
+ 62,1,32.015,0,1,0,45710.20785,1
671
+ 40,0,29.81,1,0,2,6500.2359,0
672
+ 30,1,31.57,3,0,2,4837.5823,0
673
+ 29,0,31.16,0,0,0,3943.5954,1
674
+ 36,1,29.7,0,0,2,4399.731,1
675
+ 41,0,31.02,0,0,2,6185.3208,1
676
+ 44,0,43.89,2,1,2,46200.9851,1
677
+ 45,1,21.375,0,0,1,7222.78625,0
678
+ 55,0,40.81,3,0,2,12485.8009,0
679
+ 60,1,31.35,3,1,1,46130.5265,1
680
+ 56,1,36.1,3,0,3,12363.547,0
681
+ 49,0,23.18,2,0,1,10156.7832,0
682
+ 21,0,17.4,1,0,3,2585.269,1
683
+ 19,1,20.3,0,0,3,1242.26,0
684
+ 39,1,35.3,2,1,3,40103.89,1
685
+ 53,1,24.32,0,0,1,9863.4718,0
686
+ 33,0,18.5,1,0,3,4766.022,0
687
+ 53,1,26.41,2,0,0,11244.3769,1
688
+ 42,1,26.125,2,0,0,7729.64575,1
689
+ 40,1,41.69,0,0,2,5438.7491,1
690
+ 47,0,24.1,1,0,3,26236.57997,0
691
+ 27,1,31.13,1,1,2,34806.4677,1
692
+ 21,1,27.36,0,0,0,2104.1134,1
693
+ 47,1,36.2,1,0,3,8068.185,1
694
+ 20,1,32.395,1,0,1,2362.22905,1
695
+ 24,1,23.655,0,0,1,2352.96845,0
696
+ 27,0,34.8,1,0,3,3577.999,1
697
+ 26,0,40.185,0,0,1,3201.24515,1
698
+ 53,0,32.3,2,0,0,29186.48236,0
699
+ 41,1,35.75,1,1,2,40273.6455,1
700
+ 56,1,33.725,0,0,1,10976.24575,1
701
+ 23,0,39.27,2,0,2,3500.6123,0
702
+ 21,0,34.87,0,0,2,2020.5523,1
703
+ 50,0,44.745,0,0,0,9541.69555,1
704
+ 53,1,41.47,0,0,2,9504.3103,1
705
+ 34,0,26.41,1,0,1,5385.3379,0
706
+ 47,0,29.545,1,0,1,8930.93455,0
707
+ 33,0,32.9,2,0,3,5375.038,0
708
+ 51,0,38.06,0,1,2,44400.4064,1
709
+ 49,1,28.69,3,0,1,10264.4421,1
710
+ 31,0,30.495,3,0,0,6113.23105,0
711
+ 36,0,27.74,0,0,0,5469.0066,1
712
+ 18,1,35.2,1,0,2,1727.54,0
713
+ 50,0,23.54,2,0,2,10107.2206,0
714
+ 43,0,30.685,2,0,1,8310.83915,0
715
+ 20,1,40.47,0,0,0,1984.4533,1
716
+ 24,0,22.6,0,0,3,2457.502,0
717
+ 60,1,28.9,0,0,3,12146.971,1
718
+ 49,0,22.61,1,0,1,9566.9909,0
719
+ 60,1,24.32,1,0,1,13112.6048,0
720
+ 51,0,36.67,2,0,1,10848.1343,1
721
+ 58,0,33.44,0,0,1,12231.6136,1
722
+ 51,0,40.66,0,0,0,9875.6804,1
723
+ 53,1,36.6,3,0,3,11264.541,0
724
+ 62,1,37.4,0,0,3,12979.358,1
725
+ 19,1,35.4,0,0,3,1263.249,1
726
+ 50,0,27.075,1,0,0,10106.13425,0
727
+ 30,0,39.05,3,1,2,40932.4295,1
728
+ 41,1,28.405,1,0,1,6664.68595,0
729
+ 29,0,21.755,1,1,0,16657.71745,1
730
+ 18,0,40.28,0,0,0,2217.6012,1
731
+ 41,0,36.08,1,0,2,6781.3542,1
732
+ 35,1,24.42,3,1,2,19361.9988,0
733
+ 53,1,21.4,1,0,3,10065.413,0
734
+ 24,0,30.1,3,0,3,4234.927,0
735
+ 48,0,27.265,1,0,0,9447.25035,0
736
+ 59,0,32.1,3,0,3,14007.222,0
737
+ 49,0,34.77,1,0,1,9583.8933,1
738
+ 37,0,38.39,0,1,2,40419.0191,1
739
+ 26,1,23.7,2,0,3,3484.331,0
740
+ 23,1,31.73,3,1,0,36189.1017,1
741
+ 29,1,35.5,2,1,3,44585.45587,1
742
+ 45,1,24.035,2,0,0,8604.48365,0
743
+ 27,1,29.15,0,1,2,18246.4955,1
744
+ 53,1,34.105,0,1,0,43254.41795,1
745
+ 31,0,26.62,0,0,2,3757.8448,1
746
+ 50,1,26.41,0,0,1,8827.2099,1
747
+ 50,0,30.115,1,0,1,9910.35985,1
748
+ 34,1,27,2,0,3,11737.84884,0
749
+ 19,1,21.755,0,0,1,1627.28245,0
750
+ 47,0,36,1,0,3,8556.907,1
751
+ 28,1,30.875,0,0,1,3062.50825,1
752
+ 37,0,26.4,0,1,2,19539.243,1
753
+ 21,1,28.975,0,0,1,1906.35825,1
754
+ 64,1,37.905,0,0,1,14210.53595,1
755
+ 58,0,22.77,0,0,2,11833.7823,0
756
+ 24,1,33.63,4,0,0,17128.42608,0
757
+ 31,1,27.645,2,0,0,5031.26955,0
758
+ 39,0,22.8,3,0,0,7985.815,0
759
+ 47,0,27.83,0,1,2,23065.4207,1
760
+ 30,1,37.43,3,0,0,5428.7277,0
761
+ 18,1,38.17,0,1,2,36307.7983,1
762
+ 22,0,34.58,2,0,0,3925.7582,0
763
+ 23,1,35.2,1,0,3,2416.955,0
764
+ 33,1,27.1,1,1,3,19040.876,1
765
+ 27,1,26.03,0,0,0,3070.8087,1
766
+ 45,0,25.175,2,0,0,9095.06825,1
767
+ 57,0,31.825,0,0,1,11842.62375,1
768
+ 47,1,32.3,1,0,3,8062.764,1
769
+ 42,0,29,1,0,3,7050.642,0
770
+ 64,0,39.7,0,0,3,14319.031,1
771
+ 38,0,19.475,2,0,1,6933.24225,0
772
+ 61,1,36.1,3,0,3,27941.28758,0
773
+ 53,0,26.7,2,0,3,11150.78,1
774
+ 44,0,36.48,0,0,0,12797.20962,1
775
+ 19,0,28.88,0,1,1,17748.5062,1
776
+ 41,1,34.2,2,0,1,7261.741,0
777
+ 51,1,33.33,3,0,2,10560.4917,0
778
+ 40,1,32.3,2,0,1,6986.697,0
779
+ 45,1,39.805,0,0,0,7448.40395,1
780
+ 35,1,34.32,3,0,2,5934.3798,0
781
+ 53,1,28.88,0,0,1,9869.8102,1
782
+ 30,1,24.4,3,1,3,18259.216,0
783
+ 18,1,41.14,0,0,2,1146.7966,1
784
+ 51,1,35.97,1,0,2,9386.1613,1
785
+ 50,0,27.6,1,1,3,24520.264,1
786
+ 31,0,29.26,1,0,2,4350.5144,0
787
+ 35,0,27.7,3,0,3,6414.178,0
788
+ 60,1,36.955,0,0,0,12741.16745,1
789
+ 21,1,36.86,0,0,1,1917.3184,1
790
+ 29,1,22.515,3,0,0,5209.57885,0
791
+ 62,0,29.92,0,0,2,13457.9608,1
792
+ 39,0,41.8,0,0,2,5662.225,1
793
+ 19,1,27.6,0,0,3,1252.407,1
794
+ 22,0,23.18,0,0,0,2731.9122,0
795
+ 53,1,20.9,0,1,2,21195.818,1
796
+ 39,0,31.92,2,0,1,7209.4918,0
797
+ 27,1,28.5,0,1,1,18310.742,1
798
+ 30,1,44.22,2,0,2,4266.1658,0
799
+ 30,0,22.895,1,0,0,4719.52405,0
800
+ 58,0,33.1,0,0,3,11848.141,1
801
+ 33,1,24.795,0,1,0,17904.52705,1
802
+ 42,0,26.18,1,0,2,7046.7222,0
803
+ 64,0,35.97,0,0,2,14313.8463,1
804
+ 21,1,22.3,1,0,3,2103.08,0
805
+ 18,0,42.24,0,1,2,38792.6856,1
806
+ 23,1,26.51,0,0,2,1815.8759,1
807
+ 45,0,35.815,0,0,1,7731.85785,1
808
+ 40,0,41.42,1,0,1,28476.73499,1
809
+ 19,0,36.575,0,0,1,2136.88225,1
810
+ 18,1,30.14,0,0,2,1131.5066,1
811
+ 25,1,25.84,1,0,0,3309.7926,0
812
+ 46,0,30.8,3,0,3,9414.92,0
813
+ 33,0,42.94,3,0,1,6360.9936,0
814
+ 54,1,21.01,2,0,2,11013.7119,0
815
+ 28,1,22.515,2,0,0,4428.88785,0
816
+ 36,1,34.43,2,0,2,5584.3057,0
817
+ 20,0,31.46,0,0,2,1877.9294,1
818
+ 24,0,24.225,0,0,1,2842.76075,0
819
+ 23,1,37.1,3,0,3,3597.596,0
820
+ 47,0,26.125,1,1,0,23401.30575,1
821
+ 33,0,35.53,0,1,1,55135.40209,1
822
+ 45,1,33.7,1,0,3,7445.918,1
823
+ 26,1,17.67,0,0,1,2680.9493,0
824
+ 18,0,31.13,0,0,2,1621.8827,1
825
+ 44,0,29.81,2,0,2,8219.2039,1
826
+ 60,1,24.32,0,0,1,12523.6048,0
827
+ 64,0,31.825,2,0,0,16069.08475,0
828
+ 56,1,31.79,2,1,2,43813.8661,1
829
+ 36,1,28.025,1,1,0,20773.62775,1
830
+ 41,1,30.78,3,1,0,39597.4072,1
831
+ 39,1,21.85,1,0,1,6117.4945,0
832
+ 63,1,33.1,0,0,3,13393.756,1
833
+ 36,0,25.84,0,0,1,5266.3656,0
834
+ 28,0,23.845,2,0,1,4719.73655,0
835
+ 58,1,34.39,0,0,1,11743.9341,1
836
+ 36,1,33.82,1,0,1,5377.4578,1
837
+ 42,1,35.97,2,0,2,7160.3303,1
838
+ 36,1,31.5,0,0,3,4402.233,1
839
+ 56,0,28.31,0,0,0,11657.7189,1
840
+ 35,0,23.465,2,0,0,6402.29135,0
841
+ 59,0,31.35,0,0,1,12622.1795,1
842
+ 21,1,31.1,0,0,3,1526.312,1
843
+ 59,1,24.7,0,0,0,12323.936,0
844
+ 23,0,32.78,2,1,2,36021.0112,1
845
+ 57,0,29.81,0,1,2,27533.9129,1
846
+ 53,1,30.495,0,0,0,10072.05505,1
847
+ 60,0,32.45,0,1,2,45008.9555,1
848
+ 51,0,34.2,1,0,3,9872.701,1
849
+ 23,1,50.38,1,0,2,2438.0552,1
850
+ 27,0,24.1,0,0,3,2974.126,0
851
+ 55,1,32.775,0,0,1,10601.63225,1
852
+ 37,0,30.78,0,1,0,37270.1512,1
853
+ 61,1,32.3,2,0,1,14119.62,0
854
+ 46,0,35.53,0,1,0,42111.6647,1
855
+ 53,0,23.75,2,0,0,11729.6795,0
856
+ 49,0,23.845,3,1,0,24106.91255,1
857
+ 20,0,29.6,0,0,3,1875.344,1
858
+ 48,0,33.11,0,1,2,40974.1649,1
859
+ 25,1,24.13,0,1,1,15817.9857,1
860
+ 25,0,32.23,1,0,2,18218.16139,1
861
+ 57,1,28.1,0,0,3,10965.446,1
862
+ 37,0,47.6,2,1,3,46113.511,1
863
+ 38,0,28,3,0,3,7151.092,0
864
+ 55,0,33.535,2,0,1,12269.68865,0
865
+ 36,0,19.855,0,0,0,5458.04645,0
866
+ 51,1,25.4,0,0,3,8782.469,0
867
+ 40,1,29.9,2,0,3,6600.361,0
868
+ 18,1,37.29,0,0,2,1141.4451,1
869
+ 57,1,43.7,1,0,3,11576.13,1
870
+ 61,1,23.655,0,0,0,13129.60345,0
871
+ 25,0,24.3,3,0,3,4391.652,0
872
+ 50,1,36.2,0,0,3,8457.818,1
873
+ 26,0,29.48,1,0,2,3392.3652,0
874
+ 42,1,24.86,0,0,2,5966.8874,0
875
+ 43,1,30.1,1,0,3,6849.026,1
876
+ 44,1,21.85,3,0,0,8891.1395,0
877
+ 23,0,28.12,0,0,1,2690.1138,1
878
+ 49,0,27.1,1,0,3,26140.3603,0
879
+ 33,1,33.44,5,0,2,6653.7886,0
880
+ 41,1,28.8,1,0,3,6282.235,0
881
+ 37,0,29.5,2,0,3,6311.952,0
882
+ 22,1,34.8,3,0,3,3443.064,0
883
+ 23,1,27.36,1,0,1,2789.0574,0
884
+ 21,0,22.135,0,0,0,2585.85065,0
885
+ 51,0,37.05,3,1,0,46255.1125,1
886
+ 25,1,26.695,4,0,1,4877.98105,0
887
+ 32,1,28.93,1,1,2,19719.6947,1
888
+ 57,1,28.975,0,1,0,27218.43725,1
889
+ 36,0,30.02,0,0,1,5272.1758,1
890
+ 22,1,39.5,0,0,3,1682.597,1
891
+ 57,1,33.63,1,0,1,11945.1327,1
892
+ 64,0,26.885,0,1,1,29330.98315,1
893
+ 36,0,29.04,4,0,2,7243.8136,0
894
+ 54,1,24.035,0,0,0,10422.91665,0
895
+ 47,1,38.94,2,1,2,44202.6536,1
896
+ 62,1,32.11,0,0,0,13555.0049,1
897
+ 61,0,44,0,0,3,13063.883,1
898
+ 43,0,20.045,2,1,0,19798.05455,1
899
+ 19,1,25.555,1,0,1,2221.56445,0
900
+ 18,0,40.26,0,0,2,1634.5734,1
901
+ 19,0,22.515,0,0,1,2117.33885,0
902
+ 49,1,22.515,0,0,0,8688.85885,0
903
+ 60,1,40.92,0,1,2,48673.5588,1
904
+ 26,1,27.265,3,0,0,4661.28635,0
905
+ 49,1,36.85,0,0,2,8125.7845,1
906
+ 60,0,35.1,0,0,3,12644.589,1
907
+ 26,0,29.355,2,0,0,4564.19145,0
908
+ 27,1,32.585,3,0,0,4846.92015,0
909
+ 44,0,32.34,1,0,2,7633.7206,1
910
+ 63,1,39.8,3,0,3,15170.069,0
911
+ 32,0,24.6,0,1,3,17496.306,1
912
+ 22,1,28.31,1,0,1,2639.0429,0
913
+ 18,1,31.73,0,1,0,33732.6867,1
914
+ 59,0,26.695,3,0,1,14382.70905,1
915
+ 44,0,27.5,1,0,3,7626.993,0
916
+ 33,1,24.605,2,0,1,5257.50795,0
917
+ 24,0,33.99,0,0,2,2473.3341,1
918
+ 43,0,26.885,0,1,1,21774.32215,1
919
+ 45,1,22.895,0,1,0,35069.37452,1
920
+ 61,0,28.2,0,0,3,13041.921,1
921
+ 35,0,34.21,1,0,2,5245.2269,1
922
+ 62,0,25,0,0,3,13451.122,0
923
+ 62,0,33.2,0,0,3,13462.52,1
924
+ 38,1,31,1,0,3,5488.262,0
925
+ 34,1,35.815,0,0,1,4320.41085,1
926
+ 43,1,23.2,0,0,3,6250.435,0
927
+ 50,1,32.11,2,0,0,25333.33284,0
928
+ 19,0,23.4,2,0,3,2913.569,0
929
+ 57,0,20.1,1,0,3,12032.326,0
930
+ 62,0,39.16,0,0,2,13470.8044,1
931
+ 41,1,34.21,1,0,2,6289.7549,1
932
+ 26,1,46.53,1,0,2,2927.0647,1
933
+ 39,0,32.5,1,0,3,6238.298,1
934
+ 46,1,25.8,5,0,3,10096.97,1
935
+ 45,0,35.3,0,0,3,7348.142,1
936
+ 32,1,37.18,2,0,2,4673.3922,0
937
+ 59,0,27.5,0,0,3,12233.828,1
938
+ 44,1,29.735,2,0,0,32108.66282,1
939
+ 39,0,24.225,5,0,1,8965.79575,0
940
+ 18,1,26.18,2,0,2,2304.0022,0
941
+ 53,1,29.48,0,0,2,9487.6442,1
942
+ 18,1,23.21,0,0,2,1121.8739,0
943
+ 50,0,46.09,1,0,2,9549.5651,1
944
+ 18,0,40.185,0,0,0,2217.46915,1
945
+ 19,1,22.61,0,0,1,1628.4709,0
946
+ 62,1,39.93,0,0,2,12982.8747,1
947
+ 56,0,35.8,1,0,3,11674.13,1
948
+ 42,1,35.8,2,0,3,7160.094,1
949
+ 37,1,34.2,1,1,0,39047.285,1
950
+ 42,1,31.255,0,0,1,6358.77645,1
951
+ 25,1,29.7,3,1,3,19933.458,0
952
+ 57,1,18.335,0,0,0,11534.87265,0
953
+ 51,1,42.9,2,1,2,47462.894,1
954
+ 30,0,28.405,1,0,1,4527.18295,0
955
+ 44,1,30.2,2,1,3,38998.546,1
956
+ 34,1,27.835,1,1,1,20009.63365,1
957
+ 31,1,39.49,1,0,2,3875.7341,0
958
+ 54,1,30.8,1,1,2,41999.52,1
959
+ 24,1,26.79,1,0,1,12609.88702,0
960
+ 43,1,34.96,1,1,0,41034.2214,1
961
+ 48,1,36.67,1,0,1,28468.91901,1
962
+ 19,0,39.615,1,0,1,2730.10785,0
963
+ 29,0,25.9,0,0,3,3353.284,0
964
+ 63,0,35.2,1,0,2,14474.675,1
965
+ 46,1,24.795,3,0,0,9500.57305,0
966
+ 52,1,36.765,2,0,1,26467.09737,1
967
+ 35,1,27.1,1,0,3,4746.344,0
968
+ 51,1,24.795,2,1,1,23967.38305,1
969
+ 44,1,25.365,1,0,1,7518.02535,0
970
+ 21,1,25.745,2,0,0,3279.86855,0
971
+ 39,0,34.32,5,0,2,8596.8278,0
972
+ 50,0,28.16,3,0,2,10702.6424,1
973
+ 34,0,23.56,0,0,0,4992.3764,0
974
+ 22,0,20.235,0,0,1,2527.81865,0
975
+ 19,0,40.5,0,0,3,1759.338,1
976
+ 26,1,35.42,0,0,2,2322.6218,1
977
+ 29,1,22.895,0,1,0,16138.76205,1
978
+ 48,1,40.15,0,0,2,7804.1605,1
979
+ 26,1,29.15,1,0,2,2902.9065,0
980
+ 45,0,39.995,3,0,0,9704.66805,0
981
+ 36,0,29.92,0,0,2,4889.0368,1
982
+ 54,1,25.46,1,0,0,25517.11363,0
983
+ 34,1,21.375,0,0,0,4500.33925,0
984
+ 31,1,25.9,3,1,3,19199.944,0
985
+ 27,0,30.59,1,0,0,16796.41194,0
986
+ 20,1,30.115,5,0,0,4915.05985,0
987
+ 44,0,25.8,1,0,3,7624.63,0
988
+ 43,1,30.115,3,0,1,8410.04685,0
989
+ 45,0,27.645,1,0,1,28340.18885,0
990
+ 34,1,34.675,0,0,0,4518.82625,1
991
+ 24,0,20.52,0,1,0,14571.8908,1
992
+ 26,0,19.8,1,0,3,3378.91,0
993
+ 38,0,27.835,2,0,0,7144.86265,0
994
+ 50,0,31.6,2,0,3,10118.424,0
995
+ 38,1,28.27,1,0,2,5484.4673,0
996
+ 27,0,20.045,3,1,1,16420.49455,0
997
+ 39,0,23.275,3,0,0,7986.47525,0
998
+ 39,0,34.1,3,0,3,7418.522,0
999
+ 63,0,36.85,0,0,2,13887.9685,1
1000
+ 33,0,36.29,3,0,0,6551.7501,0
1001
+ 36,0,26.885,0,0,1,5267.81815,1
1002
+ 30,1,22.99,2,1,1,17361.7661,0
1003
+ 24,1,32.7,0,1,3,34472.841,1
1004
+ 24,1,25.8,0,0,3,1972.95,0
1005
+ 48,1,29.6,0,0,3,21232.18226,1
1006
+ 47,1,19.19,1,0,0,8627.5411,0
1007
+ 29,1,31.73,2,0,1,4433.3877,0
1008
+ 28,1,29.26,2,0,0,4438.2634,0
1009
+ 47,1,28.215,3,1,1,24915.22085,1
1010
+ 25,1,24.985,2,0,0,23241.47453,0
1011
+ 51,1,27.74,1,0,0,9957.7216,0
1012
+ 48,0,22.8,0,0,3,8269.044,0
1013
+ 43,1,20.13,2,1,2,18767.7377,1
1014
+ 61,0,33.33,4,0,2,36580.28216,0
1015
+ 48,1,32.3,1,0,1,8765.249,1
1016
+ 38,0,27.6,0,0,3,5383.536,1
1017
+ 59,1,25.46,0,0,1,12124.9924,0
1018
+ 19,0,24.605,1,0,1,2709.24395,0
1019
+ 26,0,34.2,2,0,3,3987.926,0
1020
+ 54,0,35.815,3,0,1,12495.29085,0
1021
+ 21,0,32.68,2,0,1,26018.95052,0
1022
+ 51,1,37,0,0,3,8798.593,1
1023
+ 22,0,31.02,3,1,2,35595.5898,1
1024
+ 47,1,36.08,1,1,2,42211.1382,1
1025
+ 18,1,23.32,1,0,2,1711.0268,0
1026
+ 47,0,45.32,1,0,2,8569.8618,1
1027
+ 21,0,34.6,0,0,3,2020.177,1
1028
+ 19,1,26.03,1,1,1,16450.8947,1
1029
+ 23,1,18.715,0,0,1,21595.38229,0
1030
+ 54,1,31.6,0,0,3,9850.432,1
1031
+ 37,0,17.29,2,0,0,6877.9801,1
1032
+ 46,0,23.655,1,1,1,21677.28345,1
1033
+ 55,0,35.2,0,1,2,44423.803,1
1034
+ 30,0,27.93,0,0,0,4137.5227,1
1035
+ 18,1,21.565,0,1,0,13747.87235,1
1036
+ 61,1,38.38,0,0,1,12950.0712,1
1037
+ 54,0,23,3,0,3,12094.478,0
1038
+ 22,1,37.07,2,1,2,37484.4493,1
1039
+ 45,0,30.495,1,1,1,39725.51805,1
1040
+ 22,1,28.88,0,0,0,2250.8352,1
1041
+ 19,1,27.265,2,0,1,22493.65964,0
1042
+ 35,0,28.025,0,1,1,20234.85475,1
1043
+ 18,1,23.085,0,0,0,1704.70015,0
1044
+ 20,1,30.685,0,1,0,33475.81715,1
1045
+ 28,0,25.8,0,0,3,3161.454,0
1046
+ 55,1,35.245,1,0,0,11394.06555,1
1047
+ 43,0,24.7,2,1,1,21880.82,1
1048
+ 43,0,25.08,0,0,0,7325.0482,0
1049
+ 22,1,52.58,1,1,2,44501.3982,1
1050
+ 25,0,22.515,1,0,1,3594.17085,0
1051
+ 49,1,30.9,0,1,3,39727.614,1
1052
+ 44,0,36.955,1,0,1,8023.13545,1
1053
+ 64,1,26.41,0,0,0,14394.5579,1
1054
+ 49,1,29.83,1,0,0,9288.0267,0
1055
+ 47,1,29.8,3,1,3,25309.489,1
1056
+ 27,0,21.47,0,0,1,3353.4703,0
1057
+ 55,1,27.645,0,0,1,10594.50155,1
1058
+ 48,0,28.9,0,0,3,8277.523,1
1059
+ 45,0,31.79,0,0,2,17929.30337,1
1060
+ 24,0,39.49,0,0,2,2480.9791,1
1061
+ 32,1,33.82,1,0,1,4462.7218,1
1062
+ 24,1,32.01,0,0,2,1981.5819,1
1063
+ 57,1,27.94,1,0,2,11554.2236,0
1064
+ 59,1,41.14,1,1,2,48970.2476,1
1065
+ 36,1,28.595,3,0,1,6548.19505,0
1066
+ 29,0,25.6,4,0,3,5708.867,0
1067
+ 42,0,25.3,1,0,3,7045.499,0
1068
+ 48,1,37.29,2,0,2,8978.1851,1
1069
+ 39,1,42.655,0,0,0,5757.41345,1
1070
+ 63,1,21.66,1,0,1,14349.8544,0
1071
+ 54,0,31.9,1,0,2,10928.849,1
1072
+ 37,1,37.07,1,1,2,39871.7043,1
1073
+ 63,1,31.445,0,0,0,13974.45555,1
1074
+ 21,1,31.255,0,0,1,1909.52745,1
1075
+ 54,0,28.88,2,0,0,12096.6512,1
1076
+ 60,0,18.335,0,0,0,13204.28565,0
1077
+ 32,0,29.59,1,0,2,4562.8421,0
1078
+ 47,0,32,1,0,3,8551.347,1
1079
+ 21,1,26.03,0,0,0,2102.2647,1
1080
+ 28,1,31.68,0,1,2,34672.1472,1
1081
+ 63,1,33.66,3,0,2,15161.5344,0
1082
+ 18,1,21.78,2,0,2,11884.04858,0
1083
+ 32,1,27.835,1,0,1,4454.40265,0
1084
+ 38,1,19.95,1,0,1,5855.9025,0
1085
+ 32,1,31.5,1,0,3,4076.497,1
1086
+ 62,0,30.495,2,0,1,15019.76005,0
1087
+ 39,0,18.3,5,1,3,19023.26,0
1088
+ 55,1,28.975,0,0,0,10796.35025,1
1089
+ 57,1,31.54,0,0,1,11353.2276,1
1090
+ 52,1,47.74,1,0,2,9748.9106,1
1091
+ 56,1,22.1,0,0,3,10577.087,0
1092
+ 47,1,36.19,0,1,2,41676.0811,1
1093
+ 55,0,29.83,0,0,0,11286.5387,1
1094
+ 23,1,32.7,3,0,3,3591.48,0
1095
+ 22,0,30.4,0,1,1,33907.548,1
1096
+ 50,0,33.7,4,0,3,11299.343,0
1097
+ 18,0,31.35,4,0,0,4561.1885,0
1098
+ 51,0,34.96,2,1,0,44641.1974,1
1099
+ 22,1,33.77,0,0,2,1674.6323,1
1100
+ 52,0,30.875,0,0,0,23045.56616,1
1101
+ 25,0,33.99,1,0,2,3227.1211,1
1102
+ 33,0,19.095,2,1,0,16776.30405,0
1103
+ 53,1,28.6,3,0,3,11253.421,1
1104
+ 29,1,38.94,1,0,2,3471.4096,0
1105
+ 58,1,36.08,0,0,2,11363.2832,1
1106
+ 37,1,29.8,0,0,3,20420.60465,1
1107
+ 54,0,31.24,0,0,2,10338.9316,1
1108
+ 49,0,29.925,0,0,1,8988.15875,1
1109
+ 50,0,26.22,2,0,1,10493.9458,1
1110
+ 26,1,30,1,0,3,2904.088,0
1111
+ 45,1,20.35,3,0,2,8605.3615,0
1112
+ 54,0,32.3,1,0,0,11512.405,1
1113
+ 38,1,38.39,3,1,2,41949.2441,1
1114
+ 48,0,25.85,3,1,2,24180.9335,1
1115
+ 28,0,26.315,3,0,1,5312.16985,0
1116
+ 23,1,24.51,0,0,0,2396.0959,0
1117
+ 55,1,32.67,1,0,2,10807.4863,1
1118
+ 41,1,29.64,5,0,0,9222.4026,1
1119
+ 25,1,33.33,2,1,2,36124.5737,1
1120
+ 33,1,35.75,1,1,2,38282.7495,1
1121
+ 30,0,19.95,3,0,1,5693.4305,0
1122
+ 23,0,31.4,0,1,3,34166.273,1
1123
+ 46,1,38.17,2,0,2,8347.1643,1
1124
+ 53,0,36.86,3,1,1,46661.4424,1
1125
+ 27,0,32.395,1,0,0,18903.49141,1
1126
+ 23,0,42.75,1,1,0,40904.1995,1
1127
+ 63,0,25.08,0,0,1,14254.6082,0
1128
+ 55,1,29.9,0,0,3,10214.636,1
1129
+ 35,0,35.86,2,0,2,5836.5204,0
1130
+ 34,1,32.8,1,0,3,14358.36437,1
1131
+ 19,0,18.6,0,0,3,1728.897,0
1132
+ 39,0,23.87,5,0,2,8582.3023,0
1133
+ 27,1,45.9,2,0,3,3693.428,1
1134
+ 57,1,40.28,0,0,0,20709.02034,1
1135
+ 52,0,18.335,0,0,1,9991.03765,0
1136
+ 28,1,33.82,0,0,1,19673.33573,1
1137
+ 50,0,28.12,3,0,1,11085.5868,1
1138
+ 44,0,25,1,0,3,7623.518,0
1139
+ 26,0,22.23,0,0,1,3176.2877,0
1140
+ 33,1,30.25,0,0,2,3704.3545,1
1141
+ 19,0,32.49,0,1,1,36898.73308,1
1142
+ 50,1,37.07,1,0,2,9048.0273,1
1143
+ 41,0,32.6,3,0,3,7954.517,0
1144
+ 52,0,24.86,0,0,2,27117.99378,0
1145
+ 39,1,32.34,2,0,2,6338.0756,0
1146
+ 50,1,32.3,2,0,3,9630.397,0
1147
+ 52,1,32.775,3,0,1,11289.10925,0
1148
+ 60,1,32.8,0,1,3,52590.82939,1
1149
+ 20,0,31.92,0,0,1,2261.5688,1
1150
+ 55,1,21.5,1,0,3,10791.96,0
1151
+ 42,1,34.1,0,0,3,5979.731,1
1152
+ 18,0,30.305,0,0,0,2203.73595,1
1153
+ 58,0,36.48,0,0,1,12235.8392,1
1154
+ 43,0,32.56,3,1,2,40941.2854,1
1155
+ 35,0,35.815,1,0,1,5630.45785,0
1156
+ 48,0,27.93,4,0,1,11015.1747,1
1157
+ 36,0,22.135,3,0,0,7228.21565,0
1158
+ 19,1,44.88,0,1,2,39722.7462,1
1159
+ 23,0,23.18,2,0,1,14426.07385,0
1160
+ 20,0,30.59,0,0,0,2459.7201,1
1161
+ 32,0,41.1,0,0,3,3989.841,1
1162
+ 43,0,34.58,1,0,1,7727.2532,1
1163
+ 34,1,42.13,2,0,2,5124.1887,0
1164
+ 30,1,38.83,1,0,2,18963.17192,0
1165
+ 18,0,28.215,0,0,0,2200.83085,1
1166
+ 41,0,28.31,1,0,1,7153.5539,0
1167
+ 35,0,26.125,0,0,0,5227.98875,1
1168
+ 57,1,40.37,0,0,2,10982.5013,1
1169
+ 29,0,24.6,2,0,3,4529.477,0
1170
+ 32,1,35.2,2,0,3,4670.64,0
1171
+ 37,0,34.105,1,0,1,6112.35295,1
1172
+ 18,1,27.36,1,1,0,17178.6824,1
1173
+ 43,0,26.7,2,1,3,22478.6,0
1174
+ 56,0,41.91,0,0,2,11093.6229,1
1175
+ 38,1,29.26,2,0,1,6457.8434,0
1176
+ 29,1,32.11,2,0,1,4433.9159,0
1177
+ 22,0,27.1,0,0,3,2154.361,1
1178
+ 52,0,24.13,1,1,1,23887.6627,1
1179
+ 40,0,27.4,1,0,3,6496.886,0
1180
+ 23,0,34.865,0,0,0,2899.48935,1
1181
+ 31,1,29.81,0,1,2,19350.3689,1
1182
+ 42,0,41.325,1,0,0,7650.77375,1
1183
+ 24,0,29.925,0,0,1,2850.68375,1
1184
+ 25,0,30.3,0,0,3,2632.992,1
1185
+ 48,0,27.36,1,0,0,9447.3824,0
1186
+ 23,0,28.49,1,1,2,18328.2381,1
1187
+ 45,1,23.56,2,0,0,8603.8234,0
1188
+ 20,1,35.625,3,1,1,37465.34375,1
1189
+ 62,0,32.68,0,0,1,13844.7972,1
1190
+ 43,0,25.27,1,1,0,21771.3423,1
1191
+ 23,0,28,0,0,3,13126.67745,1
1192
+ 31,0,32.775,2,0,1,5327.40025,0
1193
+ 41,0,21.755,1,0,0,13725.47184,0
1194
+ 58,0,32.395,1,0,0,13019.16105,1
1195
+ 48,0,36.575,0,0,1,8671.19125,1
1196
+ 31,0,21.755,0,0,1,4134.08245,0
1197
+ 19,0,27.93,3,0,1,18838.70366,0
1198
+ 19,0,30.02,0,1,1,33307.5508,1
1199
+ 41,1,33.55,0,0,2,5699.8375,1
1200
+ 40,1,29.355,1,0,1,6393.60345,0
1201
+ 31,0,25.8,2,0,3,4934.705,0
1202
+ 37,1,24.32,2,0,1,6198.7518,0
1203
+ 46,1,40.375,2,0,1,8733.22925,0
1204
+ 22,1,32.11,0,0,1,2055.3249,1
1205
+ 51,1,32.3,1,0,0,9964.06,1
1206
+ 18,0,27.28,3,1,2,18223.4512,0
1207
+ 35,1,17.86,1,0,1,5116.5004,0
1208
+ 59,0,34.8,2,0,3,36910.60803,0
1209
+ 36,1,33.4,2,1,3,38415.474,1
1210
+ 37,0,25.555,1,1,0,20296.86345,1
1211
+ 59,1,37.1,1,0,3,12347.172,1
1212
+ 36,1,30.875,1,0,1,5373.36425,0
1213
+ 39,1,34.1,2,0,2,23563.01618,0
1214
+ 18,1,21.47,0,0,0,1702.4553,0
1215
+ 52,0,33.3,2,0,3,10806.839,0
1216
+ 27,0,31.255,1,0,1,3956.07145,1
1217
+ 18,1,39.14,0,0,0,12890.05765,1
1218
+ 40,1,25.08,0,0,2,5415.6612,0
1219
+ 29,1,37.29,2,0,2,4058.1161,0
1220
+ 46,0,34.6,1,1,3,41661.602,1
1221
+ 38,0,30.21,3,0,1,7537.1639,0
1222
+ 30,0,21.945,1,0,0,4718.20355,0
1223
+ 40,1,24.97,2,0,2,6593.5083,0
1224
+ 50,1,25.3,0,0,2,8442.667,0
1225
+ 20,0,24.42,0,1,2,26125.67477,1
1226
+ 41,1,23.94,1,0,0,6858.4796,0
1227
+ 33,0,39.82,1,0,2,4795.6568,0
1228
+ 38,1,16.815,2,0,0,6640.54485,1
1229
+ 42,1,37.18,2,0,2,7162.0122,1
1230
+ 56,1,34.43,0,0,2,10594.2257,1
1231
+ 58,1,30.305,0,0,0,11938.25595,1
1232
+ 52,1,34.485,3,1,1,60021.39897,1
1233
+ 20,0,21.8,0,1,3,20167.33603,1
1234
+ 54,0,24.605,3,0,1,12479.70895,0
1235
+ 58,1,23.3,0,0,3,11345.519,0
1236
+ 45,0,27.83,2,0,2,8515.7587,1
1237
+ 26,1,31.065,0,0,1,2699.56835,1
1238
+ 63,0,21.66,0,0,0,14449.8544,0
1239
+ 58,0,28.215,0,0,1,12224.35085,1
1240
+ 37,1,22.705,3,0,0,6985.50695,0
1241
+ 25,0,42.13,1,0,2,3238.4357,1
1242
+ 52,1,41.8,2,1,2,47269.854,1
1243
+ 64,1,36.96,2,1,2,49577.6624,1
1244
+ 22,0,21.28,3,0,1,4296.2712,0
1245
+ 28,0,33.11,0,0,2,3171.6149,1
1246
+ 18,1,33.33,0,0,2,1135.9407,1
1247
+ 28,1,24.3,5,0,3,5615.369,0
1248
+ 45,0,25.7,3,0,3,9101.798,1
1249
+ 33,1,29.4,4,0,3,6059.173,0
1250
+ 18,0,39.82,0,0,2,1633.9618,1
1251
+ 32,1,33.63,1,1,0,37607.5277,1
1252
+ 24,1,29.83,0,1,0,18648.4217,1
1253
+ 19,1,19.8,0,0,3,1241.565,0
1254
+ 20,1,27.3,0,1,3,16232.847,1
1255
+ 40,0,29.3,4,0,3,15828.82173,0
1256
+ 34,0,27.72,0,0,2,4415.1588,1
1257
+ 42,0,37.9,0,0,3,6474.013,1
1258
+ 51,0,36.385,3,0,1,11436.73815,0
1259
+ 54,0,27.645,1,0,1,11305.93455,0
1260
+ 55,1,37.715,3,0,1,30063.58055,0
1261
+ 52,0,23.18,0,0,0,10197.7722,0
1262
+ 32,0,20.52,0,0,0,4544.2348,0
1263
+ 28,1,37.1,1,0,3,3277.161,0
1264
+ 41,0,28.05,1,0,2,6770.1925,0
1265
+ 43,0,29.9,1,0,3,7337.748,0
1266
+ 49,0,33.345,2,0,0,10370.91255,0
1267
+ 64,1,23.76,0,1,2,26926.5144,1
1268
+ 55,0,30.5,0,0,3,10704.47,1
1269
+ 24,1,31.065,0,1,0,34254.05335,1
1270
+ 20,0,33.3,0,0,3,1880.487,1
1271
+ 45,1,27.5,3,0,3,8615.3,1
1272
+ 26,1,33.915,1,0,1,3292.52985,1
1273
+ 25,0,34.485,0,0,1,3021.80915,1
1274
+ 43,1,25.52,5,0,2,14478.33015,1
1275
+ 35,1,27.61,1,0,2,4747.0529,0
1276
+ 26,1,27.06,0,1,2,17043.3414,1
1277
+ 57,1,23.7,0,0,3,10959.33,0
1278
+ 22,0,30.4,0,0,0,2741.948,1
1279
+ 32,0,29.735,0,0,1,4357.04365,1
1280
+ 39,1,29.925,1,1,0,22462.04375,1
1281
+ 25,0,26.79,2,0,1,4189.1131,0
1282
+ 48,0,33.33,0,0,2,8283.6807,1
1283
+ 47,0,27.645,2,1,1,24535.69855,1
1284
+ 18,0,21.66,0,1,0,14283.4594,1
1285
+ 18,1,30.03,1,0,2,1720.3537,0
1286
+ 61,1,36.3,1,1,3,47403.88,1
1287
+ 47,0,24.32,0,0,0,8534.6718,0
1288
+ 28,0,17.29,0,0,0,3732.6251,1
1289
+ 36,0,25.9,1,0,3,5472.449,0
1290
+ 20,1,39.4,2,1,3,38344.566,1
1291
+ 44,1,34.32,1,0,2,7147.4728,1
1292
+ 38,0,19.95,2,0,0,7133.9025,0
1293
+ 19,1,34.9,0,1,3,34828.654,1
1294
+ 21,1,23.21,0,0,2,1515.3449,0
1295
+ 46,1,25.745,3,0,1,9301.89355,1
1296
+ 58,1,25.175,0,0,0,11931.12525,0
1297
+ 20,1,22,1,0,3,1964.78,0
1298
+ 18,1,26.125,0,0,0,1708.92575,1
1299
+ 28,0,26.51,2,0,2,4340.4409,0
1300
+ 33,1,27.455,2,0,1,5261.46945,0
1301
+ 19,0,25.745,1,0,1,2710.82855,0
1302
+ 45,1,30.36,0,1,2,62592.87309,1
1303
+ 62,1,30.875,3,1,1,46718.16325,1
1304
+ 25,0,20.8,1,0,3,3208.787,0
1305
+ 43,1,27.8,0,1,3,37829.7242,1
1306
+ 42,1,24.605,2,1,0,21259.37795,1
1307
+ 24,0,27.72,0,0,2,2464.6188,1
1308
+ 29,0,21.85,0,1,0,16115.3045,1
1309
+ 32,1,28.12,4,1,1,21472.4788,0
1310
+ 25,0,30.2,0,1,3,33900.653,1
1311
+ 41,1,32.2,2,0,3,6875.961,0
1312
+ 42,1,26.315,1,0,1,6940.90985,0
1313
+ 33,0,26.695,0,0,1,4571.41305,1
1314
+ 34,1,42.9,1,0,3,4536.259,1
1315
+ 19,0,34.7,2,1,3,36397.576,1
1316
+ 30,0,23.655,3,1,1,18765.87545,0
1317
+ 18,1,28.31,1,0,0,11272.33139,0
1318
+ 19,0,20.6,0,0,3,1731.677,0
1319
+ 18,1,53.13,0,0,2,1163.4627,1
1320
+ 35,1,39.71,4,0,0,19496.71917,0
1321
+ 39,0,26.315,2,0,1,7201.70085,0
1322
+ 31,1,31.065,3,0,1,5425.02335,0
1323
+ 62,1,26.695,0,1,0,28101.33305,1
1324
+ 62,1,38.83,0,0,2,12981.3457,1
1325
+ 42,0,40.37,2,1,2,43896.3763,1
1326
+ 31,1,25.935,1,0,1,4239.89265,0
1327
+ 61,1,33.535,0,0,0,13143.33665,1
1328
+ 42,0,32.87,0,0,0,7050.0213,1
1329
+ 51,1,30.03,1,0,2,9377.9047,1
1330
+ 23,0,24.225,2,0,0,22395.74424,0
1331
+ 52,1,38.6,2,0,3,10325.206,1
1332
+ 57,0,25.74,2,0,2,12629.1656,1
1333
+ 23,0,33.4,0,0,3,10795.93733,1
1334
+ 52,0,44.7,3,0,3,11411.685,0
1335
+ 50,1,30.97,3,0,1,10600.5483,0
1336
+ 18,0,31.92,0,0,0,2205.9808,1
1337
+ 18,0,36.85,0,0,2,1629.8335,1
1338
+ 21,0,25.8,0,0,3,2007.945,0
1339
+ 61,0,29.07,0,1,1,29141.3603,1
model/insurance_claim_prediction_model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17ffdd746a24edd2545edbb8fbc45cfb2cb13b34fd54aa6b3b861d1b159af8ed
3
+ size 10344
predict.py ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # predict_model.py
2
+
3
+ import pandas as pd
4
+ import joblib
5
+ # predict_model.py
6
+
7
+ import pandas as pd
8
+ import joblib
9
+
10
+ class InsuranceClaimPredictor:
11
+ def __init__(self, model_path):
12
+ self.model_path = model_path
13
+ self.model = self.load_model()
14
+
15
+ def load_model(self):
16
+ # Load the model
17
+ loaded_model = joblib.load(self.model_path)
18
+ return loaded_model
19
+
20
+ def predict(self, data):
21
+ # Make predictions
22
+ predictions = self.model.predict(data)
23
+ return predictions
24
+
25
+
26
+ if __name__ == "__main__":
27
+ predictor = InsuranceClaimPredictor('model/insurance_claim_prediction_model.joblib')
28
+
29
+ # # Example of a person who is less likely to make an insurance claim
30
+ # unseen_data_non_claim = pd.DataFrame({
31
+ # 'age': [25], # Younger age
32
+ # 'sex': ['female'], # Female (just an example, gender may not significantly affect the outcome)
33
+ # 'bmi': [22.0], # Lower BMI
34
+ # 'children': [0], # No children
35
+ # 'smoker': ['no'], # Non-smoker
36
+ # 'region': ['southwest'], # Region (doesn't typically affect claims, chosen arbitrarily)
37
+ # 'charges': [1000] # Lower medical expenses
38
+ # })
39
+
40
+ # predictions = predictor.predict(unseen_data_non_claim)
41
+ # print("Predictions for the unseen data:", predictions)
42
+
43
+ #Example of how to use the function
44
+ unseen_data = pd.DataFrame({
45
+ 'age': [40],
46
+ 'sex': ['male'],
47
+ 'bmi': [25.3],
48
+ 'children': [2],
49
+ 'smoker': ['no'],
50
+ 'region': ['southeast'],
51
+ 'charges': [2900]
52
+ })
53
+
54
+ predictions = predictor.predict(unseen_data)
55
+ print("Predictions for the unseen data:", predictions)
readme.md ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Project Structure
2
+
3
+ ```bash
4
+ |-- README.md
5
+ |-- app.py
6
+ |-- train_model.py
7
+ |-- predict_model.py
8
+ |-- model/
9
+ | |-- insurance_claim_prediction_model.joblib
10
+ |-- dataset/
11
+ | |-- insurance2.csv
12
+ |-- requirements.txt
13
+ ```
14
+ # Insurance Claim Prediction App
15
+
16
+ This project implements a Streamlit web application for predicting whether an individual is likely to make an insurance
17
+ claim based on various input parameters. The prediction model is trained using a decision tree classifier.
18
+
19
+ ## Project Structure
20
+
21
+ - **`app.py`**: Streamlit web application code for user interface.
22
+ - **`train_model.py`**: Python script for training the machine learning model and saving it.
23
+ - **`predict_model.py`**: Python script for loading the trained model and making predictions.
24
+ - **`model/insurance_claim_prediction_model.joblib`**: Saved trained model using joblib.
25
+ - **`dataset/insurance2.csv`**: Dataset used for training and testing the model.
26
+ - **`requirements.txt`**: List of Python dependencies required to run the application.
27
+
28
+ ## Getting Started
29
+
30
+ ### Prerequisites
31
+
32
+ Ensure you have Python installed. You can install it from [python.org](https://www.python.org).
33
+
34
+ ### Installation
35
+ ```bash
36
+ pip install -r requirements.txt
37
+ ```
38
+ ### Running the App
39
+ To run the Streamlit app, execute the following command:
40
+ ```bash
41
+ streamlit run app.py
42
+ ```
43
+ This will start a local server and open your default web browser to the app.
44
+
45
+ ### Usage
46
+ User Input Parameters: Adjust the sliders and dropdowns in the sidebar to input different values for age, sex, BMI,
47
+ children, smoker status, region, and medical charges.
48
+ Predict Button: Click on the "Predict" button in the sidebar to see whether the individual is likely to make an insurance
49
+ claim.
50
+ Analysis Dashboard: View average medical charges for claims made and not made based on demo data.
51
+
52
+ ### Examples
53
+ #### Example 1: Predicting Insurance Claim Likelihood
54
+
55
+ Suppose a 40-year-old male with a BMI of 25.3, 2 children, non-smoker from the southeast region, and medical charges of $2900.0 wants to predict the likelihood of making an insurance claim. After inputting these details and clicking "Predict," the app predicts whether this individual is likely to make an insurance claim.
56
+
57
+ ### Dependencies
58
+
59
+ ```bash
60
+ Python 3.x
61
+ pandas
62
+ joblib
63
+ scikit-learn
64
+ streamlit
65
+ ```
requirements.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ pandas
2
+ scikit-learn
3
+ streamlit
train.py ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # train_model.py
2
+
3
+ import pandas as pd
4
+ from sklearn.model_selection import train_test_split
5
+ from sklearn import tree
6
+ from sklearn.pipeline import Pipeline
7
+ from sklearn.compose import ColumnTransformer
8
+ from sklearn.preprocessing import StandardScaler, OneHotEncoder
9
+ import joblib
10
+
11
+ class InsuranceClaimModelTrainer:
12
+ def __init__(self, data_path):
13
+ self.data_path = data_path
14
+ self.model = None
15
+
16
+ def load_data(self):
17
+ # Load the dataset
18
+ df = pd.read_csv(self.data_path)
19
+ # Separate features and target
20
+ X = df.drop(columns=['insuranceclaim'])
21
+ y = df['insuranceclaim']
22
+ return X, y
23
+
24
+ def preprocess_data(self, X):
25
+ # Define preprocessing for numerical features (scaling)
26
+ numerical_features = ['age', 'bmi', 'children', 'charges']
27
+ numerical_transformer = StandardScaler()
28
+
29
+ # Define preprocessing for categorical features (one-hot encoding)
30
+ categorical_features = ['sex', 'smoker', 'region']
31
+ categorical_transformer = OneHotEncoder(handle_unknown='ignore', drop='first')
32
+
33
+ # Combine preprocessing steps
34
+ preprocessor = ColumnTransformer(
35
+ transformers=[
36
+ ('num', numerical_transformer, numerical_features),
37
+ ('cat', categorical_transformer, categorical_features)
38
+ ])
39
+
40
+ return preprocessor
41
+
42
+ def train_model(self):
43
+ # Load and preprocess the data
44
+ X, y = self.load_data()
45
+ preprocessor = self.preprocess_data(X)
46
+
47
+ # Create a preprocessing and modeling pipeline
48
+ self.model = Pipeline(steps=[
49
+ ('preprocessor', preprocessor),
50
+ ('classifier', tree.DecisionTreeClassifier(random_state=42))
51
+ ])
52
+
53
+ # Split data into training and testing sets
54
+ X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=10)
55
+
56
+ # Train the model
57
+ self.model.fit(X_train, y_train)
58
+
59
+ # Save the preprocessor and the trained model using joblib
60
+ joblib.dump(self.model, 'model/insurance_claim_prediction_model.joblib')
61
+ print("Model trained and saved successfully!")
62
+
63
+ if __name__ == "__main__":
64
+ trainer = InsuranceClaimModelTrainer('dataset/insurance2.csv')
65
+ trainer.train_model()