diff --git a/.idea/DjangoDocker.iml b/.idea/DjangoDocker.iml
index 72ca99795fc233f9c72c8f5063f014ed2cfa2f9b..ae11b5f353a246ca17493da8dfdd400b8e815b79 100644
--- a/.idea/DjangoDocker.iml
+++ b/.idea/DjangoDocker.iml
@@ -17,7 +17,7 @@
       <sourceFolder url="file://$MODULE_DIR$/ActualProjectCode/DjangoProject" isTestSource="false" />
       <sourceFolder url="file://$MODULE_DIR$/mainDockerImage/backend" isTestSource="false" />
     </content>
-    <orderEntry type="jdk" jdkName="C:\Users\james\AppData\Local\Programs\Python\Python311\python.exe" jdkType="Python SDK" />
+    <orderEntry type="jdk" jdkName="Python 3.13" jdkType="Python SDK" />
     <orderEntry type="sourceFolder" forTests="false" />
   </component>
 </module>
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
index 52b60581075132ee8ea8b95067f7eb1ee09d1aef..1d3ce46ba0d13183e3244cba5b930b5e27be4c6b 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -3,5 +3,5 @@
   <component name="Black">
     <option name="sdkName" value="Python 3.13" />
   </component>
-  <component name="ProjectRootManager" version="2" project-jdk-name="C:\Users\james\AppData\Local\Programs\Python\Python311\python.exe" project-jdk-type="Python SDK" />
+  <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.13" project-jdk-type="Python SDK" />
 </project>
\ No newline at end of file
diff --git a/ActualProjectCode/DjangoProject/core/migrations/0001_initial.py b/ActualProjectCode/DjangoProject/core/migrations/0001_initial.py
deleted file mode 100644
index 3cc8e19c2117c405556d5451196f6c989fdc386b..0000000000000000000000000000000000000000
--- a/ActualProjectCode/DjangoProject/core/migrations/0001_initial.py
+++ /dev/null
@@ -1,58 +0,0 @@
-import django.db.models.deletion
-from django.conf import settings
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
-    initial = True
-
-    dependencies = [
-        migrations.swappable_dependency(settings.AUTH_USER_MODEL),
-    ]
-
-    operations = [
-        migrations.CreateModel(
-            name='Billing',
-            fields=[
-                ('billingID', models.AutoField(primary_key=True, serialize=False)),
-                ('amount', models.FloatField()),
-                ('username', models.CharField(default='company', max_length=100)),
-                ('companyName', models.CharField(max_length=100)),
-            ],
-        ),
-        migrations.CreateModel(
-            name='Interaction',
-            fields=[
-                ('interactionID', models.AutoField(primary_key=True, serialize=False)),
-                ('username', models.CharField(default='default', max_length=100)),
-                ('date', models.DateTimeField()),
-                ('interaction', models.CharField(max_length=1000)),
-            ],
-        ),
-        migrations.CreateModel(
-            name='mlModel',
-            fields=[
-                ('modelID', models.AutoField(primary_key=True, serialize=False)),
-                ('username', models.CharField(default='default', max_length=100)),
-            ],
-        ),
-        migrations.CreateModel(
-            name='Record',
-            fields=[
-                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
-                ('username', models.CharField(default='default', max_length=100)),
-                ('uploadedFile', models.FileField(blank=True, null=True, upload_to='./records/')),
-                ('chosenML', models.CharField(default='baseML', max_length=100)),
-                ('responseByML', models.CharField(default='PLACEHOLDER RESPONSE', max_length=100)),
-            ],
-        ),
-        migrations.CreateModel(
-            name='Profile',
-            fields=[
-                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
-                ('role', models.CharField(choices=[('admin', 'Admin'), ('user', 'User'), ('ai_engineer', 'AI Engineer'), ('finance', 'Finance Team')], max_length=100)),
-                ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
-            ],
-        ),
-    ]
diff --git a/ActualProjectCode/DjangoProject/core/migrations/0002_alter_mlmodel_modelname.py b/ActualProjectCode/DjangoProject/core/migrations/0002_alter_mlmodel_modelname.py
deleted file mode 100644
index 145cd25751b3261d044052d54cf7da8bb76d2eda..0000000000000000000000000000000000000000
--- a/ActualProjectCode/DjangoProject/core/migrations/0002_alter_mlmodel_modelname.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# Generated by Django 5.1.7 on 2025-03-29 15:15
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
-    dependencies = [
-        ('core', '0001_initial'),
-    ]
-
-    operations = [
-        migrations.AlterField(
-            model_name='mlmodel',
-            name='modelName',
-            field=models.FileField(blank=True, null=True, upload_to='./mlModels/modelName'),
-        ),
-    ]
diff --git a/ActualProjectCode/DjangoProject/mlModels/modelName/model1.py b/ActualProjectCode/DjangoProject/mlModels/modelName/model1.py
new file mode 100644
index 0000000000000000000000000000000000000000..e9e5534baf59c2ed650c6741f6a7f9ff27d40469
--- /dev/null
+++ b/ActualProjectCode/DjangoProject/mlModels/modelName/model1.py
@@ -0,0 +1,96 @@
+import os
+import pandas as pd
+import numpy as np
+from gplearn.genetic import SymbolicRegressor
+from sklearn.model_selection import train_test_split
+from sklearn.metrics import mean_squared_error, r2_score
+import matplotlib.pyplot as plt
+from sklearn.preprocessing import StandardScaler
+import seaborn as sns
+
+# Load the data
+project_root = os.path.dirname(os.path.dirname(__file__))
+file_path = r"C:\Users\Charlie1\PycharmProjects\shallowsinks\ActualProjectCode\DjangoProject\records\Synthetic_Data_For_Students.csv"
+data = pd.read_csv(file_path)
+
+# Will need to be changed to work with different csv files maybe ask user for their target column?
+target_col = 'SettlementValue'
+X = data.drop(target_col, axis=1)
+y = data[target_col]
+
+# dropping non numeric and nan features
+numeric_columns = X.select_dtypes(include=[np.number]).columns.tolist()
+X = X[numeric_columns]
+print(f"Features used: {len(numeric_columns)} numeric features")
+
+
+data_clean = data.dropna(subset=[*numeric_columns, target_col])
+print(f"Rows after dropping missing values: {data_clean.shape[0]} out of {data.shape[0]} ({data_clean.shape[0]/data.shape[0]*100:.1f}%)")
+
+# Redefine X and y with clean data
+X_clean = data_clean[numeric_columns]
+y_clean = data_clean[target_col]
+
+# Split the data
+X_train, X_test, y_train, y_test = train_test_split(X_clean, y_clean, test_size=0.2, random_state=42)
+
+# Scale the features
+scaler = StandardScaler()
+X_train_scaled = scaler.fit_transform(X_train)
+X_test_scaled = scaler.transform(X_test)
+
+# Configure and training the model
+print("Training the Symbolic Regressor...")
+symbolic_reg = SymbolicRegressor(
+    population_size=5000,
+    generations=20,
+    p_crossover=0.7,
+    p_subtree_mutation=0.1,
+    p_hoist_mutation=0.05,
+    p_point_mutation=0.1,
+    max_samples=0.9,
+    verbose=1,
+    parsimony_coefficient=0.01,
+    random_state=42,
+    function_set=('add', 'sub', 'mul', 'div', 'sqrt', 'log', 'sin', 'cos')
+)
+
+symbolic_reg.fit(X_train_scaled, y_train)
+
+# Make predictions
+y_pred_train = symbolic_reg.predict(X_train_scaled)
+y_pred_test = symbolic_reg.predict(X_test_scaled)
+
+# Evaluate the model
+train_rmse = np.sqrt(mean_squared_error(y_train, y_pred_train))
+test_rmse = np.sqrt(mean_squared_error(y_test, y_pred_test))
+train_r2 = r2_score(y_train, y_pred_train)
+test_r2 = r2_score(y_test, y_pred_test)
+
+print(f"Train RMSE: {train_rmse:.2f}")
+print(f"Test RMSE: {test_rmse:.2f}")
+print(f"Train R² Score: {train_r2:.4f}")
+print(f"Test R² Score: {test_r2:.4f}")
+
+# Display the learned expression
+print("\nBest symbolic expression:")
+print(symbolic_reg._program)
+
+# Plot actual vs predicted values
+plt.figure(figsize=(10, 6))
+plt.scatter(y_test, y_pred_test, alpha=0.5)
+plt.plot([y_test.min(), y_test.max()], [y_test.min(), y_test.max()], 'r--')
+plt.xlabel('Actual SettlementValue')
+plt.ylabel('Predicted SettlementValue')
+plt.title('Actual vs Predicted Values')
+plt.savefig('symbolic_regression_results.png')
+plt.show()
+
+# Save the model expression to a file
+with open('symbolic_regression_formula.txt', 'w') as f:
+    f.write(str(symbolic_reg._program))
+    f.write('\n\nModel Performance:\n')
+    f.write(f"Train RMSE: {train_rmse:.2f}\n")
+    f.write(f"Test RMSE: {test_rmse:.2f}\n")
+    f.write(f"Train R² Score: {train_r2:.4f}\n")
+    f.write(f"Test R² Score: {test_r2:.4f}\n")
\ No newline at end of file
diff --git a/ActualProjectCode/DjangoProject/records/Synthetic_Data_For_Students.csv b/ActualProjectCode/DjangoProject/records/Synthetic_Data_For_Students.csv
new file mode 100644
index 0000000000000000000000000000000000000000..ad07e2c3fdbeb79139199e798e7b9f14021fd015
--- /dev/null
+++ b/ActualProjectCode/DjangoProject/records/Synthetic_Data_For_Students.csv
@@ -0,0 +1,5001 @@
+SettlementValue,AccidentType,Injury_Prognosis,SpecialHealthExpenses,SpecialReduction,SpecialOverage,GeneralRest,SpecialAdditionalInjury,SpecialEarningsLoss,SpecialUsageLoss,SpecialMedications,SpecialAssetDamage,SpecialRehabilitation,SpecialFixes,GeneralFixed,GeneralUplift,SpecialLoanerVehicle,SpecialTripCosts,SpecialJourneyExpenses,SpecialTherapy,Exceptional_Circumstances,Minor_Psychological_Injury,Dominant injury,Whiplash,Vehicle Type,Weather Conditions,Accident Date,Claim Date,Vehicle Age,Driver Age,Number of Passengers,Accident Description,Injury Description,Police Report Filed,Witness Present,Gender
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2023-11-10 11:22:24.508901,2024-06-11 11:22:24.508901,13.0,33.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+870.0,Rear end,B. 2 months,0.0,0.0,0.0,520.0,0.0,0.0,90.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2023-06-25 00:55:01.140228,2024-01-09 00:55:01.140228,4.0,45.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+2140.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,1400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Sunny,2020-02-23 17:43:47.805561,2020-03-01 17:43:47.805561,9.0,45.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+520.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Rainy,2021-10-02 04:36:32.118423,2021-10-13 04:36:32.118423,5.0,62.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Rainy,2023-04-02 05:13:07.117423,2023-04-14 05:13:07.117423,9.0,78.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Rainy,2020-03-12 13:18:12.458491,2020-06-30 13:18:12.458491,10.0,55.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+1015.2,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,520.0,0.0,0.0,31.2,,455.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2023-04-08 08:24:57.899579,2023-08-19 08:24:57.899579,5.0,72.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+1032.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,192.0,No,No,Legs,Yes,Car,Sunny,2021-10-14 11:00:13.682736,2022-02-19 11:00:13.682736,9.0,77.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Female
+808.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,64.8,400.0,No,Yes,Arms,No,Motorcycle,Snowy,2020-09-09 15:07:57.455491,2021-02-04 15:07:57.455491,13.0,23.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Female
+500.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2021-09-01 12:37:18.207641,2021-10-25 12:37:18.207641,19.0,59.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+836.5,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,88.8,,400.0,No,Yes,Arms,Yes,Car,Sunny,2020-06-24 05:38:28.061612,2021-05-01 05:38:28.061612,,76.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Male
+644.75,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,99.0,0.0,0.0,0.0,182.0,Yes,No,Arms,No,Motorcycle,Rainy,2022-06-04 19:30:57.251450,2022-08-22 19:30:57.251450,6.0,46.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Female
+1167.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,168.0,0.0,0.0,0.0,592.0,Yes,No,Arms,No,Motorcycle,Rainy,2021-08-23 11:19:48.957791,2022-08-04 11:19:48.957791,1.0,51.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+1144.5,Rear end,E. 5 months,0.0,0.0,0.0,1558.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,101.5,473.7,No,Yes,Arms,Yes,Motorcycle,Snowy,2021-09-14 09:02:07.465493,2021-12-20 09:02:07.465493,6.0,78.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+1665.0,Rear end,I. 9 months,0.0,0.0,0.0,770.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2020-06-04 09:00:06.481296,2021-02-08 09:00:06.481296,16.0,74.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+1969.4,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,29.4,0.0,525.0,No,Yes,Legs,Yes,Car,Sunny,2021-08-19 09:11:55.103020,2021-12-24 09:11:55.103020,12.0,20.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Other
+1425.4,Rear end,E. 5 months,0.0,0.0,0.0,1050.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,5.4,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2020-04-14 06:21:23.296659,2020-05-14 06:21:23.296659,8.0,23.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+728.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,173.0,0.0,0.0,60.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Rainy,2020-04-20 02:32:40.232046,2020-05-14 02:32:40.232046,12.0,65.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+945.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,No,Car,Snowy,2021-10-10 01:51:45.981196,2022-04-29 01:51:45.981196,14.0,55.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+865.0,,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,370.0,No,No,Arms,No,Car,Snowy,2023-08-03 18:11:44.300860,2023-12-12 18:11:44.300860,,73.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Female
+1360.0,Other side pulled out of side road,H. 8 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,525.0,No,Yes,Hips,Yes,Motorcycle,,2023-11-02 00:06:02.952590,2024-03-03 00:06:02.952590,16.0,,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+839.8,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,12.0,406.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2022-08-23 20:05:31.266253,2023-08-14 20:05:31.266253,7.0,53.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+1045.0,Rear end,D. 4 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,,0.0,0.0,,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Hips,,Car,,2022-01-28 04:24:26.213242,2022-12-21 04:24:26.213242,8.0,32.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+270.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,50.0,No,No,Multiple,Yes,Truck,Snowy,2020-08-16 16:21:42.020404,2021-01-13 16:21:42.020404,8.0,23.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+1570.0,Rear end,E. 5 months,0.0,0.0,0.0,1846.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,108.0,No,Yes,Multiple,Yes,Car,Rainy,2021-11-25 19:22:01.464292,2021-12-09 19:22:01.464292,7.0,50.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+1460.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Hips,Yes,Truck,Snowy,2022-11-18 06:52:29.909982,2023-09-18 06:52:29.909982,15.0,58.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Male
+1775.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,477.0,No,Yes,Hips,Yes,Car,,2020-10-13 19:13:57.527505,2020-11-11 19:13:57.527505,19.0,29.0,,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Female
+2168.0,,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,370.0,No,Yes,Hips,,Car,Rainy,2023-02-25 07:03:43.964792,2023-04-16 07:03:43.964792,6.0,74.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+1500.0,Other,G. 7 months,0.0,0.0,0.0,1187.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Multiple,No,Car,Sunny,2022-01-26 10:21:03.132626,2022-09-23 10:21:03.132626,16.0,72.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+880.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,60.0,406.0,No,No,Multiple,Yes,Motorcycle,Rainy,2020-10-31 07:47:48.333666,2021-08-10 07:47:48.333666,6.0,60.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+984.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,464.0,No,,Legs,Yes,,Rainy,2022-01-11 05:51:43.100620,2022-12-12 05:51:43.100620,5.0,30.0,3.0,,Concussion and bruised ribs.,Yes,Yes,Female
+963.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,468.0,No,No,Legs,Yes,Truck,Snowy,2020-09-08 11:05:42.068413,2021-08-26 11:05:42.068413,4.0,50.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2021-07-01 21:38:16.539307,2021-12-04 21:38:16.539307,16.0,68.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+992.2,Rear end,F. 6 months,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,7.2,0.0,No,No,Hips,No,Motorcycle,,2021-06-19 22:15:08.821764,2021-11-03 22:15:08.821764,7.0,45.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Female
+1500.0,Other,G. 7 months,0.0,0.0,0.0,1187.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Hips,No,Motorcycle,Snowy,2023-05-13 23:33:47.205441,2024-04-04 23:33:47.205441,0.0,70.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+696.61,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,176.61,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Snowy,2022-10-26 19:09:03.708741,2023-09-27 19:09:03.708741,15.0,53.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+1010.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,574.0,No,No,Multiple,Yes,Motorcycle,Sunny,2021-05-07 02:50:31.806361,,16.0,22.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+865.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,,0.0,0.0,370.0,No,No,,No,Truck,Snowy,2022-09-20 06:58:32.862572,2022-12-10 06:58:32.862572,2.0,72.0,,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+3224.0,Other,F. 6 months,1152.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,239.4,0.0,Yes,Yes,Legs,Yes,Truck,Rainy,2021-04-18 17:14:59.459891,2021-07-14 17:14:59.459891,12.0,42.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Female
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Snowy,2023-12-18 17:36:18.435687,2024-09-07 17:36:18.435687,7.0,34.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+1707.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,1187.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2022-02-14 23:58:50.866173,2022-10-30 23:58:50.866173,15.0,54.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+1297.0,Other side changed lanes and collided with clt's vehicle,D. 4 months,0.0,0.0,0.0,555.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Arms,No,Truck,Snowy,2021-07-18 06:09:51.958391,2022-01-19 06:09:51.958391,6.0,36.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2020-05-28 01:46:00.312062,2020-11-24 01:46:00.312062,14.0,52.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+1922.01,Rear end,G. 7 months,0.0,0.0,0.0,1008.45,0.0,77.01,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2023-08-25 01:52:55.115023,2024-02-27 01:52:55.115023,1.0,60.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Male
+1057.76,Other side drove on wrong side of the road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.35,0.0,0.0,0.0,520.0,0.0,0.0,10.8,459.71,68.7,No,Yes,Multiple,No,Truck,Sunny,2022-10-12 18:41:59.063812,2023-02-12 18:41:59.063812,1.0,51.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+1465.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,625.0,No,No,Multiple,Yes,Truck,Rainy,2022-02-14 16:58:17.019403,2022-05-21 16:58:17.019403,9.0,71.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Other
+2235.0,Rear end,O. 15 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,110.0,No,Yes,Multiple,No,Car,Sunny,2020-11-23 09:32:22.228445,2021-02-24 09:32:22.228445,4.0,63.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+1295.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,455.0,No,No,Arms,No,Car,Rainy,2020-03-25 09:43:01.716343,2020-03-28 09:43:01.716343,3.0,23.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Male
+700.0,Other side changed lanes and collided with clt's vehicle,A. 1 month,0.0,0.0,0.0,483.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Sunny,2022-04-06 05:35:52.510502,2022-04-08 05:35:52.510502,14.0,36.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+1207.0,Rear end,G. 7 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,4.35,455.0,No,Yes,Hips,Yes,Truck,Snowy,2021-10-07 03:46:07.513502,2022-08-08 03:46:07.513502,12.0,18.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+3020.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4600.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2023-11-06 09:14:30.654130,2024-10-28 09:14:30.654130,16.0,24.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Other
+3165.0,Other side pulled out of side road,J. 10 months,0.0,0.0,0.0,1400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,,0.0,0.0,593.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2021-02-12 21:09:45.477095,2021-07-10 21:09:45.477095,0.0,51.0,1.0,Hit a deer on the highway.,,Yes,Yes,Male
+1027.7,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,179.0,0.0,0.0,2.7,238.0,Yes,Yes,Arms,No,Car,Snowy,2020-06-14 07:19:17.271454,2021-03-26 07:19:17.271454,17.0,73.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+1570.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,1390.0,0.0,0.0,0.0,42.6,170.0,No,Yes,Multiple,No,Motorcycle,Snowy,2021-03-06 04:50:56.291258,2021-07-29 04:50:56.291258,14.0,36.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+240.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Rainy,2021-08-03 07:40:53.530706,2022-06-29 07:40:53.530706,13.0,50.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Female
+1300.0,Other side reversed into Clt's vehicle,D. 4 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Multiple,No,Car,Rainy,2023-01-11 00:36:17.715543,2024-01-07 00:36:17.715543,8.0,43.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+1555.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Multiple,Yes,Truck,Rainy,2023-02-02 19:20:17.763552,2023-10-22 19:20:17.763552,11.0,58.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2022-08-10 02:39:00.468093,2022-10-11 02:39:00.468093,4.0,70.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Female
+2840.0,Other side pulled out of side road,I. 9 months,0.0,0.0,400.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Arms,Yes,Car,Rainy,2022-11-01 22:20:54.490898,2023-06-15 22:20:54.490898,,66.0,,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Female
+2359.0,Other side changed lanes on a roundabout colliding with clt's vehicle,H. 8 months,0.0,0.0,0.0,3450.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,19.0,No,No,Legs,No,Truck,Sunny,2022-08-07 11:33:55.847169,2022-09-07 11:33:55.847169,6.0,59.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+895.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Sunny,2021-05-16 04:08:01.056211,2021-11-22 04:08:01.056211,8.0,44.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+240.0,Rear end - Clt pushed into next vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Rainy,2020-10-22 13:30:52.930586,2021-07-17 13:30:52.930586,17.0,55.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+243.9,Other,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,3.9,0.0,No,No,Legs,Yes,Car,Rainy,2021-01-17 14:18:59.267853,2021-01-29 14:18:59.267853,3.0,43.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Other
+1160.0,Other,A. 1 month,0.0,0.0,900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2023-08-27 16:57:59.735947,2024-03-05 16:57:59.735947,1.0,52.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+,Rear end,G. 7 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,518.0,No,,Arms,Yes,Truck,Snowy,2020-06-29 04:48:03.456691,2020-07-24 04:48:03.456691,,76.0,,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+1009.0,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,114.0,No,Yes,Hips,No,Car,Snowy,2023-10-15 04:31:38.299659,2024-01-14 04:31:38.299659,11.0,37.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Female
+520.0,Rear end - 3 car - Clt at front,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2023-05-28 07:01:25.697139,2023-08-24 07:01:25.697139,12.0,41.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Male
+355.0,Rear end,A. 1 month,0.0,0.0,0.0,788.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2021-08-01 20:38:04.296859,2022-06-29 20:38:04.296859,13.0,64.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+1472.0,Rear end,F. 6 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,90.0,No,Yes,Multiple,Yes,Truck,Sunny,2021-10-12 16:56:50.602120,2022-07-13 16:56:50.602120,4.0,38.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+2266.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,1008.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,518.0,No,Yes,Hips,No,Car,Sunny,2023-11-08 17:19:01.428285,2024-09-04 17:19:01.428285,2.0,77.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Other
+725.0,Other side pulled out of side road,F. 6 months,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,374.35,No,,Hips,Yes,Motorcycle,,2020-05-16 16:24:00.288057,,3.0,71.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+795.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,345.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2023-04-17 02:41:53.302660,2023-07-06 02:41:53.302660,16.0,43.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+1429.32,Rear end,G. 7 months,0.0,0.0,0.0,524.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,10.32,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2023-06-25 21:56:42.680536,2024-05-14 21:56:42.680536,18.0,37.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Snowy,2020-11-28 15:42:31.470294,2021-04-17 15:42:31.470294,10.0,23.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+800.05,Rear end - Clt pushed into next vehicle,A. 1 month,0.0,0.0,0.0,560.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Snowy,2021-02-23 09:30:03.960792,2021-09-25 09:30:03.960792,7.0,20.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+1820.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2020-06-05 13:02:21.868373,2020-06-23 13:02:21.868373,11.0,27.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Female
+2367.8,Rear end,,0.0,0.0,0.0,1113.0,0.0,0.0,0.0,0.0,264.0,0.0,0.0,895.0,0.0,70.0,0.0,25.8,0.0,No,Yes,Multiple,No,Truck,Sunny,2020-10-04 17:56:28.277655,2020-11-27 17:56:28.277655,17.0,29.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Male
+790.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,345.0,No,No,,No,Truck,Sunny,2022-04-01 13:26:50.962192,,,50.0,2.0,,Fractured arm and leg.,Yes,No,Female
+950.55,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,46.2,9.35,No,Yes,Arms,Yes,Motorcycle,Snowy,2022-05-27 22:15:43.388677,,8.0,39.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Other
+3726.57,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2000.0,0.0,285.0,0.0,0.0,30.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,1181.57,No,No,Multiple,No,Car,Snowy,2023-03-12 11:33:03.996799,2023-11-01 11:33:03.996799,4.0,79.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+1327.99,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99,0.0,0.0,895.0,0.0,0.0,0.0,0.0,415.0,No,Yes,Arms,No,Truck,Rainy,2021-06-21 09:17:58.055611,2022-02-16 09:17:58.055611,16.0,78.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+1895.0,Other,G. 7 months,0.0,0.0,0.0,2105.0,0.0,0.0,0.0,0.0,198.66,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,Yes,Car,Snowy,2020-09-05 05:59:29.753950,2021-08-05 05:59:29.753950,12.0,33.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Male
+1544.4,Other,B. 2 months,0.0,0.0,0.0,1640.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,2177.7,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Rainy,2021-07-29 15:31:51.982396,2022-07-08 15:31:51.982396,5.0,34.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+745.0,Rear end,F. 6 months,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,294.0,No,No,Multiple,Yes,Truck,Sunny,2020-12-13 20:11:51.502300,2021-02-05 20:11:51.502300,13.0,27.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+240.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Rainy,2023-02-18 20:51:19.335867,2023-05-16 20:51:19.335867,14.0,29.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Female
+1153.0,Other side reversed into clt's stationary vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Arms,Yes,Truck,Snowy,2023-09-13 15:30:42.848569,2024-05-31 15:30:42.848569,13.0,36.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+972.5,Other side collided with Clt's parked vehicle,G. 7 months,0.0,0.0,0.0,1050.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2021-08-25 05:23:12.038407,2022-04-18 05:23:12.038407,3.0,77.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+985.74,Rear end,A. 1 month,0.0,0.0,0.0,520.0,0.0,186.54,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,19.2,0.0,No,Yes,Legs,Yes,Truck,Rainy,2022-06-08 14:38:17.259451,2022-10-09 14:38:17.259451,17.0,57.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Female
+2000.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,1725.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,191.7,6.0,No,Yes,Multiple,No,Car,Sunny,2023-07-08 18:21:31.938387,2023-08-31 18:21:31.938387,0.0,40.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Male
+899.5,Other side reversed into clt's stationary vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,0.0,0.0,0.0,4.5,0.0,No,Yes,Hips,Yes,Truck,Rainy,2022-11-05 03:27:06.805361,2023-06-09 03:27:06.805361,11.0,,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Other
+1100.03,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,210.0,0.0,214.0,0.0,0.0,520.0,0.0,0.0,0.0,118.04,406.99,No,Yes,Multiple,Yes,Car,Snowy,2023-08-10 11:24:42.776555,2024-02-23 11:24:42.776555,8.0,27.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Male
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Truck,Snowy,2020-03-29 18:51:29.417883,2020-05-07 18:51:29.417883,9.0,27.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Male
+840.0,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,840.0,,0.0,0.0,0.0,,No,No,Hips,No,Truck,Sunny,2023-12-04 10:08:39.943988,2024-07-19 10:08:39.943988,17.0,67.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+660.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,140.0,No,Yes,Hips,No,Motorcycle,Sunny,2022-04-11 11:46:01.752350,2022-12-04 11:46:01.752350,16.0,27.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+1740.0,Other,J. 10 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2021-12-12 03:53:36.883376,2022-04-23 03:53:36.883376,18.0,56.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Rainy,2022-03-29 22:21:46.341268,2023-02-22 22:21:46.341268,3.0,47.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+1390.0,Rear end,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2021-08-02 10:39:11.990398,2022-06-19 10:39:11.990398,15.0,21.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+950.5,Other side drove on wrong side of the road,F. 6 months,0.0,0.0,0.0,500.0,0.0,0.0,90.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,10.5,126.0,Yes,Yes,Multiple,Yes,Car,Sunny,2023-02-23 13:00:20.884176,2023-08-10 13:00:20.884176,6.0,18.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Female
+1170.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Hips,No,Truck,Sunny,2020-07-26 22:41:38.899779,2020-09-01 22:41:38.899779,8.0,60.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Male
+920.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Legs,Yes,Truck,Sunny,2022-04-25 12:13:06.397279,2022-07-01 12:13:06.397279,7.0,36.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+1311.0,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.0,0.0,0.0,840.0,0.0,0.0,0.0,120.0,300.0,No,No,Arms,Yes,Truck,Rainy,2021-05-05 22:48:16.419283,2021-08-24 22:48:16.419283,6.0,22.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Male
+495.0,,F. 6 months,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Truck,Sunny,2021-01-24 07:31:57.743548,2021-08-31 07:31:57.743548,9.0,47.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+1491.0,Rear end,I. 9 months,0.0,0.0,0.0,2560.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,345.0,No,No,Hips,Yes,Car,Sunny,2022-07-23 00:04:01.968393,2023-02-17 00:04:01.968393,7.0,43.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+1421.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,747.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,50.0,Yes,Yes,Multiple,No,Truck,Rainy,2020-02-20 19:38:09.337867,,16.0,57.0,2.0,,Fractured arm and leg.,No,Yes,Female
+945.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,0.0,425.0,No,Yes,Hips,No,Truck,Rainy,2022-07-25 01:07:58.895779,2023-05-24 01:07:58.895779,11.0,51.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Male
+788.8,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,19.8,406.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2021-02-17 13:18:47.025405,2021-08-15 13:18:47.025405,13.0,19.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+3248.7,Other,G. 7 months,0.0,0.0,0.0,2096.0,0.0,0.0,0.0,18.7,239.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Sunny,2021-08-03 07:40:53.530706,2021-08-16 07:40:53.530706,11.0,41.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+1099.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,21.6,294.0,No,Yes,Multiple,No,Truck,Rainy,2023-11-18 08:37:38.371674,2024-09-13 08:37:38.371674,1.0,31.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+1952.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,1113.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,300.0,No,Yes,Hips,No,Truck,Snowy,2021-06-01 12:39:36.475295,2021-10-04 12:39:36.475295,11.0,58.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
+,Rear end,H. 8 months,0.0,0.0,0.0,,0.0,,0.0,0.0,,0.0,0.0,895.0,,0.0,0.0,0.0,325.0,No,Yes,Arms,Yes,Car,Rainy,2023-05-30 22:06:30.318063,2024-01-18 22:06:30.318063,13.0,59.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Female
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,,Snowy,2020-11-09 16:05:51.430286,2021-07-18 16:05:51.430286,6.0,30.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+1135.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Arms,Yes,Truck,Sunny,2023-10-22 04:45:10.622124,2024-02-25 04:45:10.622124,12.0,46.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+495.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Sunny,2020-06-21 14:33:23.440688,2021-02-11 14:33:23.440688,3.0,18.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+830.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,406.0,No,No,Hips,No,Motorcycle,Snowy,2022-05-19 17:59:55.679135,2022-10-04 17:59:55.679135,0.0,63.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+1811.0,Rear end,H. 8 months,0.0,0.0,0.0,892.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,21.0,0.0,455.0,No,Yes,Arms,No,Truck,Rainy,2023-03-08 23:26:17.835567,2023-04-26 23:26:17.835567,16.0,51.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Sunny,2021-12-04 20:39:30.714142,2022-06-08 20:39:30.714142,2.0,21.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Other
+1818.94,Rear end,A. 1 month,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,7.8,0.0,801.14,No,No,Legs,No,Truck,Snowy,2020-09-04 08:57:48.213642,2021-03-28 08:57:48.213642,16.0,45.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Female
+2415.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,80.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Hips,Yes,Car,Rainy,2020-05-23 23:38:06.457291,2020-08-09 23:38:06.457291,7.0,36.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Snowy,2020-06-08 04:07:26.489297,2020-12-19 04:07:26.489297,2.0,18.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+1241.0,Rear end,F. 6 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,421.0,No,Yes,Legs,No,Truck,Rainy,2023-12-31 00:00:00.000000,2024-04-12 00:00:00.000000,9.0,53.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+1694.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,742.0,Yes,Yes,Multiple,No,Motorcycle,Rainy,2021-10-29 15:29:33.714742,2022-02-11 15:29:33.714742,1.0,60.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+3074.0,Rear end,H. 8 months,0.0,0.0,0.0,2137.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,50.0,Yes,Yes,Legs,No,Car,Rainy,2022-02-26 16:21:24.736947,2022-12-10 16:21:24.736947,3.0,30.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Female
+575.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,80.0,No,No,Hips,No,Motorcycle,Rainy,2023-01-25 15:04:30.054010,2023-12-15 15:04:30.054010,13.0,76.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Male
+935.3,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,18.3,0.0,375.0,No,Yes,Arms,No,Truck,Snowy,2021-03-25 18:28:44.024804,2021-10-22 18:28:44.024804,10.0,67.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Female
+1050.8,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,219.8,0.0,0.0,520.0,0.0,0.0,0.0,0.0,311.0,No,Yes,Legs,No,Car,Snowy,2020-09-14 21:18:06.697339,2021-05-22 21:18:06.697339,13.0,59.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+483.42,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,18.42,35.0,238.0,No,Yes,Multiple,No,Truck,Snowy,2023-03-01 09:11:37.819563,2023-12-19 09:11:37.819563,12.0,,3.0,Hit a deer on the highway.,,No,No,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2022-06-22 15:05:21.904380,2023-01-09 15:05:21.904380,3.0,50.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Female
+650.0,Rear end - 3 car - Clt at front,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,390.0,No,Yes,Legs,No,Truck,Snowy,2021-11-21 17:14:07.609521,2021-12-15 17:14:07.609521,1.0,31.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Other
+739.99,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,76.23,300.0,No,Yes,Multiple,Yes,Truck,Rainy,2022-09-04 12:28:05.137027,2023-07-01 12:28:05.137027,1.0,33.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+2800.0,,F. 6 months,0.0,0.0,0.0,2280.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Sunny,2022-06-15 21:52:23.428685,2022-09-06 21:52:23.428685,10.0,,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+1390.0,Rear end,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2022-12-09 07:33:06.877375,2023-10-02 07:33:06.877375,4.0,75.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+735.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Legs,Yes,Truck,Snowy,,2024-04-05 01:19:47.517503,8.0,49.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+950.0,Other side drove on wrong side of the road,D. 4 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Legs,No,Truck,Snowy,2020-10-05 00:57:02.124424,2021-07-30 00:57:02.124424,19.0,67.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Female
+520.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Sunny,2022-08-21 19:01:34.338867,2023-08-20 19:01:34.338867,16.0,44.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Male
+2190.0,Rear end,L. 12 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2022-12-26 20:06:57.683536,2023-07-20 20:06:57.683536,11.0,52.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+1529.0,Other,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Legs,Yes,Motorcycle,Snowy,2022-07-17 10:53:18.879775,2022-08-26 10:53:18.879775,17.0,20.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Male
+1800.0,Rear end,F. 6 months,0.0,,0.0,2200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,50.0,No,Yes,Legs,No,,Rainy,,2023-03-15 08:51:27.977595,2.0,21.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+,Rear end,F. 6 months,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,,36.0,,No,Legs,Yes,Car,Sunny,2023-03-22 02:51:40.940188,2023-07-13 02:51:40.940188,4.0,24.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+914.0,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Arms,,Truck,Sunny,2022-08-06 07:31:40.460092,2023-07-12 07:31:40.460092,19.0,30.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Male
+2344.2200000000003,Rear end,H. 8 months,0.0,0.0,300.0,959.0,0.0,0.0,0.0,0.0,82.32,0.0,0.0,895.0,0.0,0.0,0.0,0.0,605.0,No,Yes,Legs,No,Motorcycle,Snowy,2023-07-13 10:30:33.486697,2023-07-17 10:30:33.486697,13.0,58.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+1069.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,574.0,No,No,Multiple,No,Car,Rainy,2022-09-07 10:33:43.604720,2022-12-24 10:33:43.604720,15.0,20.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Other
+1789.35,Rear end,C. 3 months,0.0,0.0,0.0,1651.0,,0.0,0.0,0.0,0.0,,0.0,260.0,0.0,0.0,0.0,10.65,18.7,No,Yes,Legs,Yes,Motorcycle,Snowy,2023-12-22 19:44:12.290458,2024-11-02 19:44:12.290458,18.0,34.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Female
+910.0,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,1260.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2023-11-16 21:34:49.137827,2024-03-09 21:34:49.137827,8.0,64.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Female
+1134.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,294.0,No,No,Multiple,No,Car,Rainy,2022-02-28 17:25:21.664332,2022-08-14 17:25:21.664332,16.0,76.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Other
+950.0,Other side drove on wrong side of the road,D. 4 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Multiple,Yes,Car,Snowy,2020-10-29 20:44:59.099819,2021-07-17 20:44:59.099819,6.0,27.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+1114.0,Other side pulled on to roundabout,I. 9 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,219.0,No,Yes,Arms,Yes,Truck,Snowy,2020-01-21 10:39:29.273854,,9.0,64.0,,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+1327.99,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99,0.0,0.0,895.0,0.0,0.0,0.0,0.0,415.0,No,Yes,Arms,Yes,Truck,Snowy,2022-04-19 09:01:15.615123,2022-11-29 09:01:15.615123,3.0,18.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+520.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,,Arms,Yes,,Sunny,,2020-10-19 15:59:13.910782,9.0,45.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Male
+2190.0,Rear end,L. 12 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2020-08-12 14:13:48.165633,2021-04-20 14:13:48.165633,2.0,76.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Other
+1895.0,Other side pulled on to roundabout,H. 8 months,0.0,0.0,0.0,1261.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,Yes,Car,Rainy,2021-08-09 17:53:18.159631,2021-08-23 17:53:18.159631,8.0,71.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Female
+1074.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Arms,Yes,Truck,Snowy,2022-05-08 15:38:29.501900,2022-11-22 15:38:29.501900,12.0,70.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Female
+740.0,,,0.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,,182.0,No,Yes,Arms,No,Motorcycle,Sunny,2021-10-02 04:36:32.118423,2022-02-05 04:36:32.118423,0.0,27.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+690.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,1960.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2022-10-17 17:51:34.458891,2023-05-11 17:51:34.458891,14.0,24.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+1058.55,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,210.0,0.0,0.0,495.0,0.0,0.0,7.55,0.0,485.0,No,No,Arms,Yes,Truck,Sunny,2023-06-13 01:31:53.422684,2023-10-31 01:31:53.422684,14.0,56.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+240.0,Other side pulled out of side road,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Sunny,2023-06-25 21:56:42.680536,2023-08-26 21:56:42.680536,10.0,20.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+650.0,Rear end,F. 6 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,80.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2020-09-29 11:46:19.035807,2021-07-09 11:46:19.035807,9.0,24.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Other
+1615.0,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,225.0,No,Yes,Arms,Yes,Truck,Rainy,2020-06-16 15:23:48.045609,2020-08-09 15:23:48.045609,6.0,26.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Male
+865.0,Other side changed lanes on a roundabout colliding with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,370.0,No,No,Hips,Yes,Truck,Snowy,2023-02-21 18:56:57.803560,2024-02-02 18:56:57.803560,0.0,57.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Male
+840.0,Rear end,,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Sunny,2023-07-03 05:10:48.849769,2023-07-15 05:10:48.849769,6.0,52.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Other
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2023-04-08 15:25:31.746349,2023-08-22 15:25:31.746349,4.0,43.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Female
+967.87,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,0.0,586.87,No,Yes,Arms,No,Truck,Rainy,2022-01-09 04:47:46.173234,2022-12-05 04:47:46.173234,15.0,22.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+937.27,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.67,0.0,0.0,0.0,495.0,0.0,0.0,0.0,25.8,462.0,No,No,Legs,Yes,Car,Rainy,2021-12-07 11:44:35.335067,2022-04-30 11:44:35.335067,7.0,30.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+960.0,Rear end,B. 2 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2020-01-21 03:38:55.427085,2020-10-29 03:38:55.427085,1.0,62.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+884.5,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,21.0,455.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2023-07-30 16:03:50.446089,2023-12-13 16:03:50.446089,7.0,47.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+320.0,Other side reversed into Clt's vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1692.54,0.0,0.0,240.0,,0.0,0.0,0.0,180.0,No,No,Hips,Yes,Car,Rainy,2021-01-15 06:14:28.493698,2021-11-12 06:14:28.493698,13.0,57.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+681.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Legs,No,Motorcycle,Snowy,2023-01-18 21:51:31.578315,2023-08-27 21:51:31.578315,3.0,67.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+915.0,Rear end,G. 7 months,0.0,0.0,0.0,179.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,20.0,No,Yes,,No,Truck,Sunny,2021-11-17 01:05:06.061212,2022-10-23 01:05:06.061212,14.0,79.0,1.0,,Whiplash and minor bruises.,No,Yes,Male
+2232.0,Other,H. 8 months,0.0,0.0,0.0,1537.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2020-03-15 04:23:17.079415,2020-10-10 04:23:17.079415,6.0,79.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+1860.0,Other side turned across Clt's path,L. 12 months,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,30.0,,574.0,No,Yes,,No,Truck,Rainy,2021-05-13 13:02:56.435287,2022-05-07 13:02:56.435287,19.0,56.0,2.0,Swerved to avoid another vehicle.,,Yes,No,Other
+470.43,Rear end,A. 1 month,0.0,0.0,150.0,0.0,0.0,0.0,0.0,0.0,66.33,0.0,0.0,240.0,0.0,0.0,0.0,14.1,0.0,No,No,Hips,No,Car,Snowy,2023-10-30 02:00:24.484896,2024-03-01 02:00:24.484896,7.0,76.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+1795.95,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,477.95,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Multiple,No,Motorcycle,Rainy,2020-08-31 06:49:54.358871,,10.0,,2.0,Side collision at an intersection.,,Yes,Yes,Male
+1130.0,Rear end,D. 4 months,0.0,0.0,0.0,2648.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,3.0,238.0,No,Yes,Legs,No,Car,Snowy,2022-03-18 05:59:12.470494,2022-08-22 05:59:12.470494,1.0,59.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Female
+1470.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Arms,No,Car,Sunny,2021-12-22 16:13:55.367073,2022-09-18 16:13:55.367073,8.0,40.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+852.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,520.0,0.0,0.0,27.0,0.0,305.0,No,Yes,Multiple,No,Truck,Snowy,,2023-01-14 21:10:54.610922,5.0,28.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Other
+460.0,Rear end - 3 car - Clt at front,A. 1 month,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Snowy,2021-08-17 08:07:58.175635,2022-05-13 08:07:58.175635,0.0,29.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+1246.0,Rear end,G. 7 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,266.0,No,No,Hips,No,Truck,Snowy,2021-07-28 11:29:36.595319,2022-07-12 11:29:36.595319,2.0,79.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Snowy,2020-01-29 21:55:50.830166,2020-09-04 21:55:50.830166,9.0,30.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+260.0,Other side drove on wrong side of the road,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2021-06-24 21:24:44.216843,2022-05-09 21:24:44.216843,4.0,57.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Motorcycle,Rainy,2022-07-18 14:55:34.266853,2023-03-13 14:55:34.266853,11.0,66.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Male
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Snowy,2021-11-18 19:08:29.141828,2021-12-21 19:08:29.141828,0.0,73.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Motorcycle,Snowy,2020-02-02 10:02:36.991398,2020-11-13 10:02:36.991398,8.0,63.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+556.4,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,45.42,36.4,Yes,Yes,Arms,Yes,Motorcycle,Sunny,2022-07-11 07:41:28.097619,2022-08-17 07:41:28.097619,12.0,66.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,,No,Truck,Snowy,2020-02-23 03:42:40.112022,2020-06-05 03:42:40.112022,18.0,68.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+2390.0,Rear end,L. 12 months,0.0,0.0,0.0,1740.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2023-01-30 00:12:57.755551,,6.0,33.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+1158.95,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,623.95,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,345.0,No,No,Legs,No,Truck,Rainy,2020-02-17 21:32:30.870174,2020-11-23 21:32:30.870174,15.0,26.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Female
+895.0,Other side pulled on to roundabout,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Rainy,2021-09-16 03:05:30.546109,2022-02-05 03:05:30.546109,7.0,69.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Female
+1099.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,21.6,294.0,No,Yes,Hips,Yes,Car,Snowy,2021-08-13 20:01:12.014402,2022-04-09 20:01:12.014402,18.0,27.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+4186.0,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,2796.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2020-05-12 14:16:06.433286,2020-12-27 14:16:06.433286,6.0,,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2021-10-29 08:28:59.867973,2022-03-11 08:28:59.867973,3.0,26.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+1429.32,Rear end,G. 7 months,0.0,0.0,0.0,524.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,10.32,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2023-11-09 07:20:09.121824,2024-03-13 07:20:09.121824,9.0,50.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Snowy,2020-06-07 00:05:11.102220,2020-07-30 00:05:11.102220,0.0,41.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+240.0,Other,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2022-02-17 08:03:21.640328,2022-05-16 08:03:21.640328,16.0,52.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Sunny,2021-12-16 06:01:30.738147,2022-03-24 06:01:30.738147,12.0,28.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Other
+1548.48,Rear end,G. 7 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,9.72,0.0,No,Yes,Arms,No,Car,Sunny,2023-12-12 21:25:01.500300,2024-03-16 21:25:01.500300,18.0,56.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+1491.0,Rear end,I. 9 months,0.0,0.0,0.0,2560.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,345.0,No,No,Arms,Yes,Motorcycle,Sunny,2023-02-22 15:58:39.343868,2023-08-29 15:58:39.343868,12.0,67.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+1263.5,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,12.5,,No,No,Hips,Yes,Car,Sunny,,2023-01-03 21:08:01.776355,8.0,30.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Female
+1410.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,967.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,,50.0,No,Yes,,No,Motorcycle,Snowy,2023-09-09 13:22:48.993798,2023-11-21 13:22:48.993798,4.0,72.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Other
+1381.8,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,895.0,0.0,0.0,0.0,37.8,442.0,No,Yes,Multiple,No,Truck,Rainy,2023-06-07 12:21:10.334066,2024-06-03 12:21:10.334066,0.0,40.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Female
+2570.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,3500.0,0.0,0.0,0.0,0.0,187.88,0.0,0.0,520.0,104.0,0.0,0.0,544.45,0.0,Yes,Yes,Legs,No,Motorcycle,Snowy,2023-02-14 04:42:17.787557,2023-11-23 04:42:17.787557,1.0,42.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+260.0,Other side pulled out of side road,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2021-05-07 23:52:13.346669,2021-05-25 23:52:13.346669,10.0,67.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Other
+1670.0,Rear end,G. 7 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,270.0,No,No,Arms,No,Truck,Sunny,2021-04-23 02:23:27.161432,2021-10-04 02:23:27.161432,3.0,33.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+725.0,Rear end,D. 4 months,0.0,0.0,0.0,524.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,180.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-10-12 20:27:07.525505,2024-03-06 20:27:07.525505,8.0,73.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Other
+1939.75,Other side turned across Clt's path,J. 10 months,0.0,0.0,0.0,1868.0,0.0,0.0,0.0,18.7,1.05,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,730.0,No,Yes,Arms,Yes,Truck,Sunny,2023-09-25 21:54:24.412882,2024-08-04 21:54:24.412882,4.0,65.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Other
+1297.93,,H. 8 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,318.15,0.0,,840.0,0.0,0.0,0.0,200.0,27.93,No,,Legs,Yes,Motorcycle,Snowy,2023-04-07 04:22:42.512502,2023-12-16 04:22:42.512502,4.0,38.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2021-07-05 23:46:10.394078,2021-12-12 23:46:10.394078,7.0,27.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Other
+1220.0,Other side pulled out of side road,B. 2 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2022-07-25 01:07:58.895779,2023-07-09 01:07:58.895779,1.0,58.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Female
+520.0,Other side collided with Clt's parked vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Snowy,2020-05-19 07:29:04.908981,2020-07-07 07:29:04.908981,6.0,57.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2021-11-22 00:14:41.456291,2022-05-17 00:14:41.456291,16.0,36.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Male
+1775.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,477.0,No,Yes,Hips,Yes,,Rainy,2022-01-07 17:44:56.939387,2022-11-30 17:44:56.939387,10.0,52.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+1116.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,146.0,500.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2020-04-16 21:26:27.917583,2020-06-20 21:26:27.917583,14.0,76.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+3650.0,Rear end,L. 12 months,0.0,0.0,0.0,2400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,50.0,No,No,Arms,No,Car,Sunny,2021-06-20 05:15:42.668533,2022-04-05 05:15:42.668533,2.0,45.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Sunny,2021-05-15 21:07:27.209441,2021-07-04 21:07:27.209441,12.0,75.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Male
+270.0,Other,B. 2 months,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,30.0,No,No,Legs,No,Truck,Sunny,2020-01-04 12:06:46.161232,2020-01-08 12:06:46.161232,17.0,73.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+720.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,230.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,No,Truck,Sunny,2020-06-05 06:01:48.021604,2020-10-02 06:01:48.021604,19.0,58.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Other
+739.99,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,76.23,300.0,No,,Arms,No,Motorcycle,Rainy,2022-08-03 23:27:09.685937,2023-07-09 23:27:09.685937,19.0,19.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+1032.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,192.0,No,No,Legs,No,Truck,Sunny,2021-11-07 16:47:02.964592,2022-04-20 16:47:02.964592,2.0,68.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+,Rear end,A. 1 month,0.0,0.0,0.0,788.0,0.0,0.0,30.0,0.0,0.0,,0.0,260.0,0.0,,0.0,,0.0,No,Yes,Multiple,No,Car,Rainy,2023-03-26 12:00:08.641728,2023-11-04 12:00:08.641728,1.0,79.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+3516.0,Other side pulled out of side road,R. 18 months,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3005.0,0.0,0.0,0.0,0.0,511.0,No,No,Legs,Yes,Motorcycle,Sunny,2020-04-19 12:31:32.538507,2021-04-12 12:31:32.538507,4.0,47.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Female
+925.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,405.0,No,Yes,Multiple,Yes,Car,Rainy,2021-05-18 12:12:31.830366,2021-10-21 12:12:31.830366,19.0,57.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+840.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Rainy,2020-03-15 18:24:24.772954,2020-12-02 18:24:24.772954,4.0,67.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Other
+495.0,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Rainy,2021-10-23 05:17:09.085817,2022-04-14 05:17:09.085817,12.0,57.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Male
+1020.0,Rear end,E. 5 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2020-05-11 03:13:17.199439,2020-06-03 03:13:17.199439,7.0,22.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Female
+1394.21,Rear end,F. 6 months,0.0,0.0,0.0,1113.0,0.0,1060.56,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2020-09-17 19:23:45.165033,2020-11-17 19:23:45.165033,15.0,55.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+520.0,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Snowy,2022-07-27 02:11:55.823164,2023-07-18 02:11:55.823164,17.0,79.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+1125.0,Other side collided with Clt's parked vehicle,E. 5 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Hips,Yes,Car,Snowy,2020-12-11 19:07:54.574914,2021-10-28 19:07:54.574914,15.0,59.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Female
+495.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Car,Sunny,2022-07-30 07:18:08.137627,2022-12-11 07:18:08.137627,0.0,32.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+260.0,Rear end - Clt pushed into next vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Snowy,2021-01-17 00:17:51.574314,2021-02-10 00:17:51.574314,7.0,77.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Male
+240.0,Other side reversed into Clt's vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Truck,Snowy,2023-10-06 03:14:09.049809,2024-07-25 03:14:09.049809,1.0,53.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+,Rear end,F. 6 months,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2020-09-24 12:36:43.640728,2020-11-08 12:36:43.640728,4.0,20.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Female
+1135.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Legs,No,Truck,Sunny,2020-02-12 22:22:55.475095,2020-08-09 22:22:55.475095,14.0,41.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+895.0,Other,I. 9 months,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,,0.0,0.0,0.0,Yes,Yes,Hips,Yes,Motorcycle,Sunny,2023-10-19 13:40:06.001200,2024-10-09 13:40:06.001200,13.0,58.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Other
+1843.0,Other side changed lanes and collided with clt's vehicle,D. 4 months,0.0,0.0,0.0,903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,420.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2021-09-09 09:52:32.070414,2022-09-02 09:52:32.070414,2.0,65.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2023-03-18 21:45:28.625725,2023-05-20 21:45:28.625725,6.0,78.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
+734.4,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,14.4,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-02-24 17:02:36.271254,2023-03-25 17:02:36.271254,3.0,65.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+995.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,475.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2023-04-03 23:16:30.198039,2024-03-25 23:16:30.198039,10.0,64.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+950.0,Rear end,F. 6 months,0.0,0.0,0.0,2090.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2022-03-27 07:16:41.720344,2022-07-01 07:16:41.720344,11.0,73.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+1868.49,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,880.0,0.0,0.0,0.0,0.0,35.99,0.0,0.0,840.0,168.0,0.0,0.0,0.0,112.5,Yes,No,Hips,Yes,Truck,Sunny,2020-05-09 02:09:20.272054,2021-01-30 02:09:20.272054,14.0,58.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+240.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Car,Snowy,2022-05-09 19:40:44.888977,2023-02-24 19:40:44.888977,5.0,66.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2023-02-23 13:00:20.884176,2023-04-19 13:00:20.884176,0.0,70.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+495.0,Rear end,D. 4 months,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,No,No,Multiple,No,,Snowy,2020-04-26 05:44:31.014202,2020-09-26 05:44:31.014202,17.0,29.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Male
+807.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,4.35,455.0,No,No,Hips,No,Car,Sunny,2020-12-02 03:49:17.631526,2021-07-09 03:49:17.631526,13.0,72.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Male
+1675.0,Rear end,J. 10 months,0.0,0.0,450.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,285.0,No,Yes,Arms,No,Car,Rainy,2023-01-12 11:39:06.949389,2023-07-04 11:39:06.949389,6.0,25.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2022-05-24 17:09:31.074214,2022-08-28 17:09:31.074214,9.0,31.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Other
+495.0,Rear end,E. 5 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,,No,Legs,Yes,Car,,2021-10-09 04:50:04.440888,2022-02-09 04:50:04.440888,8.0,76.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Male
+1457.0,Rear end - Clt pushed into next vehicle,B. 2 months,0.0,0.0,0.0,1983.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Arms,Yes,Car,Snowy,2021-05-13 13:02:56.435287,2021-05-25 13:02:56.435287,1.0,35.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+975.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,518.0,No,Yes,Hips,Yes,Car,Sunny,2022-08-30 20:19:03.588717,2022-09-03 20:19:03.588717,7.0,61.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+2390.0,Other,J. 10 months,0.0,0.0,0.0,1757.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,80.0,No,Yes,Legs,Yes,Car,Rainy,2021-08-03 07:40:53.530706,2022-07-31 07:40:53.530706,0.0,76.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+685.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Legs,No,Car,Sunny,2023-09-06 01:16:02.832566,2024-08-17 01:16:02.832566,19.0,63.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+903.55,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,1092.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,10.8,354.35,No,Yes,Legs,No,Motorcycle,Snowy,2022-01-20 00:08:38.503700,2022-03-28 00:08:38.503700,1.0,37.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Female
+545.0,Rear end,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Arms,No,Motorcycle,Snowy,,2020-07-10 17:30:15.483096,6.0,40.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2023-07-19 06:41:50.422084,2023-09-22 06:41:50.422084,15.0,22.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Other
+1600.2,Rear end,B. 2 months,0.0,0.0,0.0,1182.2,0.0,0.0,,0.0,0.0,0.0,0.0,260.0,52.0,0.0,0.0,0.0,182.0,,Yes,Legs,,Motorcycle,Snowy,2023-02-14 04:42:17.787557,2023-05-07 04:42:17.787557,3.0,18.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+1341.0,Rear end - 3 car - Clt at front,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,197.0,0.0,0.0,0.0,396.0,Yes,Yes,Multiple,Yes,Motorcycle,Snowy,2022-11-09 12:35:34.506901,2023-02-22 12:35:34.506901,16.0,62.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Male
+1160.0,Other,A. 1 month,0.0,0.0,900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2022-07-16 20:52:11.186237,,3.0,63.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+272.12,Other side reversed into Clt's vehicle,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,12.12,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,,Snowy,2021-06-17 00:09:30.354070,2022-05-23 00:09:30.354070,,19.0,,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+1167.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,168.0,0.0,0.0,0.0,592.0,Yes,No,Arms,Yes,Motorcycle,Sunny,2023-02-20 00:53:34.722944,2023-06-05 00:53:34.722944,8.0,33.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Female
+412.5,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Arms,No,Motorcycle,Rainy,2021-04-19 00:15:33.306661,2021-12-01 00:15:33.306661,14.0,22.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Male
+4710.0,Rear end,S. 19 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4215.0,0.0,0.0,0.0,0.0,625.0,No,No,Hips,Yes,Car,Sunny,2020-12-09 11:03:23.800760,2021-01-06 11:03:23.800760,19.0,39.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Other
+1666.75,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,36.75,0.0,235.0,No,Yes,Multiple,Yes,Truck,Snowy,2023-12-07 08:14:18.411682,2023-12-23 08:14:18.411682,2.0,18.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Male
+985.0,Other,F. 6 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,45.0,525.0,No,Yes,Arms,No,,Sunny,2022-12-22 10:58:29.981996,2023-09-25 10:58:29.981996,,29.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+1220.0,Other side drove on wrong side of the road,F. 6 months,0.0,0.0,150.0,1100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2023-11-26 05:52:52.234446,2024-10-24 05:52:52.234446,14.0,36.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Female
+895.0,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2022-07-29 10:16:26.597319,2023-05-23 10:16:26.597319,19.0,71.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+1083.0,Rear end - 3 car - Clt at front,G. 7 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,188.0,No,Yes,Legs,No,Car,Rainy,2022-08-09 19:38:26.621324,2022-10-02 19:38:26.621324,7.0,39.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+1216.0,Rear end,F. 6 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,525.0,No,Yes,Legs,Yes,Car,Sunny,2020-02-07 23:13:20.080016,2020-11-21 23:13:20.080016,11.0,72.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2022-11-06 07:29:22.192438,2023-02-28 07:29:22.192438,12.0,59.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Female
+2249.99,Rear end,I. 9 months,0.0,0.0,0.0,1780.0,0.0,437.96,0.0,0.0,199.99,0.0,0.0,895.0,0.0,0.0,0.0,0.0,473.5,No,Yes,Hips,Yes,Truck,Sunny,2021-03-13 19:05:36.307261,2021-04-20 19:05:36.307261,14.0,61.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+1804.35,Rear end,F. 6 months,0.0,0.0,0.0,2305.0,0.0,0.0,0.0,0.0,30.46,0.0,0.0,495.0,0.0,0.0,0.0,16.2,9.35,No,No,Multiple,Yes,Truck,Snowy,2022-03-25 06:12:44.792958,2022-11-10 06:12:44.792958,10.0,79.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+1038.84,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,143.84,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2023-11-25 01:50:36.847369,2024-05-09 01:50:36.847369,16.0,79.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Other
+1324.24,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,36.54,462.0,No,Yes,Arms,Yes,Car,Sunny,2022-12-18 22:51:43.820764,2023-06-18 22:51:43.820764,11.0,68.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Male
+1626.69,Rear end,F. 6 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.69,0.0,No,Yes,Arms,Yes,Truck,Rainy,2021-05-13 13:02:56.435287,2021-12-04 13:02:56.435287,19.0,65.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+1260.0,Rear end,,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Sunny,2021-05-31 15:37:54.934987,2022-01-31 15:37:54.934987,,34.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Other
+935.3,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,18.3,0.0,375.0,No,Yes,Multiple,Yes,Truck,Sunny,2021-01-19 22:23:30.042008,2022-01-13 22:23:30.042008,15.0,30.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+1544.4,Other,B. 2 months,0.0,0.0,0.0,1640.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,2177.7,0.0,0.0,0.0,No,Yes,Multiple,,Car,Sunny,,2023-08-12 20:46:08.233646,2.0,,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Snowy,2022-03-20 21:04:17.091418,2023-01-23 21:04:17.091418,8.0,45.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Other
+830.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,406.0,No,,Legs,No,Truck,Sunny,2022-05-23 06:06:41.840368,2022-09-21 06:06:41.840368,6.0,76.0,4.0,Hit a deer on the highway.,,No,No,Male
+895.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,Yes,Car,Snowy,2022-06-08 00:37:09.565913,2023-02-22 00:37:09.565913,18.0,20.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Male
+1529.0,Other,J. 10 months,0.0,0.0,0.0,0.0,0.0,,50.0,0.0,0.0,0.0,0.0,1390.0,,,0.0,0.0,0.0,Yes,Yes,Legs,Yes,,Sunny,2020-04-19 12:31:32.538507,2020-11-15 12:31:32.538507,4.0,22.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+980.0,Other,F. 6 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Hips,,Truck,Snowy,2022-06-05 16:32:38.791758,2023-04-11 16:32:38.791758,18.0,53.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+490.0,Other side pulled on to roundabout,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,350.0,No,No,Legs,Yes,Motorcycle,Sunny,2020-07-11 18:12:18.867773,2021-05-03 18:12:18.867773,9.0,77.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Male
+1491.0,Rear end,I. 9 months,0.0,0.0,0.0,483.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,113.0,0.0,0.0,0.0,0.0,Yes,Yes,Hips,Yes,Truck,Sunny,2021-02-13 18:11:27.017403,2021-08-26 18:11:27.017403,19.0,32.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+753.4,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,20.4,0.0,238.0,No,No,Multiple,No,Truck,Rainy,2020-08-04 02:57:26.609321,2020-10-11 02:57:26.609321,11.0,34.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Male
+2195.0,Rear end - 3 car - Clt at front,G. 7 months,0.0,0.0,0.0,2030.0,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Rainy,2020-03-29 11:50:55.571114,2020-07-21 11:50:55.571114,7.0,61.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+272.9,Other side reversed into clt's stationary vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,15.6,0.0,No,Yes,Hips,Yes,Car,Sunny,2020-11-12 21:12:03.744748,2021-06-20 21:12:03.744748,2.0,72.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+1143.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,248.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2023-11-26 12:53:26.081216,2024-07-03 12:53:26.081216,18.0,63.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2022-07-17 10:53:18.879775,2023-02-20 10:53:18.879775,10.0,46.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+804.8,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,19.8,0.0,265.0,No,Yes,Arms,Yes,Car,Sunny,2020-12-19 09:22:34.590918,2021-08-13 09:22:34.590918,7.0,21.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+1749.0,Rear end,E. 5 months,0.0,0.0,0.0,920.0,0.0,0.0,230.0,0.0,304.0,0.0,0.0,520.0,0.0,0.0,0.0,54.36,443.05,No,Yes,Legs,No,Motorcycle,Rainy,2022-06-05 02:31:31.098219,2023-03-30 02:31:31.098219,12.0,49.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+1195.0,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,0.0,0.0,0.0,173.0,0.0,0.0,0.0,0.0,340.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Legs,Yes,Truck,Snowy,2020-03-07 14:08:37.063412,2020-06-09 14:08:37.063412,9.0,66.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+1730.29,Rear end,E. 5 months,0.0,0.0,,1028.0,0.0,0.0,0.0,0.0,456.44,0.0,0.0,520.0,0.0,0.0,,4.5,9.35,No,Yes,Legs,No,Motorcycle,,2022-06-29 22:19:28.073614,2023-03-09 22:19:28.073614,17.0,60.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+1175.6,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,298.64,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,36.96,455.0,No,Yes,Multiple,Yes,Car,Rainy,,2022-06-17 11:25:51.910382,11.0,55.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Other
+1470.0,Other side turned across Clt's path,I. 9 months,0.0,0.0,0.0,1112.05,0.0,0.0,0.0,0.0,0.0,,,895.0,0.0,0.0,0.0,0.0,105.0,No,,Legs,Yes,Motorcycle,Sunny,2020-03-18 23:30:37.087417,2020-10-19 23:30:37.087417,6.0,,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+1260.0,Other side pulled on to roundabout,B. 2 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2022-03-21 04:04:50.938187,2022-12-04 04:04:50.938187,10.0,30.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+931.12,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.12,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2022-04-12 01:47:09.445889,2023-03-25 01:47:09.445889,9.0,37.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+1134.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,294.0,No,No,Hips,Yes,Car,Sunny,2023-06-24 03:53:19.599919,2024-02-19 03:53:19.599919,2.0,64.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+1030.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,135.0,No,Yes,Hips,No,Car,Sunny,2023-12-21 01:40:49.209841,2024-10-31 01:40:49.209841,6.0,35.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Male
+940.0,Other side pulled out of side road,D. 4 months,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,170.0,No,Yes,Multiple,No,Motorcycle,Snowy,2021-09-15 06:03:49.005801,2022-04-17 06:03:49.005801,3.0,66.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+520.0,,E. 5 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,,Truck,Snowy,2022-10-07 05:31:15.975195,2023-01-13 05:31:15.975195,,68.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+1781.46,Rear end,F. 6 months,,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,31.46,230.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2021-10-24 16:19:58.319663,2021-11-09 16:19:58.319663,7.0,59.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+852.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,900.0,0.0,0.0,0.0,10.0,28.0,0.0,0.0,0.0,520.0,0.0,0.0,18.0,0.0,350.0,No,Yes,Legs,Yes,Truck,Snowy,2020-10-15 20:17:54.454890,2021-03-18 20:17:54.454890,5.0,54.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Female
+2196.4,,F. 6 months,0.0,0.0,350.0,1096.0,,0.0,120.0,0.0,48.6,0.0,0.0,520.0,,0.0,0.0,61.8,0.0,No,Yes,Multiple,No,Truck,Rainy,2023-08-04 22:13:59.687937,2023-08-20 22:13:59.687937,12.0,29.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Male
+880.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,60.0,406.0,No,No,Legs,No,Motorcycle,Rainy,2020-09-30 15:48:34.422884,2021-04-16 15:48:34.422884,11.0,42.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2020-05-08 05:07:38.731746,2020-08-24 05:07:38.731746,2.0,47.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Sunny,2021-11-19 16:10:10.682136,2021-12-12 16:10:10.682136,5.0,32.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Other
+260.0,Other,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2021-08-09 03:52:10.466093,2021-09-20 03:52:10.466093,18.0,72.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,1950.0,0.0,,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,235.0,No,Yes,Hips,No,Truck,Snowy,2022-09-03 22:26:57.443488,2022-10-10 22:26:57.443488,10.0,53.0,4.0,Swerved to avoid another vehicle.,,Yes,No,Female
+520.0,Other side collided with Clt's parked vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Rainy,2023-04-21 04:49:47.157431,2024-03-14 04:49:47.157431,3.0,25.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+840.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Sunny,2023-11-07 13:16:46.041208,2024-04-20 13:16:46.041208,14.0,45.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2022-12-29 04:11:28.457691,2023-04-24 04:11:28.457691,1.0,69.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+545.2,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,417.27,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.5,21.2,No,Yes,Multiple,Yes,Car,Sunny,2020-05-31 06:52:12.626525,2020-10-28 06:52:12.626525,14.0,39.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Other
+808.4,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,41.4,455.0,No,Yes,Hips,Yes,Car,Rainy,2020-03-19 06:31:10.934186,2020-03-25 06:31:10.934186,16.0,77.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+906.75,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,2.4,9.35,No,Yes,Multiple,No,Truck,Sunny,2023-10-14 07:29:56.759351,2023-11-15 07:29:56.759351,1.0,66.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+1195.0,Rear end,G. 7 months,0.0,0.0,0.0,1444.4,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2023-05-07 06:20:48.729745,2023-09-29 06:20:48.729745,6.0,79.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Male
+1820.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2021-02-09 09:02:59.315863,,15.0,,3.0,,Concussion and bruised ribs.,Yes,Yes,Male
+1750.0,Rear end,G. 7 months,0.0,0.0,0.0,1112.0,0.0,0.0,,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,,No,No,Arms,No,Truck,Snowy,2021-05-09 17:55:36.427285,2022-02-26 17:55:36.427285,,33.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,447.52,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2022-08-13 21:46:20.476095,2023-02-06 21:46:20.476095,15.0,75.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Snowy,2021-02-09 16:03:33.162632,2021-08-05 16:03:33.162632,18.0,22.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+1275.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,480.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Arms,No,Motorcycle,Snowy,,2023-04-04 19:20:17.763552,1.0,63.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2022-06-03 15:28:41.864372,2022-08-19 15:28:41.864372,14.0,51.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2021-11-12 22:57:12.206441,2022-02-06 22:57:12.206441,3.0,66.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Female
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2022-12-09 00:32:33.030606,,1.0,78.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Other
+1217.79,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.99,0.0,0.0,520.0,0.0,0.0,52.8,0.0,630.0,No,Yes,Multiple,Yes,Car,Sunny,2023-08-29 11:01:22.816563,2023-09-05 11:01:22.816563,9.0,55.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Female
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,1200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Sunny,2020-05-26 00:42:03.384676,2020-08-19 00:42:03.384676,4.0,28.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2021-04-30 02:36:59.483896,2022-01-17 02:36:59.483896,17.0,19.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+962.62,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,113.82,0.0,28.8,406.0,No,Yes,Hips,No,Car,Rainy,2021-09-05 00:44:04.368873,2022-05-22 00:44:04.368873,3.0,42.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Snowy,2020-01-30 18:57:32.370474,2020-03-17 18:57:32.370474,0.0,42.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+460.0,Rear end - 3 car - Clt at front,A. 1 month,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2022-03-12 23:49:03.228645,2023-02-16 23:49:03.228645,17.0,18.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Male
+935.3,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,18.3,0.0,375.0,No,Yes,Arms,Yes,Truck,Sunny,2022-08-14 18:48:02.016403,2022-11-16 18:48:02.016403,19.0,48.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Other
+1802.0,Rear end,F. 6 months,0.0,0.0,0.0,1183.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,620.0,Yes,Yes,Arms,Yes,Car,Sunny,2022-06-20 00:00:17.283456,2023-01-30 00:00:17.283456,5.0,22.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Other
+870.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,30.0,No,No,Multiple,Yes,Truck,Snowy,2022-10-30 00:15:16.023204,2023-08-05 00:15:16.023204,19.0,57.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+865.0,Other side changed lanes on a roundabout colliding with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,,No,No,Multiple,Yes,Truck,Rainy,2021-01-22 13:28:34.662932,2021-01-25 13:28:34.662932,19.0,,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Male
+1040.0,Other,I. 9 months,0.0,0.0,0.0,1537.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Car,Snowy,2021-12-23 13:15:36.907381,2022-05-01 13:15:36.907381,13.0,68.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Female
+1070.0,Other side pulled out of side road,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,516.28,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2021-05-05 08:47:08.725745,2022-03-24 08:47:08.725745,9.0,22.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Sunny,2022-12-30 01:13:09.997999,2023-09-05 01:13:09.997999,17.0,22.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Male
+1879.25,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,17.1,0.0,1134.0,No,Yes,Arms,No,Car,Rainy,2022-01-18 06:05:15.423084,2022-09-04 06:05:15.423084,8.0,73.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Female
+940.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,630.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2023-04-30 20:08:24.100820,2024-03-22 20:08:24.100820,11.0,33.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+1054.0,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129.0,0.0,0.0,895.0,0.0,0.0,0.0,30.0,109.8,No,Yes,Multiple,No,Motorcycle,Rainy,2022-08-26 18:11:09.733946,2023-01-04 18:11:09.733946,9.0,71.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Female
+903.55,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,1092.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,10.8,354.35,No,Yes,Legs,No,Motorcycle,Rainy,2021-12-12 10:54:10.730146,2022-07-28 10:54:10.730146,18.0,35.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+1115.0,Other,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Arms,Yes,Truck,Sunny,2020-03-30 15:53:10.958191,2020-09-23 15:53:10.958191,5.0,60.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Other
+945.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,No,Truck,Snowy,2023-03-13 01:34:11.690338,2024-01-30 01:34:11.690338,13.0,34.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+1118.32,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,13.32,400.0,No,No,Multiple,No,Truck,Sunny,2020-11-14 01:14:19.131826,2021-09-21 01:14:19.131826,7.0,78.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Female
+846.5,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,236.93,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,1.5,238.0,No,No,Arms,No,Motorcycle,Snowy,2023-08-23 07:49:32.034406,2023-09-23 07:49:32.034406,13.0,52.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Male
+2108.99,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,419.0,0.0,0.0,895.0,0.0,0.0,0.0,115.0,775.0,No,Yes,Multiple,No,Truck,Sunny,2021-11-30 04:30:29.165833,2022-02-04 04:30:29.165833,10.0,35.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+1385.0,Rear end,G. 7 months,0.0,0.0,0.0,903.0,0.0,0.0,180.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,294.0,,Yes,Arms,Yes,Car,Sunny,2023-03-15 09:38:42.464492,2023-10-07 09:38:42.464492,15.0,21.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Male
+1130.0,Rear end,D. 4 months,0.0,0.0,0.0,2648.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,3.0,238.0,No,Yes,Hips,No,Truck,Snowy,2020-07-13 12:15:41.948389,2020-10-22 12:15:41.948389,19.0,68.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Female
+1039.0,Other side reversed into clt's stationary vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,183.0,No,Yes,Arms,No,Truck,Snowy,2023-04-30 20:08:24.100820,2024-03-15 20:08:24.100820,5.0,48.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+1286.92,Other side collided with Clt's parked vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,16.92,455.0,No,Yes,Arms,No,Motorcycle,Sunny,2021-10-14 11:00:13.682736,2021-11-14 11:00:13.682736,14.0,48.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Male
+520.0,,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,242.0,0.0,0.0,,No,Yes,Arms,No,Truck,Snowy,,,14.0,26.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+943.9,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,5.88,576.78,No,Yes,Multiple,Yes,Car,Sunny,2021-04-19 00:15:33.306661,2021-06-24 00:15:33.306661,13.0,48.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+2486.79,Rear end,F. 6 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,14.79,182.0,No,Yes,Multiple,No,Motorcycle,Snowy,2021-02-05 06:55:05.461092,2021-12-05 06:55:05.461092,11.0,22.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Male
+945.0,Other,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,Yes,Car,Sunny,2022-08-25 00:07:46.653330,2023-04-17 00:07:46.653330,1.0,53.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+,Other side drove on wrong side of the road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,,,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2020-02-21 09:39:17.031406,2020-11-25 09:39:17.031406,7.0,33.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Female
+1125.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,290.0,No,No,,,Motorcycle,Sunny,2021-01-30 03:43:14.678935,2021-08-20 03:43:14.678935,,59.0,1.0,,Fractured arm and leg.,Yes,Yes,Male
+570.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,75.0,No,No,Legs,Yes,Truck,Rainy,2022-05-05 03:31:43.340668,2023-04-20 03:31:43.340668,13.0,58.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+1375.0,Rear end,F. 6 months,0.0,0.0,0.0,1972.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Snowy,2020-07-01 12:52:34.230846,2021-02-11 12:52:34.230846,4.0,33.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+1700.0,Rear end,G. 7 months,0.0,0.0,200.0,1035.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2022-02-14 02:57:09.325865,2022-05-08 02:57:09.325865,8.0,37.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Other
+830.0,Rear end,F. 6 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Arms,Yes,Truck,Rainy,2022-11-19 17:55:19.143828,2023-01-04 17:55:19.143828,12.0,71.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+1113.7,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,18.7,0.0,0.0,0.0,495.0,0.0,0.0,0.0,100.0,0.0,No,No,Hips,No,Motorcycle,Sunny,2022-12-20 23:55:40.748149,2023-03-19 23:55:40.748149,8.0,47.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Male
+1012.5,Rear end - 3 car - Clt at front,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,117.5,No,Yes,Multiple,No,Motorcycle,Rainy,2023-06-02 06:11:01.092218,2023-12-05 06:11:01.092218,13.0,43.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+1103.7,Rear end,E. 5 months,0.0,0.0,0.0,1400.0,0.0,1043.18,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,30.45,18.7,No,No,Legs,No,Motorcycle,Sunny,2020-04-25 01:42:15.627125,2020-10-31 01:42:15.627125,4.0,66.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+1055.13,Rear end,E. 5 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,,0.0,10.81,510.32,Yes,,Arms,Yes,Motorcycle,Sunny,,2021-08-10 02:58:53.026605,1.0,48.0,,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Other
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Rainy,2023-12-22 19:44:12.290458,2024-02-06 19:44:12.290458,6.0,78.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+895.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1610.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2020-02-27 12:51:07.813562,2020-11-10 12:51:07.813562,15.0,67.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+1115.0,Other,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Legs,Yes,Truck,Snowy,2020-10-09 17:06:03.672734,2021-09-26 17:06:03.672734,10.0,32.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+1745.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,1250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Snowy,2023-02-15 08:44:33.174634,2023-04-17 08:44:33.174634,10.0,69.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+640.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,120.0,No,Yes,Arms,No,Car,Rainy,2022-07-10 10:39:46.557311,2022-10-23 10:39:46.557311,11.0,58.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+2771.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,2170.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Arms,Yes,Truck,Snowy,2023-10-23 08:47:26.009201,2024-09-24 08:47:26.009201,12.0,55.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+1307.14,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.0,0.0,0.0,895.0,0.0,,0.0,337.14,0.0,No,Yes,Hips,Yes,Car,Rainy,2022-01-01 07:32:32.310462,2022-01-15 07:32:32.310462,7.0,55.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Female
+1080.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,185.0,No,Yes,Hips,No,Motorcycle,Snowy,2021-01-07 15:59:48.477695,2021-11-04 15:59:48.477695,15.0,60.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+520.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Sunny,2023-05-02 00:10:39.487897,2023-07-18 00:10:39.487897,0.0,74.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+3740.0,Other,J. 10 months,0.0,0.0,0.0,2000.0,0.0,0.0,120.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Arms,,Motorcycle,Snowy,2023-06-15 02:35:50.350070,2024-01-31 02:35:50.350070,12.0,77.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+1051.5,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,,518.0,No,Yes,Multiple,No,Motorcycle,Sunny,2021-01-05 14:55:51.550310,2021-06-21 14:55:51.550310,10.0,37.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+520.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,,No,Yes,Multiple,Yes,Truck,Sunny,2021-02-02 08:49:26.993398,2021-04-09 08:49:26.993398,3.0,52.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+1300.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Hips,No,Truck,Snowy,2020-09-26 13:40:40.568113,2020-10-28 13:40:40.568113,3.0,40.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Female
+520.0,,F. 6 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,,2020-05-17 06:25:07.981596,2020-08-21 06:25:07.981596,14.0,61.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Female
+495.0,Rear end,,0.0,0.0,0.0,1200.0,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,,0.0,No,Yes,Legs,No,Truck,Sunny,2022-05-30 20:21:21.856371,2022-07-27 20:21:21.856371,2.0,64.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Male
+2575.0,Rear end,M. 13 months,0.0,0.0,0.0,959.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2021-08-22 21:18:41.264252,2021-12-04 21:18:41.264252,18.0,56.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+340.0,Rear end,A. 1 month,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,,0.0,182.0,No,No,Multiple,Yes,Truck,Snowy,2023-06-04 21:16:05.713142,2024-04-11 21:16:05.713142,1.0,42.0,,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Female
+758.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Legs,Yes,Truck,Rainy,2021-08-22 00:16:59.723944,2022-01-03 00:16:59.723944,5.0,71.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Male
+1039.0,Other side reversed into clt's stationary vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,183.0,No,Yes,Hips,Yes,Car,Rainy,2022-05-12 17:46:23.356671,2022-12-15 17:46:23.356671,7.0,67.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Snowy,2020-12-01 06:47:36.091218,2021-02-06 06:47:36.091218,16.0,39.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+642.75,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,51.0,163.0,No,,Multiple,Yes,Motorcycle,Rainy,2022-06-20 07:00:51.130226,2022-12-15 07:00:51.130226,4.0,64.0,3.0,Lost control on a snowy road.,,No,No,Female
+1134.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,294.0,No,No,Hips,No,Car,Snowy,2020-10-07 02:00:59.051810,2021-06-11 02:00:59.051810,1.0,25.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+715.0,Other side pulled out of side road,,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,,0.0,0.0,195.0,No,Yes,Multiple,No,Motorcycle,Snowy,2020-07-02 16:54:49.617923,2021-04-22 16:54:49.617923,11.0,71.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2020-08-14 01:16:37.399479,2021-04-06 01:16:37.399479,4.0,26.0,1.0,Lost control on a snowy road.,,Yes,Yes,Female
+1665.0,Other,E. 5 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,162.0,70.0,No,Yes,Legs,No,Motorcycle,Sunny,2020-04-14 20:22:30.990198,2020-08-23 20:22:30.990198,9.0,32.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Male
+570.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,10.0,400.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2020-05-30 23:51:38.779755,2020-09-19 23:51:38.779755,8.0,65.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Other
+847.5,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,574.0,No,Yes,Arms,Yes,Truck,Sunny,2021-01-27 05:37:36.211242,2021-03-22 05:37:36.211242,19.0,37.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Female
+1286.92,Other side collided with Clt's parked vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,0.0,,0.0,16.92,455.0,No,Yes,Arms,,Motorcycle,Snowy,2021-07-29 01:30:44.288857,2022-05-15 01:30:44.288857,7.0,52.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+495.0,Rear end - 3 car - Clt at front,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Sunny,2022-07-31 11:20:23.524704,2023-03-27 11:20:23.524704,0.0,76.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+2486.79,Rear end,F. 6 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,14.79,182.0,No,Yes,Legs,No,Car,Sunny,2022-04-26 16:15:21.784356,2022-12-22 16:15:21.784356,5.0,54.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2020-09-29 18:46:52.882576,2021-07-21 18:46:52.882576,10.0,20.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+790.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Arms,No,Motorcycle,Snowy,2021-08-03 00:40:19.683936,2021-11-23 00:40:19.683936,2.0,76.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+520.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Snowy,2023-12-30 02:58:18.459691,2024-03-27 02:58:18.459691,14.0,77.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+660.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,140.0,No,Yes,Multiple,Yes,Car,Snowy,2020-04-19 19:32:06.385277,2020-12-03 19:32:06.385277,10.0,51.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+1270.0,Other side pulled from parked position into the path of clt's vehicle,G. 7 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,100.2,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2022-11-05 17:28:14.498899,2023-09-05 17:28:14.498899,4.0,51.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+790.7,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.0,0.0,0.0,520.0,0.0,0.0,0.0,59.4,235.0,No,Yes,Multiple,Yes,Car,Rainy,2021-06-02 02:40:44.168833,2022-04-03 02:40:44.168833,15.0,53.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Male
+880.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,60.0,406.0,No,No,Multiple,No,Truck,Sunny,2021-03-15 13:08:59.387877,2021-12-30 13:08:59.387877,6.0,52.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+,,A. 1 month,0.0,,0.0,450.0,,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Sunny,2022-02-14 02:57:09.325865,2022-09-10 02:57:09.325865,5.0,26.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Snowy,2020-10-21 23:29:45.237047,2021-10-12 23:29:45.237047,8.0,47.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+2350.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,1771.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,19.67,290.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2022-10-12 11:41:25.217043,2023-07-13 11:41:25.217043,6.0,72.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,No,Truck,Sunny,2020-12-25 05:33:51.526305,2021-03-05 05:33:51.526305,2.0,71.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Other
+885.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,25.2,406.0,No,Yes,Multiple,No,Car,Sunny,2020-12-09 18:03:57.647529,2021-07-17 18:03:57.647529,10.0,43.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+3590.0,Other side pulled on to roundabout,L. 12 months,0.0,0.0,0.0,2200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2023-01-31 11:15:46.989397,2023-09-19 11:15:46.989397,11.0,29.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+821.64,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,26.64,275.0,No,Yes,Legs,No,Truck,Rainy,2021-09-03 20:41:48.981796,2022-06-20 20:41:48.981796,10.0,41.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+1070.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Multiple,Yes,Truck,Snowy,2021-05-03 07:43:11.798359,2022-03-06 07:43:11.798359,1.0,58.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Rainy,2021-07-17 02:07:36.571314,2022-07-13 02:07:36.571314,0.0,36.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+1157.2,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,7.2,350.0,No,Yes,Hips,Yes,Car,Rainy,2023-01-26 05:05:37.747549,2024-01-10 05:05:37.747549,1.0,61.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Female
+1320.0,Rear end,D. 4 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Snowy,2022-07-17 03:52:45.033006,2023-03-29 03:52:45.033006,13.0,33.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+1535.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,640.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Multiple,Yes,Car,Rainy,2023-05-31 12:07:38.011602,2023-10-20 12:07:38.011602,12.0,43.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+820.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,400.0,No,No,Hips,Yes,Car,Sunny,2022-01-15 15:00:10.802160,2022-03-25 15:00:10.802160,4.0,40.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Rainy,2021-12-15 01:59:15.351070,2022-03-14 01:59:15.351070,1.0,74.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Other
+1021.0,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Multiple,Yes,Truck,Snowy,2023-07-05 20:15:53.470694,2024-06-28 20:15:53.470694,18.0,50.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+890.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Hips,No,Truck,Sunny,2020-06-09 22:10:49.569913,2020-10-23 22:10:49.569913,16.0,59.0,,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Female
+1207.0,,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,0.0,0.0,0.0,4.35,455.0,,,Legs,Yes,Car,Rainy,2022-04-26 02:14:14.090818,2022-09-16 02:14:14.090818,10.0,74.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+758.0,Other side pulled out of side road,D. 4 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,238.0,No,Yes,Arms,No,Motorcycle,Sunny,2020-10-30 10:46:06.793358,2021-10-04 10:46:06.793358,15.0,47.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+906.75,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,2.4,9.35,No,Yes,Legs,Yes,Truck,Sunny,2020-09-15 04:18:40.544108,2021-03-21 04:18:40.544108,19.0,40.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Female
+720.0,Rear end,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Legs,No,,,2022-06-10 01:41:06.493298,2022-06-21 01:41:06.493298,17.0,27.0,2.0,Lost control on a snowy road.,,Yes,Yes,Female
+545.2,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,417.27,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.5,21.2,No,Yes,Hips,No,Car,Rainy,2023-05-20 02:45:37.987597,2023-10-15 02:45:37.987597,19.0,79.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Other
+1080.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,185.0,No,Yes,Multiple,Yes,Car,Snowy,2023-11-22 03:44:58.379675,2024-09-09 03:44:58.379675,7.0,53.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+2290.0,Other side drove on wrong side of the road,L. 12 months,0.0,0.0,0.0,1103.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,798.0,No,No,Hips,Yes,Motorcycle,Snowy,2022-11-16 12:49:06.829365,2023-10-20 12:49:06.829365,1.0,78.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+1796.0,Other,G. 7 months,0.0,0.0,0.0,1771.0,0.0,0.0,0.0,0.0,200.0,0.0,0.0,840.0,0.0,0.0,0.0,56.0,0.0,No,No,Hips,Yes,Car,Sunny,2022-01-16 05:01:18.495699,2022-02-23 05:01:18.495699,16.0,48.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+1217.79,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,14.99,0.0,0.0,520.0,0.0,0.0,52.8,0.0,630.0,No,Yes,Hips,Yes,Truck,,2020-11-14 01:14:19.131826,2021-10-25 01:14:19.131826,10.0,60.0,,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+2170.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,1880.0,0.0,0.0,0.0,0.0,863.32,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2023-08-29 04:00:48.969793,2024-03-24 04:00:48.969793,13.0,77.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+1473.6,Rear end,E. 5 months,,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,227.6,126.0,No,Yes,Arms,Yes,Truck,Sunny,2023-12-19 00:36:52.282456,2024-07-16 00:36:52.282456,15.0,39.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2020-05-13 18:18:21.820364,2020-05-14 18:18:21.820364,14.0,60.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Male
+2685.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,1972.25,0.0,0.0,0.0,0.0,584.99,0.0,0.0,520.0,0.0,0.0,0.0,0.0,765.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2023-10-10 19:23:10.598119,2024-10-04 19:23:10.598119,14.0,60.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+355.0,Rear end,A. 1 month,0.0,0.0,0.0,788.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,,2023-05-27 09:59:44.156831,2023-07-31 09:59:44.156831,2.0,71.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,,0.0,0.0,0.0,No,No,Multiple,No,Car,Rainy,2021-08-09 03:52:10.466093,2021-08-10 03:52:10.466093,6.0,55.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Male
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,447.52,0.0,No,Yes,Legs,No,Car,Sunny,2021-07-14 18:03:05.797159,2022-03-14 18:03:05.797159,11.0,64.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+2195.0,Rear end,E. 5 months,0.0,0.0,0.0,1700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Sunny,2023-08-15 03:33:44.324864,2024-06-26 03:33:44.324864,2.0,19.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+2295.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2840.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,,Sunny,2020-10-19 22:25:48.309661,2020-11-13 22:25:48.309661,18.0,70.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Female
+910.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,390.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Snowy,2022-06-19 09:59:09.589917,2023-06-01 09:59:09.589917,9.0,40.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Female
+1100.03,Rear end,,0.0,0.0,,,0.0,0.0,210.0,0.0,214.0,0.0,0.0,520.0,0.0,0.0,0.0,118.04,406.99,No,Yes,Legs,No,Car,Snowy,2021-09-09 09:52:32.070414,,7.0,71.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Other
+1020.0,Rear end,E. 5 months,0.0,0.0,0.0,1103.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2022-01-26 03:20:29.285857,2023-01-09 03:20:29.285857,15.0,52.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Female
+681.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,,,290.0,No,Yes,Multiple,Yes,Car,Snowy,2021-09-17 21:08:53.626725,2022-05-16 21:08:53.626725,15.0,76.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Female
+685.0,Rear end,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,188.0,No,Yes,Multiple,No,Car,Snowy,2023-06-12 18:31:19.575915,2023-07-14 18:31:19.575915,,77.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Other
+267.0,Rear end - 3 car - Clt at front,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,27.0,0.0,No,No,Multiple,Yes,Car,,2021-10-16 12:04:10.610122,2021-11-18 12:04:10.610122,4.0,54.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+520.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Snowy,2023-12-25 10:49:16.911382,2024-07-12 10:49:16.911382,19.0,78.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+3224.0,Other,F. 6 months,1152.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,239.4,0.0,Yes,Yes,Arms,Yes,Car,Sunny,2021-09-01 05:36:44.360872,2022-04-23 05:36:44.360872,5.0,49.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+623.08,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,103.08,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2020-09-30 22:49:08.269653,2020-10-26 22:49:08.269653,5.0,73.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+805.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.0,0.0,0.0,520.0,0.0,0.0,0.0,12.6,375.0,No,Yes,Legs,Yes,Car,Sunny,2023-06-10 03:26:14.954990,2023-07-22 03:26:14.954990,7.0,60.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Other
+1072.8,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,79.2,686.0,No,No,Multiple,No,Truck,Snowy,2023-03-05 11:19:31.674334,2023-05-05 11:19:31.674334,,70.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+258.7,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,18.7,No,No,Legs,Yes,Motorcycle,Snowy,2023-03-13 22:35:53.230646,2023-04-23 22:35:53.230646,11.0,29.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Other
+495.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Sunny,2023-09-20 01:43:07.477495,2024-01-28 01:43:07.477495,13.0,75.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Other
+1110.0,Other side changed lanes and collided with clt's vehicle,B. 2 months,0.0,0.0,750.0,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2022-09-22 08:02:29.789958,2023-09-12 08:02:29.789958,1.0,52.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+1240.0,Rear end,A. 1 month,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Sunny,2020-08-12 21:14:22.012402,2021-08-01 21:14:22.012402,18.0,58.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+723.0,Other side reversed into Clt's vehicle,B. 2 months,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,No,Yes,Arms,No,Motorcycle,Sunny,2020-03-13 10:19:53.998799,2020-09-27 10:19:53.998799,5.0,76.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+240.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Rainy,2020-04-18 15:29:50.998199,2021-01-30 15:29:50.998199,17.0,20.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2022-05-04 13:30:35.647129,2022-10-02 13:30:35.647129,3.0,51.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+2033.0,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,740.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Hips,Yes,Car,Snowy,2023-01-31 11:15:46.989397,2023-08-23 11:15:46.989397,4.0,55.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Other
+1720.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,500.0,700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2023-12-10 20:21:04.572914,2024-06-09 20:21:04.572914,5.0,41.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+537.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,4.5,50.0,No,Yes,Hips,No,Truck,Rainy,2020-07-23 17:35:26.585317,2021-02-15 17:35:26.585317,14.0,55.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Male
+2332.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1437.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2021-09-30 03:32:35.191038,2022-02-24 03:32:35.191038,5.0,34.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+983.91,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.2,0.0,520.0,0.0,0.0,0.0,220.21,400.0,No,Yes,Hips,Yes,Truck,Snowy,2020-10-01 19:50:49.809961,,7.0,57.0,,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Other
+789.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,294.0,No,No,Legs,Yes,,Rainy,,2023-04-06 02:47:56.255251,8.0,18.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Other
+260.0,Other side turned across Clt's path,B. 2 months,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-08-19 14:27:20.488097,2021-05-04 14:27:20.488097,5.0,74.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+708.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,235.0,No,Yes,Hips,No,Car,Rainy,2020-07-16 17:21:54.262852,2020-12-02 17:21:54.262852,1.0,25.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+745.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,294.0,No,No,Multiple,No,Truck,Rainy,2021-03-31 21:40:34.806961,2021-09-19 21:40:34.806961,15.0,71.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+725.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,374.35,No,Yes,Arms,No,Truck,Sunny,2023-03-29 17:06:20.956191,2023-07-08 17:06:20.956191,19.0,32.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+1695.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2020-05-12 00:14:58.739747,2020-11-15 00:14:58.739747,0.0,67.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Male
+895.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Snowy,2021-12-21 05:11:06.133226,2022-11-01 05:11:06.133226,15.0,62.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+520.0,Rear end,F. 6 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2022-12-03 18:22:23.788757,2023-09-23 18:22:23.788757,0.0,42.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+1045.0,Other side changed lanes on a roundabout colliding with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,895.0,0.0,0.0,,0.0,235.0,No,Yes,Hips,Yes,Car,Sunny,2023-04-25 20:58:48.705741,2024-04-22 20:58:48.705741,0.0,25.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Other
+1260.0,Other side pulled on to roundabout,B. 2 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2023-01-01 09:17:40.772154,2023-01-22 09:17:40.772154,6.0,78.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+1834.2,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,109.2,0.0,605.0,No,Yes,Multiple,No,Truck,Rainy,2020-03-02 00:57:53.974794,2020-12-25 00:57:53.974794,15.0,69.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,No,Motorcycle,Sunny,2023-12-26 07:50:58.451690,2024-01-05 07:50:58.451690,16.0,49.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Snowy,2021-07-16 12:06:28.877775,2022-01-19 12:06:28.877775,15.0,67.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Other
+449.25,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,189.25,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2023-12-15 05:29:32.274454,2024-04-26 05:29:32.274454,15.0,30.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+4294.64,Rear end,G. 7 months,0.0,0.0,0.0,3220.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,185.64,0.0,714.0,No,Yes,Legs,Yes,Truck,Sunny,2023-03-04 07:17:16.287257,2023-04-06 07:17:16.287257,5.0,63.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+836.85,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,959.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,56.85,No,Yes,Multiple,Yes,Motorcycle,Sunny,2021-07-02 04:38:50.386077,2021-09-09 04:38:50.386077,17.0,32.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+767.5,Other side changed lanes and collided with clt's vehicle,D. 4 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,3.0,0.0,270.0,No,No,Legs,Yes,Truck,Sunny,2020-07-01 19:53:08.077615,2020-09-19 19:53:08.077615,2.0,23.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Truck,Rainy,2022-03-07 03:37:46.293258,2022-09-14 03:37:46.293258,7.0,50.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Male
+455.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,195.0,No,Yes,Arms,No,Car,Rainy,2021-03-01 19:42:28.589717,2021-06-10 19:42:28.589717,3.0,24.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,675.0,No,No,Multiple,No,Car,Snowy,2022-04-04 18:33:03.276655,2023-01-14 18:33:03.276655,,50.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+959.8,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,64.8,0.0,No,Yes,Arms,No,Car,Rainy,2020-12-31 01:45:08.461692,2021-08-09 01:45:08.461692,16.0,64.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Other
+495.0,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Rainy,2023-10-21 14:44:02.928585,2023-12-13 14:44:02.928585,4.0,46.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+2020.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-06-28 06:01:13.454690,2023-12-05 06:01:13.454690,13.0,55.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+1800.0,Rear end,F. 6 months,0.0,0.0,0.0,2200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,No,Truck,Rainy,2021-09-23 17:20:10.562112,2021-11-04 17:20:10.562112,14.0,54.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Female
+1340.0,Rear end,F. 6 months,0.0,0.0,0.0,551.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,518.0,Yes,Yes,Legs,No,Car,Snowy,2021-04-19 00:15:33.306661,2021-06-05 00:15:33.306661,11.0,61.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Female
+845.0,Rear end,D. 4 months,0.0,0.0,0.0,445.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Sunny,2021-06-25 04:25:18.063612,2021-12-01 04:25:18.063612,12.0,49.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Female
+1020.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,1558.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2020-08-07 22:04:46.617323,2021-02-07 22:04:46.617323,17.0,75.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2021-06-29 13:33:45.765153,2022-03-02 13:33:45.765153,13.0,79.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2020-02-22 20:42:06.265253,2020-03-04 20:42:06.265253,18.0,20.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Male
+3584.26,Other,H. 8 months,0.0,0.0,0.0,2510.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,4.26,412.0,No,Yes,Hips,No,Car,Sunny,2021-03-17 21:13:30.162032,2021-08-18 21:13:30.162032,6.0,71.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+3080.0,Rear end,I. 9 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,196.8,280.0,No,Yes,Legs,No,Motorcycle,Sunny,2020-09-20 10:28:49.785957,,5.0,37.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Other
+1740.0,Other,J. 10 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Snowy,2022-09-03 15:26:23.596719,2023-02-05 15:26:23.596719,4.0,31.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Other
+1924.2,Rear end,F. 6 months,0.0,0.0,,480.0,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,25.0,789.2,No,Yes,Arms,No,Car,Sunny,2022-10-05 11:27:52.894578,2023-09-09 11:27:52.894578,3.0,,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Female
+1854.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2022-11-19 10:54:45.297059,2023-08-29 10:54:45.297059,17.0,55.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+1340.29,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,0.0,0.0,0.0,73.8,534.48,No,Yes,Legs,No,Car,Snowy,,2022-07-22 12:01:52.342468,,21.0,,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Female
+1421.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,,747.0,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,,Yes,Yes,Legs,Yes,Motorcycle,Rainy,2021-09-16 17:06:38.239647,2021-11-17 17:06:38.239647,15.0,32.0,,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Male
+520.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2023-05-24 11:54:05.689137,2023-10-19 11:54:05.689137,19.0,34.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+640.0,Other side pulled out of side road,C. 3 months,0.0,0.0,0.0,1647.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Sunny,2021-09-24 00:20:44.408881,2022-02-15 00:20:44.408881,13.0,54.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+847.5,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Legs,Yes,Car,Sunny,2022-02-01 20:33:27.761552,2022-05-15 20:33:27.761552,4.0,41.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Female
+317.5,Other side reversed into Clt's vehicle,A. 1 month,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,33.0,50.0,No,Yes,Hips,Yes,Truck,Rainy,2021-08-13 06:00:04.320864,2022-06-09 06:00:04.320864,10.0,55.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+1157.2,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,7.2,350.0,No,Yes,Legs,Yes,Car,Snowy,2022-04-03 21:31:21.736347,2022-07-05 21:31:21.736347,11.0,59.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+564.9,Other side reversed into Clt's vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,44.9,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2021-10-28 04:26:44.480896,2022-08-10 04:26:44.480896,17.0,58.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+895.0,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,,2021-07-31 12:45:39.427885,3.0,53.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Other
+892.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,42.0,406.0,No,Yes,Multiple,No,Truck,Snowy,2021-07-29 22:32:25.829165,2021-08-27 22:32:25.829165,12.0,75.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Male
+899.5,Other side reversed into clt's stationary vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,4.5,0.0,No,Yes,Legs,No,Car,Rainy,2023-03-10 03:28:33.222644,2023-04-09 03:28:33.222644,19.0,58.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2021-10-17 09:05:52.150430,2022-10-12 09:05:52.150430,12.0,25.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Female
+520.0,Other side collided with Clt's parked vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2021-12-14 04:57:33.810762,2022-09-28 04:57:33.810762,3.0,20.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+1570.0,Other,E. 5 months,1008.0,0.0,0.0,1444.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,0.0,Yes,Yes,Legs,Yes,Truck,Sunny,2020-07-27 05:42:12.746549,2020-12-12 05:42:12.746549,6.0,47.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Male
+1020.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Legs,No,Motorcycle,Rainy,2022-11-01 08:19:46.797359,2022-12-22 08:19:46.797359,1.0,39.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+1165.0,Rear end,F. 6 months,0.0,0.0,0.0,1033.45,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,0.0,,No,Yes,Multiple,Yes,Car,,2020-03-05 20:05:13.982796,2020-12-22 20:05:13.982796,17.0,69.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+240.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,,No,No,Arms,Yes,Car,Rainy,2020-09-09 01:06:49.761952,2021-05-01 01:06:49.761952,5.0,50.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2023-09-12 18:29:01.308261,2023-11-06 18:29:01.308261,15.0,42.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+1310.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,550.0,0.0,0.0,120.0,0.0,,0.0,0.0,0.0,840.0,0.0,0.0,,0.0,406.0,,,Multiple,Yes,Motorcycle,Snowy,2021-02-20 04:23:51.646329,2021-12-09 04:23:51.646329,2.0,69.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+975.77,Rear end,,0.0,0.0,,0.0,0.0,500.0,0.0,,,0.0,0.0,840.0,0.0,,0.0,0.0,50.0,No,No,Arms,Yes,Car,Snowy,2021-11-03 21:39:42.956591,2022-07-01 21:39:42.956591,14.0,76.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Snowy,2020-07-09 17:08:21.940388,2021-05-17 17:08:21.940388,19.0,47.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Other
+680.0,,F. 6 months,0.0,0.0,0.0,1880.0,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,No,Car,Rainy,2020-12-04 11:53:48.405681,2021-01-09 11:53:48.405681,9.0,54.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+753.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,109.2,238.0,No,Yes,Legs,No,Truck,Snowy,2021-06-21 23:19:05.749149,2021-09-18 23:19:05.749149,8.0,20.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Female
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Snowy,2020-05-09 09:09:54.118823,2020-12-07 09:09:54.118823,10.0,21.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Female
+800.4,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,5.4,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2021-12-20 22:10:32.286457,2022-11-03 22:10:32.286457,13.0,46.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Male
+565.0,Other side turned across Clt's path,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,45.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2023-09-25 14:53:50.566113,2024-05-27 14:53:50.566113,11.0,74.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+3130.0,Other side drove on wrong side of the road,J. 10 months,0.0,0.0,0.0,1700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,125.0,No,No,Hips,Yes,Truck,Rainy,2023-07-19 13:42:24.268853,2023-10-14 13:42:24.268853,6.0,49.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+2145.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2022-04-14 09:51:40.220044,2022-12-10 09:51:40.220044,10.0,40.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+1217.79,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.99,0.0,0.0,520.0,0.0,0.0,52.8,0.0,630.0,No,Yes,Multiple,Yes,Truck,Sunny,2021-01-08 20:02:03.864772,2021-11-24 20:02:03.864772,16.0,73.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+1520.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,625.0,No,Yes,Hips,No,Truck,Sunny,2022-06-06 13:34:20.332066,2022-12-11 13:34:20.332066,8.0,36.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+1491.0,Rear end,I. 9 months,0.0,0.0,0.0,483.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,113.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,No,Motorcycle,Sunny,2023-01-13 08:40:48.489697,2023-03-11 08:40:48.489697,12.0,32.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+1600.0,Rear end,E. 5 months,0.0,0.0,0.0,1444.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Hips,No,Car,Sunny,2022-11-28 05:11:40.700140,2023-03-21 05:11:40.700140,15.0,68.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Other
+1054.28,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,149.28,0.0,510.0,No,Yes,Multiple,Yes,Car,Sunny,2023-01-02 13:19:56.159231,2023-08-13 13:19:56.159231,2.0,33.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Arms,No,Motorcycle,Sunny,2020-01-29 21:55:50.830166,2020-04-08 21:55:50.830166,4.0,79.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+972.5,Other side collided with Clt's parked vehicle,G. 7 months,0.0,0.0,0.0,1050.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2021-09-01 05:36:44.360872,2022-04-16 05:36:44.360872,16.0,40.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Female
+258.7,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,18.7,No,No,Arms,No,Truck,Sunny,2021-11-05 15:43:06.037207,2022-07-19 15:43:06.037207,0.0,57.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+2796.12,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Hips,No,Motorcycle,Snowy,,2023-11-20 18:54:39.535907,8.0,63.0,4.0,,Fractured arm and leg.,Yes,Yes,Female
+1255.7,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,5.7,455.0,No,No,Arms,Yes,Truck,Sunny,2022-03-10 08:43:58.607721,2022-09-10 08:43:58.607721,16.0,54.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+854.0,Other,B. 2 months,0.0,0.0,0.0,1651.4,0.0,0.0,0.0,0.0,139.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,125.0,No,No,Arms,Yes,Motorcycle,Rainy,2021-04-14 08:06:31.758351,2021-10-22 08:06:31.758351,,18.0,,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+1390.0,Other side reversed into Clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Sunny,2022-05-12 10:45:49.509901,2022-12-30 10:45:49.509901,14.0,36.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+532.25,Rear end,E. 5 months,0.0,0.0,0.0,99.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Hips,No,Car,Snowy,2023-03-08 16:25:43.988797,2023-12-09 16:25:43.988797,7.0,54.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+1045.0,Rear end,D. 4 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2022-07-21 20:01:46.581316,2023-03-11 20:01:46.581316,7.0,52.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+2990.0,Rear end,J. 10 months,0.0,0.0,0.0,1600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2023-06-21 05:47:41.132226,2023-08-14 05:47:41.132226,1.0,47.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Female
+240.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,240.0,0.0,0.0,,0.0,0.0,No,No,Multiple,No,Car,Rainy,2023-09-29 10:01:10.574114,2024-06-12 10:01:10.574114,9.0,,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+1630.6,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1057.0,0.0,0.0,520.0,0.0,0.0,0.0,53.6,0.0,No,Yes,Legs,Yes,Truck,Rainy,2022-06-22 01:04:14.210842,2022-09-20 01:04:14.210842,4.0,56.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Male
+2127.0,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,232.0,No,Yes,Legs,No,Motorcycle,Rainy,2022-05-15 01:50:54.130826,2022-12-27 01:50:54.130826,15.0,66.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+962.62,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,113.82,0.0,28.8,406.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2022-02-16 11:01:40.100020,2022-10-21 11:01:40.100020,18.0,43.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+1110.0,Other side changed lanes and collided with clt's vehicle,B. 2 months,0.0,0.0,750.0,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Sunny,2020-09-06 17:02:18.987797,2021-02-04 17:02:18.987797,0.0,30.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Other
+1143.0,Rear end,F. 6 months,0.0,,0.0,483.0,0.0,0.0,140.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,,No,Yes,Multiple,Yes,Motorcycle,Snowy,2021-09-18 18:10:35.167033,2022-01-09 18:10:35.167033,,71.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+240.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Rainy,2023-12-09 09:18:15.339067,2024-09-03 09:18:15.339067,3.0,39.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Male
+1165.0,Rear end,F. 6 months,0.0,0.0,0.0,1033.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2021-02-08 19:01:51.622324,2021-07-15 19:01:51.622324,6.0,63.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Hips,No,Car,Sunny,2021-05-16 04:08:01.056211,2022-04-28 04:08:01.056211,0.0,40.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+2469.7200000000003,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1285.0,0.0,0.0,895.0,0.0,0.0,0.0,14.16,406.0,No,Yes,Arms,Yes,Car,Rainy,2023-04-27 08:01:37.939587,2024-04-12 08:01:37.939587,1.0,61.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Male
+850.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Hips,No,Truck,Snowy,2021-05-18 19:13:05.677135,2022-03-13 19:13:05.677135,15.0,60.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,,Car,Snowy,2021-07-24 09:21:42.740548,2021-12-30 09:21:42.740548,13.0,,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+5764.3,Other side pulled out of side road,J. 10 months,0.0,0.0,0.0,3400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,23.1,742.0,Yes,Yes,Hips,No,Car,Rainy,2020-02-23 17:43:47.805561,2021-01-18 17:43:47.805561,4.0,44.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+1520.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2020-06-01 03:53:54.166833,2021-01-12 03:53:54.166833,13.0,52.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+1390.0,,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2021-11-05 22:43:39.883976,2021-11-19 22:43:39.883976,16.0,29.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Male
+1133.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,,Yes,Legs,No,Car,Sunny,,2021-12-20 11:44:00.768153,,26.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Female
+890.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Multiple,No,Truck,Snowy,2021-04-29 05:35:17.943588,2021-08-16 05:35:17.943588,19.0,51.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Female
+1626.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,310.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,518.0,No,No,Hips,No,Truck,Rainy,2020-10-19 15:25:14.462892,2021-01-23 15:25:14.462892,11.0,31.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Female
+3325.0,Other side pulled out of side road,F. 6 months,0.0,0.0,475.0,1950.0,0.0,0.0,260.0,0.0,,0.0,0.0,520.0,0.0,,254.2,0.0,565.0,No,Yes,Arms,No,Car,Rainy,2022-07-31 11:20:23.524704,2023-02-11 11:20:23.524704,2.0,54.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+2030.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2093.0,0.0,0.0,220.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,195.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2022-07-05 11:30:11.162232,2022-09-01 11:30:11.162232,1.0,20.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+260.0,Rear end,A. 1 month,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,,Multiple,Yes,Truck,Rainy,,2022-07-04 02:07:36.571314,14.0,61.0,,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+2827.6,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,2116.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,,350.0,Yes,Yes,Legs,No,Car,Sunny,2020-04-24 18:41:41.780356,2021-02-12 18:41:41.780356,10.0,61.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2021-04-17 06:12:10.226045,2021-09-18 06:12:10.226045,9.0,78.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+1868.49,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,880.0,0.0,0.0,0.0,0.0,35.99,0.0,0.0,840.0,168.0,0.0,0.0,0.0,112.5,Yes,No,Legs,No,Motorcycle,Snowy,2022-11-29 09:13:56.087217,2023-02-01 09:13:56.087217,17.0,38.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
+520.0,Other side drove on wrong side of the road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Snowy,2020-07-11 18:12:18.867773,2020-12-16 18:12:18.867773,1.0,24.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Female
+945.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-05-01 03:08:57.947589,2024-01-21 03:08:57.947589,6.0,50.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Male
+1027.7,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,2.7,238.0,Yes,Yes,Hips,No,Car,Rainy,2020-04-03 03:59:57.119423,2020-08-02 03:59:57.119423,6.0,52.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+972.5,Other side collided with Clt's parked vehicle,G. 7 months,0.0,0.0,0.0,1050.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Snowy,2021-10-11 12:54:35.215043,2022-07-26 12:54:35.215043,6.0,28.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+1820.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2020-06-19 06:28:52.666533,2020-06-30 06:28:52.666533,13.0,62.0,,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+427.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,18.0,325.0,No,No,Multiple,Yes,Car,Rainy,2022-11-17 09:50:48.369673,2023-06-19 09:50:48.369673,1.0,49.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Female
+845.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Arms,No,Motorcycle,Snowy,2020-06-18 16:27:44.972994,2020-11-27 16:27:44.972994,1.0,39.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+885.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,85.73,375.0,No,Yes,Arms,Yes,Car,Snowy,2022-12-15 10:44:57.659531,2023-03-30 10:44:57.659531,14.0,72.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Other
+1342.76,Rear end,E. 5 months,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,35.76,462.0,No,No,Arms,Yes,Motorcycle,Rainy,2021-05-31 01:36:47.241448,2021-10-25 01:36:47.241448,10.0,59.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+1694.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,742.0,Yes,Yes,Multiple,No,Truck,Snowy,2021-03-30 10:37:45.573114,2021-09-28 10:37:45.573114,9.0,36.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+1620.0,Rear end,E. 5 months,0.0,0.0,0.0,2090.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2021-06-09 02:54:16.491298,2022-05-13 02:54:16.491298,2.0,53.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+1895.0,Other side pulled on to roundabout,H. 8 months,0.0,0.0,0.0,1261.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Hips,Yes,Motorcycle,Snowy,2023-05-13 09:32:39.511902,2023-06-19 09:32:39.511902,16.0,71.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+836.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.0,400.0,No,Yes,Multiple,No,Car,Snowy,2020-10-18 11:22:59.075815,2021-01-08 11:22:59.075815,8.0,54.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+688.4300000000001,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,8.43,160.0,No,Yes,Arms,Yes,Car,Rainy,2020-08-09 02:07:02.004400,2020-08-21 02:07:02.004400,14.0,28.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Female
+1860.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,1490.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Arms,Yes,Car,Snowy,2020-03-23 08:39:04.788957,2020-03-27 08:39:04.788957,13.0,58.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Sunny,2023-11-30 22:01:53.782756,2024-01-12 22:01:53.782756,18.0,30.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Other
+1316.88,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,527.35,No,Yes,Arms,No,Car,Snowy,2020-02-07 23:13:20.080016,2020-03-29 23:13:20.080016,16.0,45.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Other
+,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1057.0,0.0,,520.0,,0.0,0.0,53.6,0.0,No,Yes,Legs,No,Car,Sunny,2021-01-12 15:09:23.872774,2021-09-30 15:09:23.872774,19.0,66.0,,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Male
+1300.0,Rear end,I. 9 months,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,,Yes,Truck,Snowy,2020-01-18 12:33:50.806161,2020-05-31 12:33:50.806161,16.0,32.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+495.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,495.0,0.0,0.0,,0.0,0.0,No,No,Arms,No,Motorcycle,Sunny,2021-10-07 17:47:15.207041,2022-01-02 17:47:15.207041,15.0,30.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+1378.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Hips,No,Motorcycle,Sunny,2021-03-28 02:33:14.798959,2022-03-25 02:33:14.798959,19.0,70.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Other
+623.08,Rear end,E. 5 months,0.0,0.0,,0.0,0.0,103.08,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2023-06-29 10:03:28.841768,,7.0,60.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+1301.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Hips,No,Truck,Snowy,2021-06-04 03:44:41.096219,2022-01-07 03:44:41.096219,6.0,50.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Other
+427.0,Rear end,C. 3 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,,0.0,,325.0,No,No,Hips,No,Motorcycle,Snowy,2020-01-11 19:20:52.330466,2020-03-19 19:20:52.330466,11.0,25.0,2.0,Lost control on a snowy road.,,Yes,Yes,Male
+708.76,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,23.76,235.0,No,Yes,Hips,No,Truck,Sunny,2022-11-26 11:08:17.619523,2023-11-13 11:08:17.619523,0.0,72.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+675.0,Other side turned across Clt's path,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,80.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Hips,No,Truck,Rainy,2022-02-17 01:02:47.793558,2022-04-02 01:02:47.793558,11.0,49.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+1804.35,Rear end,F. 6 months,0.0,0.0,0.0,2305.0,0.0,0.0,0.0,0.0,30.46,0.0,0.0,495.0,0.0,0.0,0.0,16.2,9.35,No,No,Legs,Yes,Truck,Rainy,2020-05-18 03:26:49.521904,2020-10-08 03:26:49.521904,5.0,54.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+1399.1,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,684.1,No,Yes,Multiple,No,Motorcycle,Snowy,2020-01-17 22:32:43.112622,2020-12-28 22:32:43.112622,15.0,71.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1980.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,0.0,No,,Hips,No,Truck,Rainy,2022-02-08 20:47:00.084016,2022-03-22 20:47:00.084016,17.0,65.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+2419.84,Other side drove on wrong side of the road,H. 8 months,0.0,0.0,0.0,1580.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,2.34,325.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2022-02-02 10:34:35.455091,2022-06-21 10:34:35.455091,18.0,21.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+1290.0,,,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,35.28,454.35,No,Yes,Arms,No,Motorcycle,Snowy,2022-02-02 10:34:35.455091,2022-04-16 10:34:35.455091,2.0,,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+1200.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,425.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2023-12-31 00:00:00.000000,2024-09-23 00:00:00.000000,2.0,79.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2023-07-31 20:06:05.833166,2024-02-10 20:06:05.833166,4.0,68.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Male
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,1200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2021-02-16 02:15:57.791558,2021-07-21 02:15:57.791558,2.0,35.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+2739.38,,G. 7 months,0.0,,150.0,0.0,0.0,0.0,480.0,0.0,281.88,,0.0,895.0,0.0,0.0,0.0,557.5,375.0,No,Yes,Legs,No,Truck,Sunny,2020-01-25 12:47:23.128625,2020-09-27 12:47:23.128625,18.0,40.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Male
+1157.2,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,7.2,350.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2021-03-23 17:24:47.097419,2022-01-31 17:24:47.097419,,46.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+1895.0,Other,G. 7 months,0.0,0.0,0.0,3006.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,,0.0,Yes,Yes,Multiple,Yes,Truck,Sunny,2023-01-13 22:41:56.183236,2023-08-19 22:41:56.183236,13.0,19.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Male
+1820.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,,Legs,Yes,,Rainy,2022-02-19 23:08:26.261252,2022-10-30 23:08:26.261252,15.0,30.0,,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Female
+790.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,295.0,No,No,Multiple,No,Motorcycle,Snowy,2022-04-19 02:00:41.768353,2023-01-21 02:00:41.768353,0.0,33.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+784.44,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,196.44,0.0,0.0,495.0,0.0,0.0,0.0,0.0,180.0,No,No,Multiple,No,Truck,Rainy,2022-06-30 05:20:01.920384,2023-04-03 05:20:01.920384,16.0,71.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,,Truck,Rainy,2020-11-14 08:14:52.978595,2021-01-25 08:14:52.978595,10.0,76.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+1324.24,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,36.54,462.0,No,Yes,Legs,No,Motorcycle,Sunny,2022-04-07 16:38:41.744348,2022-08-14 16:38:41.744348,8.0,25.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+994.68,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,4.68,125.0,No,Yes,Arms,No,Motorcycle,Rainy,2023-05-18 15:42:48.753750,2024-05-10 15:42:48.753750,3.0,36.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Male
+681.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Multiple,No,Car,Snowy,2021-08-29 07:31:05.893178,2022-03-03 07:31:05.893178,1.0,49.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+2000.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,1105.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2022-07-20 15:59:31.194238,2022-08-02 15:59:31.194238,8.0,20.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+1027.7,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,2.7,238.0,Yes,Yes,Legs,Yes,Car,Snowy,2023-10-30 02:00:24.484896,2024-09-23 02:00:24.484896,4.0,68.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+840.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,3.6,6.0,No,No,Multiple,Yes,Truck,Sunny,2023-05-19 19:45:04.140828,2023-12-25 19:45:04.140828,3.0,66.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+495.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,,0.0,0.0,0.0,No,No,Multiple,Yes,Motorcycle,,2020-12-18 19:21:26.897379,2020-12-24 19:21:26.897379,4.0,,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Female
+4346.83,Other,I. 9 months,0.0,0.0,0.0,1102.85,0.0,5894.9,0.0,0.0,111.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,825.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2022-11-10 16:37:49.893978,2023-07-07 16:37:49.893978,17.0,58.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Rainy,2023-10-16 15:34:27.533506,2024-02-05 15:34:27.533506,12.0,38.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+2196.4,Other side changed lanes and collided with clt's vehicle,F. 6 months,,0.0,350.0,1096.0,0.0,0.0,120.0,0.0,48.6,0.0,0.0,520.0,0.0,0.0,0.0,61.8,0.0,No,Yes,Arms,Yes,Truck,Rainy,2022-01-23 19:15:58.511702,2022-09-08 19:15:58.511702,4.0,42.0,1.0,Lost control on a snowy road.,,Yes,Yes,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Car,Sunny,2023-01-11 00:36:17.715543,2023-01-28 00:36:17.715543,18.0,70.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+1277.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,,0.0,,0.0,0.0,,17.0,,0.0,840.0,0.0,0.0,0.0,0.0,620.0,No,No,Multiple,Yes,Truck,Sunny,2020-05-30 09:50:31.086217,2020-08-11 09:50:31.086217,2.0,72.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+600.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,105.0,No,No,Multiple,Yes,Truck,Rainy,2021-10-08 00:47:49.053810,2021-10-20 00:47:49.053810,17.0,34.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+1379.92,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,523.25,0.0,79.92,210.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,5.0,No,Yes,Multiple,No,Motorcycle,Sunny,2022-05-18 13:57:40.292058,2022-08-12 13:57:40.292058,5.0,42.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+1668.0,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,1390.0,278.0,0.0,0.0,0.0,,Yes,Yes,Legs,No,Car,Sunny,2020-09-29 04:45:45.189037,2021-03-28 04:45:45.189037,5.0,50.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Female
+1260.0,Other side pulled on to roundabout,B. 2 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Snowy,2021-04-30 16:38:07.177435,2021-08-30 16:38:07.177435,4.0,48.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+2583.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,1821.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,48.0,30.0,No,Yes,Multiple,Yes,Motorcycle,,2020-06-11 09:13:38.803760,2021-01-01 09:13:38.803760,0.0,53.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Male
+567.98,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,28.8,50.0,No,Yes,Hips,No,Truck,Rainy,2021-05-03 00:42:37.951590,2021-07-12 00:42:37.951590,7.0,40.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+1260.0,Rear end,B. 2 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,,0.0,0.0,0.0,260.0,0.0,0.0,0.0,,0.0,No,Yes,Hips,Yes,Truck,Rainy,,2021-02-01 17:19:35.995199,0.0,76.0,1.0,,Whiplash and minor bruises.,Yes,No,Male
+760.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,290.0,Yes,Yes,Arms,No,Motorcycle,Snowy,2021-04-20 11:18:22.540508,2021-11-07 11:18:22.540508,5.0,64.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+545.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,245.3,0.0,0.0,0.0,,0.0,,,0.0,,0.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2021-05-08 20:53:54.886977,2021-06-29 20:53:54.886977,19.0,61.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+1189.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Multiple,No,Car,Rainy,2023-11-18 01:37:04.524904,2023-12-25 01:37:04.524904,13.0,42.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Male
+670.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,99.0,0.0,0.0,50.4,238.0,Yes,No,Arms,No,Truck,Rainy,2020-11-18 10:22:46.833366,2021-03-15 10:22:46.833366,10.0,66.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Female
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Rainy,2021-01-05 21:56:25.397079,2021-09-21 21:56:25.397079,1.0,61.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+2540.0,,H. 8 months,0.0,0.0,0.0,1700.0,,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Motorcycle,Sunny,,2023-01-16 13:17:03.324664,3.0,65.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+5880.02,Other side reversed into Clt's vehicle,G. 7 months,0.0,0.0,0.0,,0.0,0.0,910.0,,3435.23,0.0,0.0,895.0,0.0,0.0,0.0,210.3,479.49,No,Yes,Hips,,Car,Snowy,2023-10-17 12:36:09.073814,2024-08-15 12:36:09.073814,12.0,47.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Male
+2529.51,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,1000.0,0.0,634.51,0.0,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,0.0,0.0,,Yes,Arms,Yes,Car,Rainy,2021-02-15 12:14:50.098019,2021-04-20 12:14:50.098019,6.0,,4.0,,,Yes,No,Female
+950.0,Other side drove on wrong side of the road,D. 4 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2022-11-30 20:16:45.321064,2023-01-11 20:16:45.321064,5.0,60.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Male
+1820.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2021-01-23 10:30:16.203240,2021-03-07 10:30:16.203240,2.0,64.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Other
+1290.0,Rear end,F. 6 months,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,35.28,454.35,No,Yes,Hips,Yes,Motorcycle,Sunny,2023-10-11 09:24:18.291658,2024-02-13 09:24:18.291658,8.0,46.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,52.0,0.0,0.0,0.0,0.0,Yes,Yes,Legs,Yes,Truck,Sunny,2021-08-22 21:18:41.264252,2022-05-19 21:18:41.264252,13.0,33.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Male
+3417.06,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,2394.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,78.06,475.0,No,Yes,Hips,No,Car,Sunny,2020-10-05 07:57:35.971194,2021-09-17 07:57:35.971194,19.0,55.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Other
+1883.0,Other side turned across Clt's path,I. 9 months,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,468.0,No,Yes,Arms,No,Truck,Sunny,2021-06-21 23:19:05.749149,2022-02-09 23:19:05.749149,10.0,44.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Male
+1706.39,Other,C. 3 months,0.0,0.0,0.0,2121.0,69.0,0.0,0.0,0.0,282.2,0.0,0.0,260.0,0.0,0.0,5.4,70.0,19.79,No,Yes,Arms,No,Truck,Sunny,2022-03-29 08:20:38.647729,2022-08-08 08:20:38.647729,4.0,43.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+940.0,Other side pulled out of side road,D. 4 months,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,170.0,No,Yes,Legs,No,Truck,Sunny,2020-01-03 15:05:04.620924,2020-01-05 15:05:04.620924,13.0,28.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Male
+3448.75,Rear end,H. 8 months,0.0,0.0,0.0,1067.5,66.95,0.0,0.0,0.0,130.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2022-01-31 23:31:46.221244,2022-05-26 23:31:46.221244,18.0,64.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+705.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Legs,No,Truck,Snowy,2020-02-05 08:08:15.459091,2020-02-06 08:08:15.459091,7.0,54.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Male
+412.5,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Legs,No,Truck,Sunny,2023-10-28 14:57:35.251050,2024-09-23 14:57:35.251050,6.0,20.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Male
+982.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Hips,Yes,Truck,Rainy,2022-01-17 16:04:07.729545,2022-03-23 16:04:07.729545,6.0,43.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Snowy,2022-06-05 23:33:12.638527,2022-10-08 23:33:12.638527,2.0,51.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+628.0,Other side turned across Clt's path,,0.0,0.0,0.0,483.0,0.0,0.0,0.0,0.0,165.0,0.0,0.0,260.0,,0.0,0.0,10.0,0.0,No,Yes,Legs,No,Truck,Sunny,2020-05-08 12:08:12.578515,2021-01-19 12:08:12.578515,2.0,50.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+690.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,170.0,No,Yes,Arms,No,Truck,Sunny,2022-03-13 20:50:44.768953,2023-01-29 20:50:44.768953,17.0,32.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2020-06-21 07:32:49.593918,2020-11-11 07:32:49.593918,12.0,19.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+290.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Snowy,2021-02-03 12:51:42.380476,2021-12-28 12:51:42.380476,0.0,45.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+1400.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,100.0,0.0,0.0,53.9,256.0,Yes,No,Hips,No,Truck,Sunny,2021-08-03 21:42:01.224244,2022-04-06 21:42:01.224244,4.0,78.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+1045.0,Rear end,D. 4 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Hips,No,Car,Snowy,2021-02-01 11:47:45.453090,2021-05-28 11:47:45.453090,3.0,37.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+795.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,400.0,No,Yes,Multiple,No,Motorcycle,Rainy,2023-01-06 22:28:23.860772,2023-11-05 22:28:23.860772,15.0,55.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Other
+978.4,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,520.0,,0.0,23.4,0.0,518.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2021-08-25 19:24:19.731946,,14.0,61.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+1457.0,Other side pulled out of side road,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,127.92,0.0,0.0,125.0,Yes,Yes,Multiple,Yes,Motorcycle,Snowy,2021-12-06 07:42:19.947989,2022-09-28 07:42:19.947989,17.0,70.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+1470.0,Rear end,G. 7 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2022-05-11 20:44:41.816363,2022-06-22 20:44:41.816363,16.0,33.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+845.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Legs,No,Motorcycle,Rainy,2022-03-19 10:01:27.857571,2022-04-23 10:01:27.857571,13.0,63.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+2356.0,Rear end,,0.0,0.0,0.0,2096.0,0.0,0.0,,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2022-09-24 16:07:00.564112,2022-11-04 16:07:00.564112,13.0,21.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+623.08,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,103.08,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2021-04-05 06:49:02.508501,2022-03-12 06:49:02.508501,18.0,25.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+1750.0,Rear end,G. 7 months,0.0,0.0,0.0,1112.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,325.0,No,No,Legs,No,Truck,Sunny,2020-02-03 07:04:18.531706,2020-06-06 07:04:18.531706,5.0,61.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+1000.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,520.0,0.0,0.0,10.0,0.0,462.0,No,Yes,Arms,No,Truck,Sunny,,2021-04-01 12:51:42.380476,12.0,72.0,1.0,,Fractured arm and leg.,Yes,No,Other
+865.0,Other side changed lanes on a roundabout colliding with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,370.0,No,No,Multiple,Yes,Truck,Snowy,2020-02-10 07:17:50.854170,2020-11-30 07:17:50.854170,17.0,63.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Other
+1708.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,2194.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,88.0,No,Yes,Arms,No,Car,Snowy,2023-12-08 19:17:07.645529,2024-07-30 19:17:07.645529,14.0,37.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Other
+1570.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,42.6,170.0,No,Yes,Legs,No,Truck,Snowy,2023-12-14 01:27:16.887377,2024-03-19 01:27:16.887377,6.0,43.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+923.05,Rear end,H. 8 months,612.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,9.9,78.05,No,Yes,Hips,Yes,Motorcycle,Rainy,2022-09-12 02:42:45.153030,2023-07-28 02:42:45.153030,18.0,49.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Male
+1866.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,574.0,No,Yes,Legs,No,Truck,Rainy,2021-01-19 01:21:48.501700,2021-12-28 01:21:48.501700,16.0,30.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Male
+1615.0,Other side changed lanes and collided with clt's vehicle,J. 10 months,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,,0.0,225.0,No,Yes,Arms,Yes,,Snowy,2020-01-22 07:41:10.814162,,8.0,78.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Other
+1381.8,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,895.0,0.0,0.0,0.0,37.8,442.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2023-01-28 06:09:34.674934,2023-07-23 06:09:34.674934,10.0,22.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,,Truck,Sunny,2020-05-21 01:32:27.989597,2020-07-12 01:32:27.989597,4.0,61.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+2165.0,Rear end,G. 7 months,0.0,0.0,0.0,2400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,180.0,No,Yes,Hips,Yes,Truck,Snowy,2023-04-15 15:39:04.068813,2023-05-23 15:39:04.068813,1.0,59.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Other
+350.0,Rear end - Clt pushed into next vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,220.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Sunny,2021-03-28 09:33:48.645729,2022-03-06 09:33:48.645729,14.0,70.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+547.5,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,52.5,No,No,Arms,No,Car,Snowy,2021-01-31 21:46:37.759551,2021-02-05 21:46:37.759551,11.0,68.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+845.0,Rear end,D. 4 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,,No,No,,Yes,Truck,Sunny,2021-07-07 17:49:33.474694,2022-02-05 17:49:33.474694,,,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+1795.95,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,477.95,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2023-05-18 15:42:48.753750,2023-09-15 15:42:48.753750,9.0,58.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+652.24,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.24,126.0,No,Yes,Legs,No,Motorcycle,Sunny,2020-05-28 22:47:41.852370,2021-04-19 22:47:41.852370,19.0,28.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Male
+895.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,,,2020-11-28 05:58:03.336667,10.0,54.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+832.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Hips,Yes,Truck,Snowy,2021-12-11 06:51:55.343068,2022-07-16 06:51:55.343068,9.0,77.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+663.5,Rear end,F. 6 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,71.46,0.0,0.0,520.0,0.0,0.0,0.0,79.2,136.5,No,Yes,Multiple,No,Truck,Rainy,2021-07-10 15:55:11.942388,2021-08-03 15:55:11.942388,6.0,49.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+795.9,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.9,275.0,No,Yes,Legs,No,Motorcycle,Sunny,2023-06-17 17:40:54.970994,2024-05-24 17:40:54.970994,13.0,62.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Other
+495.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Rainy,2020-10-06 19:00:25.205041,2021-04-29 19:00:25.205041,12.0,59.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,125.0,No,No,Legs,Yes,Car,Sunny,2020-08-28 15:44:49.737947,2021-04-11 15:44:49.737947,4.0,35.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+840.0,Other side turned across Clt's path,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Rainy,2020-01-19 16:36:06.193238,2020-08-24 16:36:06.193238,18.0,46.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+275.0,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.0,0.0,0.0,260.0,0.0,0.0,0.0,58.5,0.0,No,Yes,Hips,Yes,Car,Snowy,2023-12-10 06:19:56.879375,2024-07-08 06:19:56.879375,9.0,32.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+520.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2023-10-07 14:16:58.283656,2023-11-02 14:16:58.283656,7.0,37.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+728.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,173.0,0.0,0.0,60.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Rainy,2022-09-04 19:28:38.983796,2023-05-14 19:28:38.983796,17.0,61.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Female
+1395.0,Rear end,I. 9 months,0.0,0.0,0.0,2254.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Legs,Yes,Truck,Snowy,2020-08-21 15:31:17.415483,2020-08-24 15:31:17.415483,0.0,53.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+3320.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2800.0,0.0,0.0,,0.0,0.0,0.0,,520.0,0.0,0.0,,,0.0,No,Yes,,Yes,Truck,Rainy,2020-03-21 21:36:15.555111,2020-03-23 21:36:15.555111,4.0,22.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Other
+1410.0,Rear end,G. 7 months,0.0,0.0,0.0,1120.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,170.0,No,No,Multiple,Yes,Motorcycle,Snowy,2021-05-16 11:08:34.902980,2021-08-16 11:08:34.902980,10.0,57.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Sunny,2021-12-05 17:41:12.254450,2021-12-07 17:41:12.254450,19.0,54.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+910.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,48.6,375.0,No,Yes,Hips,Yes,Truck,Rainy,2020-12-27 13:38:22.300460,2021-05-26 13:38:22.300460,10.0,50.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+2733.0,Rear end,G. 7 months,0.0,0.0,0.0,2978.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,508.0,No,Yes,Multiple,No,Motorcycle,Snowy,2023-08-13 23:31:28.937787,2023-10-23 23:31:28.937787,15.0,35.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2021-03-09 23:58:16.299259,2021-03-13 23:58:16.299259,9.0,36.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Female
+495.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Rainy,2023-09-29 03:00:36.727345,2023-11-06 03:00:36.727345,14.0,68.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+1625.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,880.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,225.0,No,Yes,Multiple,No,Car,Sunny,2022-08-21 05:00:26.645329,2023-08-15 05:00:26.645329,6.0,49.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Other
+1266.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,21.0,0.0,350.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-07-29 12:01:35.059011,2023-10-07 12:01:35.059011,14.0,59.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+972.5,Other side collided with Clt's parked vehicle,G. 7 months,0.0,0.0,0.0,1050.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Snowy,2022-05-24 17:09:31.074214,2022-12-11 17:09:31.074214,15.0,39.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2020-01-27 20:51:53.902780,2020-11-30 20:51:53.902780,5.0,58.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+1666.75,Other side pulled out of side road,H. 8 months,,,0.0,1810.0,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,,0.0,36.75,0.0,235.0,No,Yes,Legs,Yes,Car,Rainy,2022-10-28 06:11:52.942588,2023-07-07 06:11:52.942588,10.0,75.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Male
+240.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Snowy,2021-06-21 09:17:58.055611,2022-04-04 09:17:58.055611,16.0,18.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+3740.0,Other,J. 10 months,0.0,0.0,0.0,2000.0,0.0,0.0,120.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Hips,No,Motorcycle,Rainy,2022-10-27 02:09:37.555511,2023-08-15 02:09:37.555511,14.0,71.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+895.0,Rear end,,,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,,Motorcycle,Sunny,2021-04-18 10:14:25.613122,2021-09-19 10:14:25.613122,15.0,42.0,3.0,,Fractured arm and leg.,No,No,Other
+2168.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,370.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2021-03-31 21:40:34.806961,2021-08-11 21:40:34.806961,1.0,37.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Male
+258.7,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,18.7,No,No,Legs,No,Car,Sunny,2021-02-17 13:18:47.025405,2021-05-02 13:18:47.025405,3.0,75.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+698.47,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,203.47,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Sunny,2022-05-15 15:52:01.824364,2023-02-13 15:52:01.824364,18.0,52.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Male
+990.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,15.12,574.0,No,Yes,Hips,No,Truck,Sunny,2023-05-08 17:23:37.963592,2024-02-03 17:23:37.963592,5.0,62.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Other
+495.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,135.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Motorcycle,Rainy,2020-11-26 00:37:26.849369,2021-05-30 00:37:26.849369,17.0,23.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Male
+1665.0,Rear end,I. 9 months,0.0,0.0,0.0,770.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2021-02-16 16:17:05.485097,2022-02-04 16:17:05.485097,10.0,23.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+520.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2022-11-16 12:49:06.829365,2022-11-21 12:49:06.829365,8.0,78.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+508.1,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,4.5,9.35,No,No,Hips,Yes,Car,Snowy,2022-12-29 11:12:02.304460,2023-10-18 11:12:02.304460,2.0,67.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+1470.0,,,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,,0.0,126.0,No,Yes,Arms,No,Truck,Sunny,2021-09-10 13:54:47.457491,2022-09-05 13:54:47.457491,1.0,54.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+2036.44,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,2325.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,18.45,7.99,No,Yes,Hips,No,Truck,Snowy,2020-07-12 15:14:00.408081,2020-10-06 15:14:00.408081,17.0,66.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Snowy,2022-02-08 06:45:52.390478,2022-09-10 06:45:52.390478,14.0,78.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+1495.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,2020.0,0.0,0.0,60.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Legs,No,Motorcycle,Snowy,2022-03-21 04:04:50.938187,2022-04-05 04:04:50.938187,17.0,74.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+920.0,Rear end,E. 5 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2023-03-05 04:18:57.827565,2023-12-03 04:18:57.827565,18.0,74.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+852.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,332.0,No,Yes,Legs,No,Car,,2022-10-16 06:48:45.225045,2022-12-06 06:48:45.225045,14.0,20.0,2.0,,Concussion and bruised ribs.,Yes,Yes,Male
+1005.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,,,No,No,Legs,No,Car,Snowy,2021-04-03 19:46:13.274654,2021-12-12 19:46:13.274654,16.0,,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+1257.6,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,967.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,,0.0,0.0,30.6,0.0,No,Yes,,Yes,Motorcycle,Rainy,2021-03-20 19:19:08.629725,2021-05-04 19:19:08.629725,17.0,,3.0,Swerved to avoid another vehicle.,,Yes,Yes,Other
+566.11,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.11,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Sunny,2020-10-15 06:16:46.761352,2021-04-24 06:16:46.761352,17.0,52.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Other
+1459.33,Rear end,D. 4 months,0.0,0.0,0.0,750.0,0.0,204.98,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,59.35,No,No,Multiple,No,Car,Rainy,2022-08-03 16:26:35.839167,2022-12-03 16:26:35.839167,10.0,72.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+495.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Sunny,2023-01-27 23:09:00.828165,2023-08-02 23:09:00.828165,17.0,62.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+1820.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1950.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,9.6,182.0,No,Yes,Arms,No,Car,Sunny,2022-12-14 13:43:16.119223,2023-07-16 13:43:16.119223,2.0,32.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Male
+1010.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,179.0,0.0,0.0,12.0,238.0,Yes,No,Hips,Yes,Car,Rainy,2020-01-29 14:55:16.983396,2020-06-26 14:55:16.983396,12.0,34.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+1432.0,Other,E. 5 months,0.0,0.0,0.0,574.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,,No,Yes,Legs,Yes,Truck,Rainy,2021-10-30 05:30:41.408281,,13.0,32.0,1.0,Rear-ended at a stoplight.,,Yes,No,Female
+720.0,Other side turned across Clt's path,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,460.0,,0.0,0.0,,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,,2021-10-13 04:14:04.008801,3.0,,3.0,,Minor cuts and scrapes.,Yes,Yes,Female
+639.99,,E. 5 months,0.0,0.0,0.0,0.0,0.0,397.6,0.0,0.0,119.99,0.0,0.0,520.0,,0.0,0.0,0.0,76.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-06-08 23:23:59.567913,2023-08-29 23:23:59.567913,,39.0,,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+2831.53,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1851.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,774.53,No,Yes,Multiple,Yes,Truck,Rainy,,2021-01-15 20:57:05.005001,4.0,63.0,1.0,,Minor cuts and scrapes.,No,Yes,Male
+1270.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,750.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2023-11-14 20:30:52.210442,2024-07-17 20:30:52.210442,13.0,28.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Other
+895.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2023-09-01 02:06:27.437487,2024-08-11 02:06:27.437487,11.0,45.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+955.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,60.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2020-06-17 19:26:03.432686,2021-06-09 19:26:03.432686,6.0,31.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+1074.35,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,247.35,No,Yes,Multiple,No,Motorcycle,Sunny,2023-03-02 06:13:19.359871,2023-04-11 06:13:19.359871,11.0,56.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Male
+895.0,Other,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2020-03-20 10:33:26.321264,2020-09-04 10:33:26.321264,7.0,20.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+545.2,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,417.27,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.5,21.2,No,Yes,Arms,No,Motorcycle,Snowy,2023-11-26 12:53:26.081216,2024-01-08 12:53:26.081216,2.0,72.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Male
+2295.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2840.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2023-02-28 19:10:30.126025,2024-01-23 19:10:30.126025,0.0,69.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Sunny,2023-02-20 21:55:16.263252,2023-09-19 21:55:16.263252,2.0,59.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+240.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Rainy,2020-05-12 00:14:58.739747,2020-11-07 00:14:58.739747,10.0,28.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+270.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,50.0,No,No,Legs,No,Motorcycle,Snowy,2020-12-09 04:02:49.953990,2021-01-01 04:02:49.953990,17.0,47.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Other
+1425.0,Rear end,F. 6 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,625.0,No,Yes,Arms,Yes,Car,Snowy,2023-12-05 07:10:21.484296,2024-03-09 07:10:21.484296,6.0,55.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Male
+795.0,,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,,,Yes,Arms,No,Car,Sunny,2020-04-30 14:52:58.715743,2020-10-07 14:52:58.715743,8.0,22.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+937.27,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.67,0.0,0.0,0.0,495.0,0.0,0.0,0.0,25.8,462.0,No,,,Yes,Car,Snowy,2021-03-28 16:34:22.492498,2021-11-27 16:34:22.492498,3.0,69.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+1987.0,Other side turned across Clt's path,B. 2 months,0.0,0.0,0.0,1972.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,12.0,0.0,No,Yes,Multiple,No,Car,Rainy,2023-08-14 20:33:10.478095,2023-08-31 20:33:10.478095,9.0,39.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+773.5,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,4.5,345.0,No,Yes,Arms,Yes,Car,Sunny,2023-12-28 08:54:55.379075,2024-04-18 08:54:55.379075,17.0,30.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+1020.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Legs,Yes,Car,Sunny,2021-07-22 08:17:45.813162,2021-11-02 08:17:45.813162,15.0,61.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Other
+695.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,345.0,No,Yes,Legs,Yes,Truck,Rainy,2020-02-25 18:47:44.732946,2021-01-04 18:47:44.732946,11.0,68.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Other
+1472.0,Rear end,F. 6 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,90.0,No,Yes,Multiple,No,Car,Rainy,2020-01-12 16:22:33.870774,2020-04-07 16:22:33.870774,18.0,68.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Female
+1260.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Hips,No,Car,Rainy,2021-06-26 22:28:41.144228,2021-07-31 22:28:41.144228,2.0,38.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Male
+1070.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,375.0,No,Yes,Arms,Yes,Truck,Snowy,2021-01-24 00:31:23.896779,2021-02-23 00:31:23.896779,7.0,76.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Other
+1254.6,Other side drove on wrong side of the road,H. 8 months,0.0,0.0,0.0,3000.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,9.6,0.0,No,Yes,Multiple,Yes,Car,Rainy,2022-10-04 07:25:37.507501,2023-04-14 07:25:37.507501,18.0,54.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Male
+495.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Sunny,2020-02-09 10:16:09.313862,2020-08-06 10:16:09.313862,,42.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Other
+895.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1610.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,,Motorcycle,Rainy,2023-05-11 22:29:50.278055,2023-08-23 22:29:50.278055,18.0,,3.0,,Whiplash and minor bruises.,No,Yes,Male
+767.5,Other side changed lanes and collided with clt's vehicle,D. 4 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,3.0,0.0,270.0,No,No,Multiple,Yes,Car,Sunny,2023-09-09 13:22:48.993798,2024-02-21 13:22:48.993798,16.0,38.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+1133.0,"Other side opened their door, hitting clt's vehicle",G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Arms,Yes,Truck,Sunny,2021-07-20 21:14:56.579315,2021-11-19 21:14:56.579315,12.0,45.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+970.0,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,76.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2021-04-02 01:42:50.194038,2021-08-14 01:42:50.194038,1.0,58.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+1570.0,Rear end,E. 5 months,0.0,0.0,0.0,1846.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,108.0,No,Yes,Hips,Yes,Truck,Rainy,2023-05-17 18:41:07.213442,2024-03-02 18:41:07.213442,3.0,21.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+260.0,Rear end,C. 3 months,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,260.0,,0.0,,0.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2020-04-23 07:38:52.546509,2021-03-01 07:38:52.546509,10.0,46.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,,Rainy,2021-03-31 00:38:53.266653,2021-11-10 00:38:53.266653,1.0,64.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Other
+2540.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1914.73,0.0,0.0,840.0,0.0,0.0,0.0,0.0,275.0,No,No,Hips,Yes,Truck,Rainy,2021-09-11 10:56:28.997799,2021-10-06 10:56:28.997799,3.0,52.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+1105.0,Other side turned across Clt's path,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,371.0,No,Yes,Arms,Yes,Truck,Rainy,2020-10-27 05:39:54.478895,2020-11-09 05:39:54.478895,3.0,40.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+1290.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.99,0.0,0.0,840.0,0.0,0.0,0.0,0.0,720.0,No,No,Arms,No,Truck,Rainy,2022-10-29 03:13:34.482896,2023-09-13 03:13:34.482896,19.0,24.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+600.8,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,120.0,0.0,0.0,520.0,0.0,0.0,0.0,10.8,70.0,No,Yes,Legs,No,Motorcycle,Rainy,2020-01-24 15:45:41.588317,2020-09-10 15:45:41.588317,0.0,73.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2020-08-14 08:17:11.246249,2020-11-24 08:17:11.246249,10.0,69.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Other
+1120.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,1530.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2022-06-06 06:33:46.485297,2022-12-26 06:33:46.485297,1.0,69.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+1535.0,Other side pulled out of side road,H. 8 months,0.0,0.0,,0.0,0.0,0.0,0.0,,640.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,,No,Yes,Legs,No,Car,,2023-07-01 04:06:51.922384,2024-03-24 04:06:51.922384,18.0,63.0,,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+451.5,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,235.0,No,No,Hips,Yes,Motorcycle,Sunny,2022-04-23 04:08:35.623124,2022-12-01 04:08:35.623124,7.0,63.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Female
+892.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,42.0,406.0,No,Yes,Hips,No,Car,Snowy,2021-07-02 11:39:24.232846,2021-10-14 11:39:24.232846,19.0,26.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+1185.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Hips,No,Truck,Snowy,2021-10-25 06:21:06.013202,2022-02-13 06:21:06.013202,3.0,,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+1390.0,Rear end,K. 11 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Snowy,2021-04-14 08:06:31.758351,2021-06-22 08:06:31.758351,15.0,40.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+2456.18,Rear end,H. 8 months,,0.0,0.0,1445.0,0.0,,,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Rainy,2022-07-05 18:30:45.009001,,14.0,20.0,2.0,Swerved to avoid another vehicle.,,No,Yes,Female
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Rainy,2020-06-25 16:41:17.295459,2021-03-10 16:41:17.295459,4.0,78.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+1099.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,21.6,294.0,No,Yes,Legs,Yes,Car,Sunny,2023-10-14 21:31:04.452890,2024-03-30 21:31:04.452890,4.0,26.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Male
+1216.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,455.0,Yes,Yes,Arms,No,Truck,Sunny,2022-09-24 02:05:52.870574,2023-07-14 02:05:52.870574,14.0,78.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+734.4,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,14.4,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2022-12-06 09:27:28.409681,2023-01-24 09:27:28.409681,16.0,70.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+2767.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,1810.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,12.0,0.0,615.0,No,Yes,Hips,No,Car,Snowy,2021-09-18 04:09:27.473494,2022-05-26 04:09:27.473494,2.0,21.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+1520.0,Other side collided with Clt's parked vehicle,I. 9 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,455.0,No,No,Legs,Yes,Motorcycle,Snowy,2023-06-01 02:08:45.705141,2024-04-27 02:08:45.705141,17.0,66.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+260.0,Other,A. 1 month,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,No,,Snowy,2023-01-04 14:23:53.086617,,10.0,,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+1320.0,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,,0.0,0.0,0.0,No,No,Legs,No,,Snowy,2021-02-05 20:56:13.154630,2021-08-25 20:56:13.154630,5.0,23.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+1390.0,Other,J. 10 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Sunny,2022-10-08 02:32:57.515503,2022-11-11 02:32:57.515503,11.0,65.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+1984.0,Other,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,264.0,0.0,0.0,0.0,330.0,Yes,Yes,Legs,Yes,Motorcycle,Rainy,2020-04-11 08:15:44.828965,2021-02-19 08:15:44.828965,16.0,76.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+290.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2020-01-01 00:00:00.000000,2020-04-21 00:00:00.000000,13.0,35.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+495.0,Rear end - Clt pushed into next vehicle,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,,No,Multiple,No,Car,Snowy,2020-01-19 02:34:58.499699,2021-01-05 02:34:58.499699,5.0,62.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Female
+1270.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,750.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Rainy,2021-06-04 17:45:48.789757,2022-04-16 17:45:48.789757,9.0,24.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Male
+3065.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,794.35,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-01-18 21:51:31.578315,2023-09-12 21:51:31.578315,15.0,52.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Other
+3208.0,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,0.0,0.0,1656.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,290.0,Yes,Yes,Legs,Yes,Truck,Rainy,2020-03-06 17:06:55.523104,2020-04-07 17:06:55.523104,17.0,48.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Snowy,2020-10-31 07:47:48.333666,2021-05-28 07:47:48.333666,19.0,55.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Female
+1207.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Multiple,Yes,Truck,Sunny,2020-09-03 11:56:06.673334,2021-01-13 11:56:06.673334,5.0,73.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Sunny,2022-02-21 17:11:49.341868,2022-06-07 17:11:49.341868,18.0,49.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+,,G. 7 months,,0.0,150.0,906.0,0.0,0.0,0.0,0.0,46.17,0.0,0.0,895.0,0.0,0.0,0.0,0.0,245.0,No,Yes,Legs,Yes,Truck,,2023-04-17 23:43:34.842968,2023-05-20 23:43:34.842968,2.0,52.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Female
+840.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Car,Sunny,2020-12-26 09:36:06.913382,2021-02-07 09:36:06.913382,11.0,78.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+706.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,24.0,275.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2021-08-02 10:39:11.990398,2021-11-17 10:39:11.990398,15.0,45.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+943.9,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,5.88,576.78,No,Yes,Multiple,No,Car,Snowy,2023-05-28 00:00:51.850370,2024-02-17 00:00:51.850370,2.0,61.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2021-01-08 06:00:56.171234,2021-08-22 06:00:56.171234,15.0,22.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Female
+3396.0,Rear end,L. 12 months,0.0,0.0,0.0,1960.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,506.0,No,Yes,Legs,Yes,Car,Rainy,2021-04-10 12:59:11.750350,2021-10-06 12:59:11.750350,3.0,47.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Female
+984.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,464.0,No,Yes,Arms,No,Car,Rainy,2022-01-15 00:59:03.108621,2022-08-25 00:59:03.108621,19.0,39.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+495.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2021-07-24 02:21:08.893778,2021-11-26 02:21:08.893778,12.0,34.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+272.12,Other side reversed into Clt's vehicle,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.12,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2021-05-10 00:56:10.274054,2022-02-10 00:56:10.274054,3.0,27.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Female
+1330.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,,0.0,,0.0,0.0,0.0,0.0,25.0,0.0,0.0,520.0,0.0,0.0,0.0,375.0,0.0,No,Yes,Hips,No,Truck,Sunny,2020-10-05 14:58:09.817963,2021-03-21 14:58:09.817963,3.0,24.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+3610.94,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,2189.82,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,46.12,0.0,480.0,No,Yes,Legs,No,Motorcycle,Snowy,2022-08-19 03:56:29.717943,2023-01-17 03:56:29.717943,6.0,21.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+1020.0,Rear end,E. 5 months,0.0,0.0,0.0,1103.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,2020-04-13 23:20:49.449889,2020-05-24 23:20:49.449889,11.0,59.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+958.9,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,60.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,14.4,455.0,No,Yes,Multiple,No,Motorcycle,Sunny,2022-11-15 22:47:59.135827,2023-09-11 22:47:59.135827,1.0,44.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+1016.12,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,244.0,0.0,0.0,520.0,0.0,0.0,0.0,51.12,426.6,No,Yes,,Yes,Truck,Sunny,2020-10-09 17:06:03.672734,2020-11-13 17:06:03.672734,15.0,24.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Female
+1965.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2020-03-11 09:15:57.071414,2021-01-19 09:15:57.071414,6.0,40.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Sunny,2022-10-03 10:23:55.967193,2023-08-03 10:23:55.967193,18.0,28.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+1829.2,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,51.84,574.0,No,Yes,Multiple,Yes,Car,Sunny,2023-05-21 13:48:27.221444,2024-01-07 13:48:27.221444,10.0,70.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2021-09-18 04:09:27.473494,2022-04-21 04:09:27.473494,0.0,25.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Female
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2020-02-12 15:22:21.628325,2020-12-22 15:22:21.628325,8.0,25.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+1984.0,Other,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,264.0,0.0,0.0,0.0,330.0,Yes,Yes,Legs,No,Motorcycle,Rainy,2020-06-07 07:05:44.948989,2020-09-16 07:05:44.948989,4.0,54.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+1207.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Arms,No,Motorcycle,Rainy,2020-07-20 19:29:48.117623,2020-09-15 19:29:48.117623,16.0,22.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Other
+1390.0,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,625.0,No,No,Legs,Yes,Truck,Sunny,2020-10-26 08:38:12.938587,2021-05-29 08:38:12.938587,0.0,24.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Female
+920.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,57.6,0.0,462.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2023-03-28 20:04:39.415883,2023-08-31 20:04:39.415883,16.0,39.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+1615.0,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,225.0,No,Yes,Legs,Yes,Truck,Rainy,2023-03-15 16:39:16.311262,2023-05-18 16:39:16.311262,11.0,53.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Arms,,Motorcycle,Rainy,,2022-11-09 00:34:51.298259,12.0,,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Male
+,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,495.0,0.0,0.0,,0.0,305.0,No,No,Legs,No,Truck,Sunny,2022-05-11 20:44:41.816363,2023-04-15 20:44:41.816363,10.0,41.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+2270.0,Rear end,J. 10 months,0.0,0.0,0.0,1400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2020-07-31 21:51:14.294858,2020-10-01 21:51:14.294858,12.0,68.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+705.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Legs,No,Car,Rainy,2023-08-06 23:17:56.615323,2023-11-08 23:17:56.615323,12.0,19.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2022-01-16 05:01:18.495699,2022-12-23 05:01:18.495699,5.0,65.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+421.99,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,161.99,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2020-12-01 20:48:43.784756,2020-12-27 20:48:43.784756,5.0,29.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+1235.0,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,1805.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2021-05-21 17:18:44.144828,2021-09-19 17:18:44.144828,19.0,64.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Other
+,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,1558.0,0.0,0.0,0.0,0.0,,0.0,,520.0,,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2020-10-30 03:45:32.946589,2020-12-19 03:45:32.946589,9.0,59.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+975.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,,No,Yes,Legs,No,Truck,Rainy,2022-04-30 11:22:41.792358,2023-01-07 11:22:41.792358,18.0,72.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Female
+1425.0,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,530.0,No,Yes,Hips,No,Truck,Sunny,2023-11-14 13:30:18.363672,2023-12-20 13:30:18.363672,2.0,43.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+1390.0,Other side pulled out of side road,A. 1 month,0.0,0.0,1000.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Car,Sunny,2022-01-11 19:52:50.794158,2022-10-27 19:52:50.794158,6.0,55.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+1625.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,880.0,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,225.0,No,Yes,Arms,Yes,Car,,2023-07-13 03:29:59.639927,2023-10-21 03:29:59.639927,4.0,73.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Female
+3120.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,2000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,225.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2020-12-28 17:40:37.687537,2021-11-17 17:40:37.687537,7.0,62.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+567.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,188.0,No,Yes,Legs,No,Car,Snowy,2020-08-13 11:15:29.705941,2021-07-08 11:15:29.705941,4.0,79.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+1515.0,Other side overtook and hit Clt when pulling in,J. 10 months,0.0,0.0,0.0,25.0,0.0,0.0,50.0,0.0,0.0,,0.0,1390.0,0.0,0.0,0.0,0.0,50.0,No,Yes,,,Motorcycle,Sunny,2021-07-13 14:00:50.410082,2021-11-26 14:00:50.410082,11.0,23.0,4.0,Side collision at an intersection.,,Yes,Yes,Female
+1172.95,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,446.95,0.0,0.0,520.0,0.0,0.0,0.0,0.0,300.0,No,Yes,Multiple,Yes,Car,Sunny,2022-09-23 12:04:45.177035,2023-04-05 12:04:45.177035,3.0,40.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,Yes,Motorcycle,Rainy,2021-12-30 20:29:43.076615,,18.0,19.0,1.0,Rear-ended at a stoplight.,,No,Yes,Female
+963.0,Rear end,F. 6 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,,0.0,468.0,No,No,Legs,No,Car,Rainy,2022-10-01 16:20:32.886577,2023-07-07 16:20:32.886577,17.0,43.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+895.0,Rear end,H. 8 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,,Yes,Arms,Yes,Car,Snowy,2022-11-01 08:19:46.797359,2023-09-23 08:19:46.797359,2.0,31.0,,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+1694.0,Rear end - Clt pushed into next vehicle,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,179.0,0.0,0.0,0.0,742.0,Yes,Yes,Multiple,Yes,,Sunny,,2021-02-13 06:24:16.131226,6.0,35.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+2771.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,2170.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Legs,No,Truck,Snowy,2022-05-06 00:33:24.880976,2022-08-24 00:33:24.880976,7.0,55.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Female
+2540.0,Other side pulled out of side road,,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Snowy,2020-05-02 01:55:47.949589,2020-09-28 01:55:47.949589,14.0,74.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+1939.75,Other side turned across Clt's path,J. 10 months,,0.0,0.0,,0.0,0.0,0.0,18.7,1.05,0.0,0.0,1390.0,0.0,0.0,,0.0,730.0,No,Yes,Multiple,No,Car,Rainy,2023-01-09 06:32:54.634926,2023-10-01 06:32:54.634926,16.0,49.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+2271.26,Rear end,E. 5 months,0.0,0.0,0.0,1000.0,0.0,68.31,0.0,0.0,528.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,566.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2023-12-19 14:37:59.975995,2024-05-29 14:37:59.975995,18.0,79.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+3428.0,,R. 18 months,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3005.0,0.0,0.0,0.0,523.2,322.0,No,,Arms,No,Truck,Rainy,2020-08-18 03:24:31.254250,2021-02-21 03:24:31.254250,3.0,,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,0.0,No,Yes,,Yes,Motorcycle,Snowy,2021-06-30 10:35:27.305461,2021-11-06 10:35:27.305461,15.0,76.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+2767.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,1810.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,12.0,0.0,615.0,No,Yes,Multiple,No,Truck,Snowy,2023-09-02 13:09:16.671334,2023-12-19 13:09:16.671334,12.0,75.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+2125.0,Other side turned across Clt's path,O. 15 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Rainy,2021-08-14 10:02:19.707941,2021-10-21 10:02:19.707941,11.0,31.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Rainy,2021-12-15 08:59:49.197839,2022-02-19 08:59:49.197839,3.0,47.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Other
+,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,,150.0,No,,Arms,No,Motorcycle,Rainy,2023-11-09 14:20:42.968593,2024-04-01 14:20:42.968593,11.0,30.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Female
+1390.0,Rear end,J. 10 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,1.5,0.0,,No,Yes,Multiple,,Truck,,2020-06-12 13:15:54.190838,2020-08-04 13:15:54.190838,16.0,57.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+570.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,10.0,400.0,No,Yes,Legs,Yes,Car,Rainy,2022-02-13 05:55:27.785557,2022-06-21 05:55:27.785557,8.0,48.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Other
+978.4,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,23.4,0.0,518.0,No,Yes,Legs,No,Motorcycle,Snowy,2023-02-14 04:42:17.787557,2024-01-01 04:42:17.787557,11.0,54.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Female
+994.8,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.8,150.0,No,No,Arms,Yes,Truck,Rainy,2020-06-06 10:04:03.408681,2020-12-30 10:04:03.408681,14.0,62.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Other
+1820.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2023-10-20 17:42:21.388277,2024-09-04 17:42:21.388277,19.0,55.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Female
+642.75,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,51.0,163.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2022-07-04 21:29:03.468693,2023-02-05 21:29:03.468693,1.0,39.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Other
+992.2,Rear end,F. 6 months,0.0,0.0,0.0,490.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,7.2,0.0,No,No,Multiple,Yes,Truck,Snowy,2022-08-18 13:55:22.024404,2022-10-25 13:55:22.024404,8.0,76.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Male
+1771.6,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1750.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,21.6,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2022-02-01 06:32:20.068013,2022-04-04 06:32:20.068013,13.0,45.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Other
+240.0,Rear end - 3 car - Clt at front,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Motorcycle,Sunny,2023-12-05 14:10:55.331066,2024-07-02 14:10:55.331066,3.0,75.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Female
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Snowy,2021-07-21 18:16:38.119623,2022-06-23 18:16:38.119623,3.0,76.0,1.0,Swerved to avoid another vehicle.,,No,Yes,Male
+260.0,Other side reversed into clt's stationary vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Rainy,2022-07-07 12:34:08.089617,2023-05-30 12:34:08.089617,5.0,78.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Female
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2022-03-16 11:55:49.389877,2022-05-07 11:55:49.389877,4.0,36.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+690.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,4.5,235.0,No,Yes,Multiple,Yes,Car,Snowy,2022-08-10 02:39:00.468093,2022-12-04 02:39:00.468093,16.0,60.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+954.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,200.0,No,No,Legs,Yes,Truck,Sunny,2023-04-14 11:36:48.681736,2023-06-18 11:36:48.681736,12.0,76.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+1161.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,96.0,0.0,0.0,170.0,No,Yes,Arms,No,Motorcycle,Snowy,2021-07-07 10:48:59.627925,2021-11-14 10:48:59.627925,19.0,33.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+730.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2021-12-31 03:30:16.923384,2022-06-26 03:30:16.923384,16.0,22.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2022-04-06 05:35:52.510502,2023-01-09 05:35:52.510502,18.0,61.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Female
+1595.0,Rear end - Clt pushed into next vehicle,I. 9 months,0.0,0.0,0.0,2130.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2023-02-05 03:24:48.537707,2023-07-18 03:24:48.537707,0.0,66.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+240.0,Rear end,A. 1 month,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Snowy,2020-01-14 17:26:30.798159,2020-12-11 17:26:30.798159,16.0,19.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+840.0,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Rainy,2021-11-21 10:13:33.762752,2022-04-22 10:13:33.762752,2.0,27.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+520.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2021-10-20 21:12:38.311662,2022-10-05 21:12:38.311662,13.0,64.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+753.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,109.2,238.0,No,Yes,Arms,Yes,Truck,Snowy,2023-09-26 11:55:32.106421,2024-05-19 11:55:32.106421,11.0,36.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Snowy,2020-08-07 22:04:46.617323,2021-01-12 22:04:46.617323,14.0,37.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+1101.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,168.0,0.0,0.0,0.0,135.0,Yes,No,Legs,No,Motorcycle,Snowy,2022-03-29 08:20:38.647729,2023-02-19 08:20:38.647729,5.0,46.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+959.8,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,64.8,0.0,No,Yes,Arms,No,Motorcycle,Rainy,2023-09-19 18:42:33.630726,2024-01-03 18:42:33.630726,19.0,42.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+1465.0,Other side drove on wrong side of the road,H. 8 months,0.0,0.0,0.0,560.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,270.0,No,Yes,Arms,Yes,Car,Snowy,2022-12-02 14:20:08.401680,2023-10-04 14:20:08.401680,1.0,34.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2020-04-27 09:46:46.401280,2021-01-07 09:46:46.401280,3.0,68.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+,Rear end,E. 5 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2021-09-01 05:36:44.360872,2022-08-25 05:36:44.360872,,68.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+520.0,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2021-10-12 09:56:16.755351,2022-02-02 09:56:16.755351,12.0,30.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Female
+734.4,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,14.4,0.0,No,Yes,Hips,Yes,Truck,Rainy,2022-09-22 22:03:37.483496,2022-10-22 22:03:37.483496,16.0,62.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+758.0,Other side pulled out of side road,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Arms,No,Truck,Sunny,2022-05-23 06:06:41.840368,2022-06-04 06:06:41.840368,5.0,33.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+495.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Sunny,2023-09-18 00:39:10.550110,2024-03-13 00:39:10.550110,10.0,71.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+2645.0,Rear end,G. 7 months,0.0,0.0,0.0,1950.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,465.0,No,Yes,Legs,No,Motorcycle,Rainy,2020-12-01 13:48:09.937987,2021-11-04 13:48:09.937987,18.0,70.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Other
+845.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2020-01-19 02:34:58.499699,2020-03-05 02:34:58.499699,15.0,52.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Female
+739.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,244.0,No,No,Hips,No,Motorcycle,Sunny,2023-12-13 11:26:09.193838,2024-06-01 11:26:09.193838,7.0,53.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+889.6,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Multiple,Yes,Truck,Sunny,2022-07-09 20:38:38.863772,2022-11-16 20:38:38.863772,0.0,76.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2020-10-21 09:28:37.543508,2021-06-23 09:28:37.543508,9.0,56.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+1855.03,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,903.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,47.03,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2021-08-16 04:05:42.788557,2022-08-04 04:05:42.788557,1.0,20.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+1425.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,180.0,No,Yes,Hips,No,Motorcycle,Rainy,2021-01-21 02:25:45.429085,2021-08-12 02:25:45.429085,18.0,26.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+989.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,520.0,0.0,0.0,0.0,,748.0,No,Yes,Arms,No,Motorcycle,Rainy,2021-08-30 18:33:55.127025,2022-04-13 18:33:55.127025,13.0,57.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Female
+1330.0,Other side reversed into Clt's vehicle,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,10.0,0.0,No,No,Hips,No,Motorcycle,Rainy,2020-08-07 08:03:38.923784,2020-10-26 08:03:38.923784,2.0,78.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+2544.0,Other side turned across Clt's path,N. 14 months,0.0,0.0,0.0,1188.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2040.0,0.0,0.0,0.0,0.0,,No,No,Legs,Yes,Motorcycle,Sunny,2023-04-25 06:57:41.012202,2024-02-29 06:57:41.012202,8.0,,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+1707.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,1187.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Snowy,2020-07-10 21:10:37.327465,2020-08-14 21:10:37.327465,7.0,70.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Male
+570.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Hips,Yes,Car,Rainy,2021-04-29 19:36:25.637127,2021-06-20 19:36:25.637127,10.0,63.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+1255.23,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,360.23,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,57.49,No,Yes,Legs,No,Car,Rainy,2020-07-23 10:34:52.738547,2020-12-31 10:34:52.738547,14.0,69.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+520.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2020-11-11 10:09:14.510902,2021-02-03 10:09:14.510902,5.0,77.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+903.16,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,895.0,0.0,0.0,8.16,,0.0,No,Yes,Arms,Yes,,Snowy,2021-09-21 16:16:13.634726,2022-08-15 16:16:13.634726,1.0,46.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Female
+1027.85,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.4,0.0,520.0,0.0,0.0,,29.1,464.35,,Yes,Hips,Yes,Motorcycle,Snowy,2021-03-25 18:28:44.024804,2021-04-20 18:28:44.024804,,22.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Sunny,2022-06-04 12:30:23.404680,2023-01-15 12:30:23.404680,2.0,20.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+940.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,630.0,No,Yes,Legs,No,Motorcycle,Snowy,2021-08-02 03:38:38.143628,2022-06-15 03:38:38.143628,17.0,27.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Male
+1819.85,Rear end,F. 6 months,0.0,0.0,0.0,1112.0,0.0,0.0,0.0,0.0,659.75,0.0,0.0,520.0,0.0,0.0,0.0,20.1,0.0,No,Yes,Legs,No,Truck,Sunny,2020-04-01 16:57:07.885577,2020-09-02 16:57:07.885577,13.0,48.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Female
+2988.6,Rear end,G. 7 months,0.0,0.0,0.0,1890.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,33.6,0.0,460.0,Yes,Yes,Legs,Yes,Truck,Rainy,2022-06-18 19:58:01.896379,2023-04-07 19:58:01.896379,16.0,28.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+1002.97,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,107.97,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Sunny,2023-10-14 07:29:56.759351,2024-01-17 07:29:56.759351,1.0,34.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Male
+868.7,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.25,0.0,0.0,495.0,0.0,0.0,0.0,0.0,474.45,No,No,Arms,No,Car,Snowy,2021-11-06 19:45:21.424284,2022-06-19 19:45:21.424284,18.0,57.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+1390.0,Rear end,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Sunny,2021-09-15 13:04:22.852570,2022-06-09 13:04:22.852570,8.0,58.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Other
+990.0,Rear end,A. 1 month,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Snowy,2021-04-26 14:30:13.322664,2021-06-06 14:30:13.322664,7.0,25.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+1110.0,Rear end,H. 8 months,0.0,0.0,0.0,1363.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Sunny,2022-07-29 03:15:52.750550,2022-12-09 03:15:52.750550,9.0,69.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
+599.95,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.95,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2023-01-14 19:43:37.723544,2023-03-21 19:43:37.723544,8.0,77.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+820.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.27,300.0,No,Yes,Hips,Yes,Truck,Sunny,2021-12-24 17:17:52.294458,2022-07-22 17:17:52.294458,7.0,19.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Male
+1348.25,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,508.25,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Rainy,2023-04-02 19:14:14.810962,2023-09-02 19:14:14.810962,6.0,21.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+1165.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Legs,Yes,Car,Snowy,2021-06-02 09:41:18.015603,2021-11-21 09:41:18.015603,5.0,79.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+915.43,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.43,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Rainy,2021-07-28 04:29:02.748549,2022-06-18 04:29:02.748549,1.0,33.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Female
+483.42,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,18.42,35.0,238.0,No,Yes,Arms,Yes,Truck,Snowy,2021-05-31 01:36:47.241448,2021-07-29 01:36:47.241448,8.0,58.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+520.0,Other side drove on wrong side of the road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,0.0,0.0,No,Yes,Legs,Yes,Truck,Snowy,2023-01-19 04:52:05.425085,2023-07-22 04:52:05.425085,8.0,75.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+3486.9700000000003,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,1992.0,0.0,313.6,300.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,123.37,238.0,No,Yes,Legs,Yes,Truck,Rainy,2020-03-11 09:15:57.071414,2020-09-07 09:15:57.071414,18.0,58.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+240.0,Other side reversed into Clt's vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Rainy,2023-11-02 00:06:02.952590,2024-09-19 00:06:02.952590,,38.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Other
+260.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,,0.0,No,Yes,Multiple,Yes,Car,Sunny,2022-05-11 06:43:34.122824,2023-03-31 06:43:34.122824,1.0,,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Other
+945.0,Rear end,G. 7 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,50.0,No,Yes,Hips,No,Motorcycle,Sunny,2023-11-13 09:28:02.976595,2023-11-25 09:28:02.976595,18.0,75.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+377.0,Other,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,33.0,163.0,No,No,Multiple,Yes,Truck,Rainy,2023-11-25 01:50:36.847369,2024-02-01 01:50:36.847369,15.0,52.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+1208.14,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,688.14,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,2021-10-20 21:12:38.311662,2022-09-14 21:12:38.311662,13.0,31.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+728.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,173.0,0.0,0.0,60.0,0.0,,495.0,0.0,0.0,,0.0,0.0,No,No,Arms,Yes,Motorcycle,Rainy,2023-04-15 15:39:04.068813,2023-11-03 15:39:04.068813,19.0,32.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+390.0,Rear end,A. 1 month,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Rainy,2022-09-10 15:39:55.919183,2022-09-16 15:39:55.919183,0.0,23.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Male
+675.0,Other side turned across Clt's path,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,80.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Multiple,No,Car,Snowy,2020-04-16 21:26:27.917583,2020-05-01 21:26:27.917583,12.0,33.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Other
+260.0,Rear end,B. 2 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Rainy,2022-04-05 15:34:44.816963,2022-05-17 15:34:44.816963,1.0,40.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,1230.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Rainy,2020-12-31 15:46:16.155231,2021-01-31 15:46:16.155231,13.0,77.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+2495.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,2075.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2021-12-27 08:22:56.915383,2022-06-26 08:22:56.915383,0.0,48.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+2771.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,2170.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Hips,Yes,Car,Rainy,2023-10-29 11:59:16.791358,2024-07-17 11:59:16.791358,14.0,59.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Male
+1516.99,Other,H. 8 months,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,94.99,0.0,0.0,895.0,0.0,151.0,0.0,0.0,126.0,No,Yes,Hips,Yes,Car,Snowy,2022-11-18 06:52:29.909982,2023-09-03 06:52:29.909982,17.0,63.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+495.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Sunny,2022-10-25 08:06:14.474894,2022-11-15 08:06:14.474894,8.0,29.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Female
+1645.0,Other,H. 8 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Sunny,2023-12-14 08:27:50.734146,2024-06-13 08:27:50.734146,7.0,58.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+1080.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,185.0,No,Yes,Hips,,Motorcycle,Sunny,2023-08-12 05:28:05.857171,2024-02-12 05:28:05.857171,6.0,72.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+410.0,Rear end - 3 car - Clt at front,B. 2 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,,0.0,0.0,260.0,0.0,,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Sunny,2021-04-24 20:26:50.242048,2021-12-24 20:26:50.242048,8.0,,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Male
+2008.0,Rear end,J. 10 months,0.0,0.0,0.0,340.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Legs,No,Car,Sunny,2020-12-19 23:23:42.284456,2021-12-04 23:23:42.284456,8.0,29.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+950.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,455.0,No,No,Legs,Yes,Truck,Snowy,2023-10-05 13:13:01.356271,2024-03-02 13:13:01.356271,10.0,62.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Female
+1566.17,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,0.0,0.0,150.0,906.0,0.0,0.0,0.0,0.0,46.17,0.0,0.0,895.0,0.0,0.0,0.0,0.0,245.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2020-01-06 13:10:43.088617,2020-09-18 13:10:43.088617,3.0,72.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+887.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,495.0,,0.0,0.0,29.7,621.0,No,No,Multiple,No,Motorcycle,Snowy,2020-07-16 03:20:46.569313,2020-10-24 03:20:46.569313,6.0,30.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+4346.83,Other,I. 9 months,0.0,0.0,0.0,1102.85,0.0,5894.9,0.0,0.0,111.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,825.0,No,Yes,Hips,Yes,Car,Snowy,2023-07-31 13:05:31.986397,2023-09-24 13:05:31.986397,6.0,66.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Other
+4201.530000000001,Rear end,L. 12 months,0.0,0.0,0.0,1725.0,0.0,0.0,0.0,0.0,1035.0,0.0,0.0,1320.0,0.0,0.0,0.0,146.52,955.0,No,No,Hips,Yes,Car,Sunny,2020-06-26 13:42:58.835767,2020-12-29 13:42:58.835767,3.0,19.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+840.0,Rear end,A. 1 month,,0.0,0.0,1112.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Sunny,2020-01-18 19:34:24.652930,2020-12-03 19:34:24.652930,11.0,37.0,,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+1114.6,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2021-01-04 10:53:36.163232,2021-03-31 10:53:36.163232,16.0,72.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,0.0,,No,Yes,Multiple,Yes,Motorcycle,,2021-10-29 08:28:59.867973,2022-04-21 08:28:59.867973,19.0,,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+710.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,345.0,No,No,Legs,Yes,Car,Snowy,2020-12-03 00:50:59.171834,2020-12-25 00:50:59.171834,2.0,26.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+1675.0,,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1390.0,,0.0,0.0,0.0,285.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2021-04-20 11:18:22.540508,2021-12-20 11:18:22.540508,8.0,38.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Other
+493.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2021-04-19 21:17:14.846969,2021-06-18 21:17:14.846969,4.0,25.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+1224.15,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,869.85,0.0,0.0,520.0,0.0,0.0,0.0,109.2,400.0,No,Yes,Arms,No,Car,Snowy,2022-12-21 06:56:14.594918,2023-04-04 06:56:14.594918,19.0,56.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Female
+708.76,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,23.76,235.0,No,Yes,Legs,No,Truck,Rainy,2021-02-25 03:33:27.041408,2021-07-14 03:33:27.041408,15.0,54.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+260.0,Other side collided with Clt's parked vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2021-04-27 18:32:28.709741,2022-02-24 18:32:28.709741,7.0,46.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+1114.6,Rear end,G. 7 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,,No,Yes,Legs,No,Motorcycle,Sunny,2021-12-31 17:31:24.616923,2022-06-08 17:31:24.616923,15.0,36.0,3.0,Swerved to avoid another vehicle.,,Yes,Yes,Other
+1083.0,Rear end - 3 car - Clt at front,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,188.0,No,Yes,Multiple,Yes,Truck,Snowy,2022-08-12 17:44:05.089017,2023-04-01 17:44:05.089017,18.0,52.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Female
+3210.0,Other,P. 16 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3100.0,0.0,0.0,0.0,0.0,110.0,No,Yes,Hips,Yes,Truck,Rainy,2020-03-23 01:38:30.942188,2020-06-08 01:38:30.942188,15.0,62.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+580.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,60.0,No,Yes,Legs,Yes,Truck,Snowy,2023-12-25 17:49:50.758151,2024-01-12 17:49:50.758151,17.0,55.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+723.5,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.91,0.0,,520.0,104.0,0.0,0.0,0.0,,Yes,Yes,Arms,Yes,Truck,Sunny,2020-10-26 01:37:39.091818,2020-11-17 01:37:39.091818,14.0,43.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Female
+995.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2023-11-08 03:17:53.734746,2024-05-10 03:17:53.734746,17.0,28.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2022-09-20 20:59:40.556111,2023-02-12 20:59:40.556111,13.0,53.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+2827.6,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,2116.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,3.6,350.0,Yes,Yes,Legs,No,Truck,Rainy,2020-12-26 16:36:40.760152,2021-02-02 16:36:40.760152,15.0,52.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Male
+3055.0,Rear end,F. 6 months,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,60.0,,0.0,0.0,0.0,Yes,Yes,Multiple,Yes,Car,Snowy,2023-05-06 09:19:07.189437,2024-02-11 09:19:07.189437,4.0,21.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Female
+1071.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,176.0,Yes,Yes,Legs,Yes,Motorcycle,Rainy,2023-10-22 04:45:10.622124,2024-08-05 04:45:10.622124,7.0,20.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2023-12-18 17:36:18.435687,2024-05-09 17:36:18.435687,15.0,62.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Rainy,2020-08-17 06:22:49.713942,,0.0,64.0,2.0,Lost control on a snowy road.,,Yes,Yes,Other
+1217.79,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.99,0.0,0.0,520.0,0.0,0.0,52.8,0.0,630.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2022-08-26 18:11:09.733946,2023-02-28 18:11:09.733946,10.0,29.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Sunny,2021-05-01 20:40:22.564512,2022-01-23 20:40:22.564512,10.0,49.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+3411.0,Rear end,G. 7 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,249.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Multiple,Yes,Car,Rainy,2022-05-28 12:16:51.082216,2023-02-21 12:16:51.082216,1.0,64.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+1813.69,Rear end,F. 6 months,0.0,0.0,0.0,2012.5,0.0,1412.32,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,8.69,370.0,No,Yes,Legs,No,Motorcycle,Snowy,2022-07-21 20:01:46.581316,2022-10-26 20:01:46.581316,18.0,43.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+708.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,235.0,No,Yes,Multiple,Yes,Truck,Sunny,2023-10-30 16:01:32.178435,2024-10-21 16:01:32.178435,4.0,60.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Male
+,Rear end - Clt pushed into next vehicle,H. 8 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Motorcycle,Snowy,2023-01-07 12:29:31.554310,2023-10-28 12:29:31.554310,2.0,60.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+988.0,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,132.0,No,Yes,Legs,No,Car,Rainy,2021-12-15 08:59:49.197839,2021-12-16 08:59:49.197839,7.0,30.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+945.0,Other side pulled out of side road,H. 8 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,,,Rainy,2023-01-11 21:37:59.255851,2023-11-02 21:37:59.255851,,61.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Snowy,2020-06-04 16:00:40.328065,2020-07-01 16:00:40.328065,12.0,55.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,1230.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,,Multiple,No,Motorcycle,Sunny,2020-04-27 02:46:12.554510,2020-06-02 02:46:12.554510,13.0,46.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Other
+520.0,Rear end,E. 5 months,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Snowy,2022-12-05 19:26:20.716143,2023-05-14 19:26:20.716143,0.0,72.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Other
+1245.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,100.0,625.0,No,Yes,Legs,Yes,Car,Snowy,2020-02-07 16:12:46.233246,2020-03-09 16:12:46.233246,4.0,69.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Other
+1411.25,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,25.5,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,2021-11-14 02:59:27.593518,2022-03-21 02:59:27.593518,6.0,68.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+1342.04,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,31.8,0.0,415.24,No,Yes,Multiple,Yes,Car,Sunny,2023-06-30 14:05:44.228845,2024-03-18 14:05:44.228845,5.0,36.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Female
+1615.0,Other,H. 8 months,0.0,0.0,0.0,110.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,665.0,No,No,Legs,No,Motorcycle,Snowy,2022-05-14 04:49:12.590518,2023-04-24 04:49:12.590518,14.0,76.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+240.0,Rear end,C. 3 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,,No,No,Multiple,,Truck,Sunny,,2022-01-22 15:28:07.297459,14.0,52.0,2.0,,Sprained ankle and wrist.,No,No,Female
+621.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,126.0,No,No,Arms,No,Truck,Rainy,2022-05-18 06:57:06.445289,2022-10-15 06:57:06.445289,7.0,65.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+,Rear end,J. 10 months,0.0,0.0,0.0,2400.0,0.0,,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,244.0,No,Yes,Arms,No,Truck,Sunny,2023-04-27 01:01:04.092818,2023-05-28 01:01:04.092818,1.0,58.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2022-12-01 17:18:26.861372,2023-03-11 17:18:26.861372,13.0,76.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+1195.0,Rear end,D. 4 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Sunny,2022-03-24 16:11:37.099419,2023-02-16 16:11:37.099419,15.0,44.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Male
+260.0,Rear end - 3 car - Clt at front,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2022-06-23 12:07:03.444688,2023-04-21 12:07:03.444688,9.0,63.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+832.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Arms,No,Truck,Rainy,2022-10-22 17:01:09.853970,2023-10-10 17:01:09.853970,14.0,79.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Male
+895.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,895.0,0.0,0.0,0.0,,0.0,No,Yes,Legs,Yes,,Snowy,2023-11-20 09:41:35.299059,2024-06-26 09:41:35.299059,3.0,77.0,3.0,,Concussion and bruised ribs.,No,Yes,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2020-12-22 07:28:13.058611,2021-09-01 07:28:13.058611,11.0,48.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2020-07-06 05:01:35.779155,2020-12-24 05:01:35.779155,9.0,20.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+945.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,425.0,No,Yes,Arms,No,Motorcycle,Sunny,2022-08-25 21:09:28.193638,2023-05-09 21:09:28.193638,1.0,52.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+260.0,Other side drove on wrong side of the road,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,2020-07-30 03:47:51.214242,2020-09-25 03:47:51.214242,3.0,41.0,1.0,,Concussion and bruised ribs.,No,Yes,Female
+1324.24,Rear end,G. 7 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,36.54,462.0,No,Yes,,Yes,Car,Rainy,2023-12-01 05:02:27.629525,,19.0,69.0,1.0,,Whiplash and minor bruises.,Yes,Yes,Other
+2540.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1914.73,0.0,0.0,840.0,0.0,0.0,0.0,0.0,275.0,No,No,Legs,Yes,Truck,Rainy,2020-08-03 05:55:45.069013,2020-08-08 05:55:45.069013,5.0,24.0,2.0,,Minor cuts and scrapes.,Yes,Yes,Male
+2195.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,3273.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2023-11-18 08:37:38.371674,2024-10-18 08:37:38.371674,13.0,68.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+1487.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,27.0,620.0,No,No,Hips,Yes,Motorcycle,Rainy,2021-01-14 09:12:46.953390,2021-05-08 09:12:46.953390,2.0,73.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Female
+1390.0,Other side pulled out of side road,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,,0.0,,0.0,No,Yes,Arms,Yes,Truck,Rainy,2022-10-13 08:43:06.757351,2023-07-05 08:43:06.757351,14.0,52.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+1789.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,750.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,144.0,No,Yes,Multiple,Yes,Car,Snowy,2020-04-09 00:11:14.054810,2020-09-29 00:11:14.054810,0.0,38.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+1009.0,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,114.0,No,Yes,Arms,No,Car,Rainy,2020-02-14 09:25:44.708941,2020-09-21 09:25:44.708941,18.0,18.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+1390.0,Rear end,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2021-02-19 00:21:36.259251,2021-09-12 00:21:36.259251,0.0,61.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+1468.0,Other,H. 8 months,,0.0,0.0,530.0,0.0,,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,283.0,No,Yes,Arms,Yes,Car,Snowy,2022-06-10 01:41:06.493298,2022-07-04 01:41:06.493298,12.0,70.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Female
+2108.99,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,419.0,0.0,0.0,895.0,0.0,,0.0,115.0,,No,Yes,Multiple,Yes,Car,Snowy,2020-05-04 10:00:18.723744,2020-10-21 10:00:18.723744,7.0,23.0,4.0,,Sprained ankle and wrist.,Yes,No,Male
+1529.0,Other,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Hips,Yes,Motorcycle,Sunny,2022-11-05 03:27:06.805361,2023-02-16 03:27:06.805361,17.0,56.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+3420.92,Other side pulled out of side road,R. 18 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,3005.0,0.0,0.0,0.0,10.92,405.0,No,No,,Yes,,Snowy,2020-11-27 11:40:16.083216,2021-01-26 11:40:16.083216,2.0,51.0,2.0,Lost control on a snowy road.,,Yes,No,Male
+240.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Rainy,2021-11-23 18:18:04.536907,2022-02-17 18:18:04.536907,17.0,35.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+915.0,Rear end,G. 7 months,0.0,0.0,0.0,179.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,20.0,No,Yes,Multiple,No,Truck,Sunny,2022-08-30 06:17:55.895179,2023-05-12 06:17:55.895179,19.0,79.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+1216.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,518.0,No,No,Hips,No,Car,Sunny,2020-10-04 03:55:20.584116,2021-03-18 03:55:20.584116,8.0,42.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+1920.0,Rear end,F. 6 months,0.0,0.0,0.0,2173.5,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2021-02-04 23:54:31.614322,2021-07-21 23:54:31.614322,5.0,32.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+1167.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,168.0,0.0,0.0,0.0,592.0,Yes,No,Multiple,No,Car,Sunny,2020-10-06 04:59:17.511502,2020-12-29 04:59:17.511502,19.0,64.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Other
+520.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2021-05-11 18:59:33.354670,2021-11-29 18:59:33.354670,1.0,49.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+1144.5,Rear end,E. 5 months,0.0,0.0,0.0,1558.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,101.5,473.7,No,Yes,Legs,No,Motorcycle,Sunny,2022-05-08 22:39:03.348669,2022-08-06 22:39:03.348669,3.0,59.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+2027.19,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,904.16,No,No,Multiple,Yes,Car,Sunny,2021-12-25 21:20:07.681536,2022-03-24 21:20:07.681536,17.0,66.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Female
+2028.48,Rear end,I. 9 months,0.0,0.0,0.0,1185.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,70.98,625.0,No,Yes,Hips,Yes,Car,Snowy,2021-01-15 13:15:02.340468,2021-05-15 13:15:02.340468,6.0,67.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+2771.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,2170.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Multiple,No,Truck,Rainy,2020-04-18 01:28:43.304660,2020-09-21 01:28:43.304660,10.0,35.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+1670.0,Rear end,G. 7 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,270.0,No,No,Multiple,No,Motorcycle,Rainy,2022-05-20 08:01:03.372674,2022-11-24 08:01:03.372674,4.0,48.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+260.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Snowy,2021-11-01 13:35:12.182436,2022-05-08 13:35:12.182436,7.0,46.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+1520.0,Other side collided with Clt's parked vehicle,I. 9 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,,0.0,,840.0,0.0,0.0,,0.0,455.0,No,No,Multiple,Yes,Car,Snowy,2023-11-02 07:06:36.799359,2024-07-21 07:06:36.799359,10.0,32.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Female
+1455.58,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,1.08,574.0,Yes,Yes,Hips,No,Motorcycle,Sunny,2021-09-12 14:58:44.384876,2021-11-03 14:58:44.384876,19.0,75.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Other
+1070.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2022-05-16 05:53:09.517903,2022-10-03 05:53:09.517903,19.0,40.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Snowy,2023-04-25 13:58:14.858971,2023-05-14 13:58:14.858971,14.0,55.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Other
+1105.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,210.0,No,Yes,Multiple,Yes,Truck,Sunny,2022-03-11 19:46:47.841568,2022-05-25 19:46:47.841568,2.0,58.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Female
+448.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,208.0,No,Yes,Multiple,No,Car,Rainy,2023-03-20 08:48:17.859571,2023-11-05 08:48:17.859571,6.0,28.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Female
+390.0,Rear end,A. 1 month,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Car,Rainy,2021-11-21 10:13:33.762752,2022-03-31 10:13:33.762752,7.0,32.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+2308.6,Rear end,N. 14 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2040.0,0.0,0.0,0.0,33.3,243.89,No,No,Legs,Yes,Car,Sunny,2020-08-10 13:09:51.238247,2020-10-04 13:09:51.238247,10.0,40.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+840.75,Other side overtook and pulled in too soon,,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,92.4,253.35,,No,Multiple,No,Motorcycle,Sunny,2023-04-01 08:11:25.577115,2023-12-28 08:11:25.577115,9.0,20.0,1.0,Side collision at an intersection.,,Yes,No,Male
+1550.25,Other side drove on wrong side of the road,E. 5 months,0.0,0.0,0.0,523.25,0.0,0.0,60.0,0.0,72.55,0.0,780.0,520.0,0.0,0.0,0.0,93.0,0.0,No,Yes,Multiple,No,Car,Sunny,2020-10-20 05:26:22.156431,2021-01-28 05:26:22.156431,19.0,36.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+1110.0,Rear end,H. 8 months,0.0,0.0,0.0,1363.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,,,0.0,0.0,No,No,Arms,No,Motorcycle,Rainy,2023-01-01 16:18:14.618923,2023-03-11 16:18:14.618923,8.0,18.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+840.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,,Hips,Yes,Truck,Sunny,2022-04-11 04:45:27.905581,2023-02-04 04:45:27.905581,14.0,41.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Snowy,2020-04-11 22:16:52.522504,2020-04-28 22:16:52.522504,19.0,66.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+,Other side turned across Clt's path,D. 4 months,0.0,0.0,0.0,0.0,,0.0,80.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Legs,Yes,Car,Sunny,2022-05-15 15:52:01.824364,2023-05-04 15:52:01.824364,,28.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Other
+845.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,,0.0,0.0,0.0,350.0,No,No,Legs,No,Truck,Snowy,2020-07-19 08:26:58.883776,2020-11-12 08:26:58.883776,14.0,47.0,2.0,,Fractured arm and leg.,No,No,Male
+240.0,Other side reversed into Clt's vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Sunny,2023-09-16 06:35:47.469493,2024-02-15 06:35:47.469493,3.0,67.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+360.0,Rear end,B. 2 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2022-07-01 23:23:25.001000,2023-05-27 23:23:25.001000,4.0,28.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+495.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,,0.0,No,No,Multiple,,Truck,,2023-07-25 09:53:41.204240,2023-11-18 09:53:41.204240,14.0,77.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+620.94,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,73.11,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,60.33,0.0,No,Yes,Legs,Yes,Car,Snowy,2022-03-15 14:54:07.849569,2022-04-14 14:54:07.849569,16.0,56.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+4201.530000000001,Rear end,L. 12 months,0.0,0.0,0.0,1725.0,0.0,0.0,0.0,0.0,1035.0,0.0,0.0,1320.0,0.0,0.0,0.0,146.52,955.0,No,No,Multiple,Yes,Truck,Snowy,2022-10-26 05:07:56.015203,2023-09-14 05:07:56.015203,7.0,18.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+790.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Multiple,No,Truck,Snowy,2022-11-24 10:04:20.692138,2023-01-14 10:04:20.692138,18.0,29.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+545.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,495.0,0.0,0.0,0.0,0.0,126.0,No,No,Legs,No,,Rainy,2022-03-08 21:41:09.373874,2022-05-07 21:41:09.373874,8.0,,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Male
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Snowy,2021-05-09 10:55:02.580516,2021-12-24 10:55:02.580516,9.0,42.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Male
+865.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,345.0,No,Yes,Hips,Yes,Truck,Rainy,2022-04-24 15:11:24.856971,2023-01-08 15:11:24.856971,4.0,25.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+945.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,0.0,425.0,No,Yes,Arms,Yes,,Sunny,,2024-01-13 00:49:50.038007,,32.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+807.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,4.35,455.0,No,No,Legs,No,Truck,,2023-05-05 19:17:59.495899,2023-05-10 19:17:59.495899,0.0,,4.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Hips,No,Motorcycle,Snowy,2020-07-18 18:25:51.190238,2020-08-15 18:25:51.190238,3.0,47.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+291.02,Rear end,A. 1 month,0.0,0.0,4.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,21.54,4.8,0.0,No,Yes,Hips,No,Truck,Sunny,2023-06-21 12:48:14.978995,2024-03-01 12:48:14.978995,4.0,78.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+723.5,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.91,0.0,0.0,520.0,104.0,0.0,0.0,0.0,239.6,Yes,Yes,Arms,No,Truck,Sunny,2022-05-02 12:26:38.719743,2023-05-01 12:26:38.719743,6.0,57.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+2235.0,Rear end,O. 15 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,110.0,No,Yes,Multiple,No,Car,Snowy,2023-01-01 23:18:48.465693,2023-08-20 23:18:48.465693,4.0,49.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Other
+895.0,Rear end,H. 8 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,,Yes,Legs,Yes,Motorcycle,Sunny,2022-08-16 19:51:58.943788,,,61.0,1.0,,Sprained ankle and wrist.,Yes,Yes,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,,Arms,Yes,Car,Snowy,2023-10-02 01:06:15.195039,2024-04-19 01:06:15.195039,7.0,52.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Other
+455.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,195.0,No,Yes,Legs,No,Car,Snowy,2023-03-21 19:51:07.093418,2024-02-16 19:51:07.093418,16.0,38.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Female
+2800.0,Rear end,F. 6 months,0.0,0.0,0.0,2280.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Sunny,2020-12-03 14:52:06.865373,2021-08-31 14:52:06.865373,0.0,48.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Other
+2627.7,Rear end,H. 8 months,0.0,0.0,0.0,1820.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,693.7,No,Yes,Hips,Yes,Motorcycle,Sunny,2022-06-12 23:46:44.960992,2023-05-17 23:46:44.960992,17.0,53.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Other
+646.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Multiple,Yes,Car,Sunny,2023-07-22 04:47:28.889777,2024-05-21 04:47:28.889777,11.0,44.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+1535.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,640.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Hips,Yes,Car,Sunny,2021-11-11 04:53:49.125825,2021-12-27 04:53:49.125825,2.0,61.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Male
+1395.0,Other side pulled out of side road,,,0.0,0.0,955.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2021-01-12 08:08:50.026005,2021-02-09 08:08:50.026005,,25.0,,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Female
+1695.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Arms,No,Truck,Rainy,2021-07-04 05:42:47.313462,2021-07-11 05:42:47.313462,13.0,76.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+2086.85,Rear end,G. 7 months,0.0,0.0,0.0,1700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,7.02,294.0,No,Yes,Legs,Yes,Car,Sunny,2021-03-31 14:40:00.960192,2021-11-18 14:40:00.960192,15.0,40.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+2215.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,1207.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Legs,No,Motorcycle,Rainy,2020-10-14 02:14:31.374274,2021-05-01 02:14:31.374274,17.0,79.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Snowy,2021-08-26 16:26:01.272254,2021-11-28 16:26:01.272254,9.0,40.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Other
+2324.0,Rear end,F. 6 months,0.0,0.0,0.0,1600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,350.0,Yes,Yes,Multiple,Yes,Truck,Sunny,2021-06-28 02:30:56.531306,2021-09-18 02:30:56.531306,14.0,59.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Male
+2854.81,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,1200.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,14.46,800.35,No,No,Legs,Yes,Motorcycle,Sunny,2021-07-31 23:36:22.756551,2021-10-27 23:36:22.756551,9.0,75.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Female
+520.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2021-05-22 00:19:17.991598,2021-11-24 00:19:17.991598,0.0,72.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Snowy,2021-12-17 03:03:12.278455,2022-08-17 03:03:12.278455,18.0,50.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,,Hips,Yes,Car,Rainy,2021-07-14 04:01:58.103620,2021-09-20 04:01:58.103620,1.0,30.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+895.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,1180.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,73.81,9.35,No,Yes,Multiple,No,Truck,Rainy,2020-07-23 10:34:52.738547,2021-05-30 10:34:52.738547,12.0,56.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+3060.0,Other side pulled from parked position into the path of clt's vehicle,G. 7 months,0.0,0.0,0.0,2230.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Arms,No,Car,Sunny,2023-03-27 16:02:24.028805,2023-09-30 16:02:24.028805,15.0,69.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+940.0,Other side pulled out of side road,D. 4 months,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,170.0,No,Yes,Legs,Yes,Car,Sunny,2021-08-28 10:29:24.352870,2022-04-24 10:29:24.352870,7.0,77.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+520.0,Other side reversed into clt's stationary vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2023-09-23 06:49:19.791958,2024-04-28 06:49:19.791958,2.0,52.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+520.0,Other side collided with Clt's parked vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Sunny,2023-01-01 02:17:06.925385,2023-04-19 02:17:06.925385,18.0,78.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+260.0,Rear end,B. 2 months,,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2020-04-25 01:42:15.627125,2021-02-26 01:42:15.627125,13.0,33.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Other
+1320.0,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Sunny,2021-07-25 06:23:24.280856,2021-09-01 06:23:24.280856,10.0,29.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+1135.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Legs,Yes,Car,Snowy,,2023-05-24 04:39:24.952990,11.0,78.0,3.0,Hit a deer on the highway.,,Yes,No,Female
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2022-10-05 04:27:19.047809,2023-07-08 04:27:19.047809,10.0,48.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+852.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,332.0,No,Yes,Arms,No,Truck,Rainy,2020-06-01 10:54:28.013602,2020-06-11 10:54:28.013602,10.0,22.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Female
+1425.0,Rear end,F. 6 months,0.0,0.0,,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,625.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2021-04-01 04:41:08.653730,2021-04-27 04:41:08.653730,17.0,67.0,,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Other
+705.0,Other side reversed into clt's stationary vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,294.0,No,No,Legs,Yes,Motorcycle,Sunny,2022-04-29 14:21:00.252050,2022-06-16 14:21:00.252050,9.0,57.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+1969.4,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,29.4,0.0,525.0,No,Yes,Legs,No,Car,Sunny,2022-04-12 01:47:09.445889,2023-03-25 01:47:09.445889,15.0,61.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+260.0,Other,,0.0,0.0,0.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Snowy,2020-06-09 08:09:41.876375,2020-06-23 08:09:41.876375,7.0,77.0,,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+945.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2021-03-04 17:48:07.057411,2021-06-12 17:48:07.057411,5.0,42.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+690.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,565.0,No,No,Legs,Yes,Car,Sunny,2020-08-30 23:49:20.512102,2021-03-05 23:49:20.512102,18.0,38.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Female
+895.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,,0.0,0.0,400.0,No,,,No,Motorcycle,Sunny,2023-08-02 00:08:21.220244,2023-08-14 00:08:21.220244,,,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Female
+1695.0,Rear end,F. 6 months,0.0,0.0,0.0,2415.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,1.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Rainy,2021-02-19 00:21:36.259251,2021-11-25 00:21:36.259251,14.0,65.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2020-03-24 05:40:46.329265,2021-02-28 05:40:46.329265,12.0,27.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+1025.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,130.0,No,Yes,Legs,No,Motorcycle,Rainy,2022-03-12 16:48:29.381876,2023-02-03 16:48:29.381876,0.0,40.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,,Yes,Multiple,No,Car,Snowy,2023-01-04 14:23:53.086617,2023-06-20 14:23:53.086617,1.0,34.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+575.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,80.0,No,,,Yes,Motorcycle,Rainy,2023-07-27 17:58:11.978395,2023-11-26 17:58:11.978395,12.0,59.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Other
+,Rear end,B. 2 months,0.0,,200.0,1547.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,,Yes,Hips,Yes,Car,Sunny,2021-02-26 00:35:08.581716,2021-06-01 00:35:08.581716,1.0,,4.0,,Fractured arm and leg.,Yes,No,Other
+3188.79,Other side pulled out of side road,J. 10 months,0.0,0.0,0.0,1600.0,,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,46.29,270.0,,Yes,Multiple,Yes,Truck,Rainy,2021-03-04 03:46:59.363872,2021-03-29 03:46:59.363872,10.0,42.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Other
+1520.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Rainy,2021-06-02 16:41:51.862372,2021-06-19 16:41:51.862372,12.0,19.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+1883.1,Rear end,H. 8 months,0.0,0.0,0.0,903.0,0.0,0.0,0.0,0.0,32.34,0.0,0.0,895.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Legs,Yes,Truck,Snowy,2022-12-03 11:21:49.941988,2023-01-01 11:21:49.941988,9.0,44.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Male
+670.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,99.0,0.0,0.0,50.4,238.0,Yes,No,Arms,Yes,Truck,Snowy,2020-09-23 22:35:35.947189,2021-08-12 22:35:35.947189,14.0,63.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Male
+2235.0,Rear end,O. 15 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,110.0,No,Yes,Legs,No,Motorcycle,Rainy,2020-03-24 19:41:54.022804,2021-02-28 19:41:54.022804,0.0,26.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Male
+1445.0,Rear end,H. 8 months,0.0,0.0,0.0,1903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2023-05-08 17:23:37.963592,2024-03-16 17:23:37.963592,13.0,76.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+1095.0,Other side drove on wrong side of the road,G. 7 months,0.0,0.0,0.0,556.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,Yes,Truck,Snowy,2021-09-01 19:37:52.054410,2021-11-12 19:37:52.054410,9.0,66.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Other
+1520.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,,0.0,1439.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Snowy,2023-07-16 15:36:45.801160,2024-04-11 15:36:45.801160,17.0,21.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Other
+2890.0,Rear end,K. 11 months,0.0,,0.0,1500.0,0.0,,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2021-06-10 20:57:39.571914,2022-02-15 20:57:39.571914,10.0,77.0,,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+379.9,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,135.88,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,4.02,0.0,No,No,Legs,Yes,Motorcycle,Snowy,2020-12-10 01:04:31.494298,2021-10-01 01:04:31.494298,6.0,43.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Other
+789.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,294.0,No,No,Legs,No,Motorcycle,Rainy,2022-01-15 00:59:03.108621,2022-06-08 00:59:03.108621,14.0,49.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+1170.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,495.0,0.0,0.0,0.0,0.0,,,No,Legs,No,Motorcycle,Snowy,2023-06-30 07:05:10.382076,2024-03-30 07:05:10.382076,2.0,46.0,,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Female
+2372.0,Other side pulled out of side road,G. 7 months,0.0,0.0,,903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,574.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2021-04-08 18:55:48.669733,2021-11-17 18:55:48.669733,1.0,39.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+1165.0,Rear end,F. 6 months,0.0,0.0,0.0,1033.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2021-07-25 06:23:24.280856,2021-10-08 06:23:24.280856,7.0,64.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+1558.75,Other side pulled out of side road,J. 10 months,0.0,0.0,,0.0,0.0,168.75,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,Yes,Car,Rainy,2021-06-02 09:41:18.015603,2021-09-12 09:41:18.015603,7.0,30.0,,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Other
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,,,0.0,0.0,,0.0,0.0,0.0,,0.0,,0.0,14.7,50.0,No,No,Legs,Yes,Truck,Rainy,2023-11-20 23:42:42.992598,2023-12-10 23:42:42.992598,10.0,40.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Female
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2020-10-15 06:16:46.761352,2021-02-09 06:16:46.761352,15.0,48.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Female
+1590.0,Rear end,K. 11 months,0.0,0.0,0.0,556.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Sunny,2020-12-17 08:18:37.663532,2021-06-09 08:18:37.663532,1.0,68.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+854.0,Other,B. 2 months,0.0,0.0,0.0,1651.4,0.0,0.0,0.0,0.0,139.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,125.0,No,No,Legs,No,Motorcycle,Snowy,2022-08-30 13:18:29.741948,2023-02-19 13:18:29.741948,4.0,58.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+1622.24,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,650.0,0.0,288.87,490.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,102.24,50.0,No,Yes,Hips,Yes,Truck,Rainy,2020-11-22 19:31:14.534906,2020-11-26 19:31:14.534906,6.0,53.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+1070.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,516.28,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,No,Car,Rainy,2020-02-27 05:50:33.966793,2021-02-01 05:50:33.966793,19.0,70.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+910.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,4.2,455.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2023-03-06 22:22:20.908181,2023-08-01 22:22:20.908181,12.0,57.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+1307.14,Other,H. 8 months,0.0,0.0,0.0,,0.0,0.0,0.0,,75.0,0.0,0.0,895.0,0.0,0.0,0.0,337.14,0.0,No,Yes,Legs,No,Motorcycle,Rainy,2020-06-02 07:56:09.553910,2020-09-24 07:56:09.553910,1.0,48.0,,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Male
+1020.0,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Legs,No,Truck,Snowy,2023-10-12 13:26:33.678735,2024-08-28 13:26:33.678735,2.0,77.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+1138.8,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,1430.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,No,Car,Sunny,2021-02-15 19:15:23.944788,2021-08-01 19:15:23.944788,8.0,32.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+1265.0,Other,I. 9 months,0.0,0.0,0.0,1237.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,370.0,No,Yes,Hips,Yes,Car,Sunny,2023-08-08 03:20:12.002400,2024-06-03 03:20:12.002400,9.0,31.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+2350.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,1771.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,19.67,290.0,No,Yes,Legs,No,Car,Rainy,2021-01-12 08:08:50.026005,2021-05-10 08:08:50.026005,12.0,52.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+520.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2020-12-14 17:13:33.042608,2021-03-24 17:13:33.042608,12.0,41.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+3198.26,Rear end,E. 5 months,0.0,0.0,0.0,1700.0,0.0,2746.26,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,,,2021-07-22 22:18:53.506701,2022-04-22 22:18:53.506701,4.0,47.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Male
+1570.0,Rear end,E. 5 months,0.0,0.0,0.0,1846.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,108.0,No,Yes,Multiple,Yes,Truck,Rainy,2022-12-03 11:21:49.941988,2023-05-27 11:21:49.941988,6.0,47.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+920.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,57.6,0.0,462.0,No,Yes,Hips,No,Car,Sunny,2023-10-29 18:59:50.638127,2024-04-05 18:59:50.638127,16.0,44.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+840.0,Rear end,B. 2 months,0.0,0.0,0.0,1516.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2021-10-09 11:50:38.287657,2022-05-24 11:50:38.287657,14.0,66.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Male
+1307.14,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.0,0.0,0.0,895.0,0.0,0.0,0.0,337.14,0.0,No,Yes,Arms,No,Car,Sunny,2023-05-27 09:59:44.156831,2023-07-04 09:59:44.156831,4.0,57.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+1613.2,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Multiple,Yes,Truck,Rainy,2022-11-11 13:39:31.434286,2023-05-28 13:39:31.434286,6.0,31.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+1603.68,Rear end - Clt pushed into next vehicle,,0.0,0.0,0.0,1555.0,,0.0,,0.0,488.68,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,,Arms,Yes,Motorcycle,Sunny,2020-10-24 00:33:42.164432,2021-03-09 00:33:42.164432,1.0,62.0,3.0,Rear-ended at a stoplight.,,No,Yes,Other
+1020.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,1558.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2022-07-09 20:38:38.863772,2022-10-21 20:38:38.863772,17.0,64.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Female
+1860.0,Rear end - Clt pushed into next vehicle,F. 6 months,,0.0,0.0,1490.0,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Hips,Yes,Car,Sunny,2022-11-14 11:45:09.901980,2023-05-26 11:45:09.901980,9.0,28.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Other
+731.0,Other side reversed into clt's stationary vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Hips,No,Motorcycle,Rainy,2023-05-13 16:33:13.358671,2024-01-18 16:33:13.358671,0.0,76.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Female
+524.6,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,294.0,No,,Hips,Yes,Truck,Rainy,,2023-04-16 09:15:22.504500,13.0,64.0,,Swerved to avoid another vehicle.,,Yes,No,Male
+1425.0,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,530.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2020-01-14 17:26:30.798159,2020-03-09 17:26:30.798159,18.0,61.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+753.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,29.4,284.0,,Yes,Arms,Yes,,Sunny,2022-12-05 19:26:20.716143,2023-11-14 19:26:20.716143,15.0,,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,2023-07-29 19:02:08.905781,2023-10-22 19:02:08.905781,18.0,73.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Male
+2777.5,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,2685.0,0.0,0.0,0.0,0.0,0.0,,0.0,840.0,0.0,0.0,0.0,0.0,333.0,No,No,Hips,No,Car,Rainy,2020-08-29 12:46:31.278255,2020-12-16 12:46:31.278255,5.0,71.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Other
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Rainy,2023-10-11 02:23:44.444888,2023-11-23 02:23:44.444888,11.0,38.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+1540.0,Rear end,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,175.0,No,Yes,Legs,Yes,Truck,Sunny,2021-09-02 02:38:25.901180,2021-11-12 02:38:25.901180,2.0,26.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+1452.0,Other side pulled on to roundabout,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,264.0,0.0,0.0,0.0,0.0,Yes,No,Hips,No,Truck,Rainy,2021-08-23 11:19:48.957791,2022-05-18 11:19:48.957791,6.0,71.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+1309.0,Other side pulled on to roundabout,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,,Yes,Yes,Multiple,,Car,,2020-08-26 21:41:26.657331,2020-10-24 21:41:26.657331,2.0,64.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+1550.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,160.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2023-10-19 20:40:39.847969,2023-12-02 20:40:39.847969,16.0,18.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+1300.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1725.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Hips,No,Truck,Rainy,2023-03-09 13:27:25.529105,2023-12-06 13:27:25.529105,14.0,61.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Male
+1238.8,Rear end,F. 6 months,0.0,0.0,0.0,903.0,0.0,0.0,390.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,3.8,No,Yes,Hips,No,Truck,Snowy,2022-12-10 18:35:56.111222,2022-12-24 18:35:56.111222,18.0,23.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+240.0,Other side pulled out of side road,B. 2 months,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,,0.0,0.0,No,No,Arms,,Car,Snowy,2021-06-12 22:01:36.499299,2021-10-02 22:01:36.499299,18.0,18.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Female
+1446.14,Rear end,G. 7 months,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,9.24,125.0,No,Yes,Legs,No,Motorcycle,Rainy,2023-11-27 16:55:41.468293,2024-10-06 16:55:41.468293,10.0,39.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Female
+2944.63,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,2790.0,0.0,2178.92,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,375.0,No,No,Legs,No,Motorcycle,Rainy,2022-06-28 11:16:38.839767,2023-02-11 11:16:38.839767,19.0,68.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+1700.0,,G. 7 months,0.0,0.0,200.0,1035.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2021-04-20 18:18:56.387277,2021-10-06 18:18:56.387277,1.0,71.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+973.12,Rear end,H. 8 months,0.0,0.0,0.0,0.0,,75.12,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,3.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2021-03-26 15:30:25.565113,2022-01-11 15:30:25.565113,,30.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+481.2,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,260.0,52.0,0.0,0.0,0.0,238.0,Yes,Yes,,,Truck,Snowy,2022-11-11 06:38:57.587517,2023-07-15 06:38:57.587517,18.0,,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Sunny,2021-07-10 01:54:04.248849,2022-04-02 01:54:04.248849,6.0,66.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+1220.0,Other side pulled out of side road,B. 2 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2021-02-23 09:30:03.960792,2022-01-26 09:30:03.960792,9.0,62.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Male
+620.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,125.0,No,No,Legs,Yes,Car,Rainy,2022-08-26 18:11:09.733946,2023-04-26 18:11:09.733946,11.0,58.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Motorcycle,Rainy,2022-10-25 01:05:40.628125,2023-04-01 01:05:40.628125,17.0,57.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Male
+1020.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,1558.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2022-06-12 09:45:37.267453,2023-04-08 09:45:37.267453,5.0,48.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+495.0,Other side collided with Clt's parked vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Rainy,2023-04-17 02:41:53.302660,2024-03-09 02:41:53.302660,19.0,32.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+1320.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Rainy,2020-10-18 11:22:59.075815,2020-11-05 11:22:59.075815,7.0,67.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+1789.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,750.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,144.0,No,Yes,Arms,No,Truck,Snowy,2021-02-21 22:27:14.726945,2021-05-15 22:27:14.726945,4.0,19.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Male
+840.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Snowy,2023-08-22 10:47:50.494098,2024-07-22 10:47:50.494098,2.0,70.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Male
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2022-06-12 23:46:44.960992,2023-01-29 23:46:44.960992,1.0,48.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+1595.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,356.0,No,Yes,Multiple,Yes,Truck,Snowy,2020-03-18 02:28:55.547109,2021-02-23 02:28:55.547109,5.0,43.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+1204.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Multiple,No,Truck,Sunny,2022-12-25 16:04:42.296459,2023-09-04 16:04:42.296459,6.0,19.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Male
+848.6,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,176.97,0.0,0.0,840.0,0.0,0.0,0.0,3.6,25.0,No,No,Hips,Yes,Truck,Snowy,2021-10-26 03:22:47.553510,2022-04-11 03:22:47.553510,7.0,28.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Male
+1018.0,Other,E. 5 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,180.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2023-02-05 17:25:56.231246,2023-03-19 17:25:56.231246,3.0,50.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+1265.0,Other,I. 9 months,0.0,0.0,0.0,1237.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,370.0,No,Yes,Hips,No,Car,Rainy,2022-08-26 18:11:09.733946,2023-05-02 18:11:09.733946,11.0,35.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Other
+973.12,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,75.12,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,3.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2021-08-20 13:14:10.490098,2022-04-25 13:14:10.490098,11.0,38.0,,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+260.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2022-07-07 05:33:34.242848,2023-04-19 05:33:34.242848,16.0,76.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+973.12,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,75.12,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,3.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2022-07-29 17:17:00.444088,2022-08-18 17:17:00.444088,18.0,48.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Male
+815.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,783.65,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,409.35,No,No,Arms,No,Truck,Snowy,2022-07-06 01:31:18.855771,2023-06-23 01:31:18.855771,8.0,43.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2023-12-02 02:04:09.169833,2024-01-13 02:04:09.169833,11.0,47.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+240.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Sunny,2020-12-31 22:46:50.002000,2021-12-11 22:46:50.002000,16.0,56.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+3445.0,Rear end - Clt pushed into next vehicle,I. 9 months,0.0,0.0,0.0,1880.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,1022.0,No,Yes,Arms,Yes,Truck,Snowy,2020-07-29 20:47:17.367473,2020-10-24 20:47:17.367473,9.0,38.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+1216.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,455.0,Yes,Yes,Hips,Yes,Motorcycle,Rainy,2020-01-25 05:46:49.281856,2020-10-12 05:46:49.281856,18.0,66.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Other
+959.8,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,64.8,0.0,No,Yes,Multiple,No,Car,Sunny,2023-11-13 02:27:29.129825,2024-09-14 02:27:29.129825,10.0,33.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Female
+800.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,350.0,No,No,Legs,Yes,Motorcycle,Snowy,2022-09-11 05:41:03.612722,2023-07-05 05:41:03.612722,19.0,24.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Male
+600.8,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,120.0,0.0,0.0,520.0,0.0,0.0,0.0,10.8,70.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2023-01-20 08:54:20.812162,2024-01-05 08:54:20.812162,12.0,39.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Male
+570.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,495.0,0.0,0.0,0.0,0.0,126.0,No,No,Legs,No,Car,Sunny,2022-09-09 11:37:40.532106,2023-05-07 11:37:40.532106,3.0,24.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Female
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2021-05-28 03:31:08.773754,2021-11-11 03:31:08.773754,14.0,19.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Other
+1906.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,1050.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Arms,No,Car,Rainy,2023-06-15 02:35:50.350070,2024-04-23 02:35:50.350070,11.0,54.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+1114.6,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2022-03-22 22:08:14.018803,2022-10-27 22:08:14.018803,9.0,31.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+859.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,455.0,No,No,Hips,Yes,Truck,Snowy,2022-08-17 23:54:14.330866,2022-12-28 23:54:14.330866,6.0,25.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+2345.0,Other,I. 9 months,0.0,0.0,0.0,2100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,No,Motorcycle,Rainy,2021-12-17 03:03:12.278455,2022-07-12 03:03:12.278455,1.0,46.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+1157.2,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,7.2,350.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2020-04-05 19:05:01.740348,2020-05-26 19:05:01.740348,6.0,61.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+1175.0,Rear end,F. 6 months,0.0,0.0,0.0,680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Snowy,2020-05-04 02:59:44.876975,2020-08-18 02:59:44.876975,7.0,24.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Male
+1301.0,Rear end,G. 7 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,6.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2020-08-12 14:13:48.165633,2021-02-12 14:13:48.165633,18.0,55.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+495.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Sunny,2023-03-06 22:22:20.908181,2023-09-23 22:22:20.908181,5.0,62.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+1390.0,,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Legs,No,Truck,Sunny,2020-06-26 06:42:24.988997,2020-07-07 06:42:24.988997,7.0,39.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+240.0,Other side reversed into clt's stationary vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Sunny,2021-06-24 21:24:44.216843,2022-03-05 21:24:44.216843,19.0,61.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+840.0,Rear end,A. 1 month,0.0,0.0,0.0,1547.9,0.0,0.0,0.0,0.0,0.0,,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2022-02-19 09:07:18.567713,2022-07-19 09:07:18.567713,3.0,34.0,4.0,Rear-ended at a stoplight.,,Yes,No,Female
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Rainy,2021-09-12 07:58:10.538107,2022-09-01 07:58:10.538107,19.0,33.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Male
+621.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,126.0,No,No,Legs,Yes,Car,Sunny,2021-01-14 16:13:20.800160,2022-01-04 16:13:20.800160,8.0,50.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+616.76,Rear end,B. 2 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,351.2,,0.0,260.0,52.0,0.0,0.0,5.56,0.0,Yes,Yes,Hips,No,Car,,2020-05-15 19:22:18.747749,2020-08-19 19:22:18.747749,4.0,56.0,,Lost control on a snowy road.,,No,Yes,Female
+1135.0,,H. 8 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Legs,,Truck,,2021-07-27 14:27:55.055011,2021-11-10 14:27:55.055011,5.0,,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Other
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2021-07-22 01:17:11.966393,2021-12-12 01:17:11.966393,18.0,55.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+481.2,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,52.0,0.0,0.0,0.0,238.0,Yes,Yes,Multiple,Yes,Car,Snowy,2022-01-11 12:52:16.947389,2022-06-26 12:52:16.947389,11.0,77.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+895.0,Other side pulled on to roundabout,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2021-11-20 06:11:18.375675,2021-11-21 06:11:18.375675,4.0,49.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+740.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,182.0,No,Yes,Legs,Yes,,Sunny,2021-08-18 12:10:13.562712,2021-10-03 12:10:13.562712,,70.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Other
+804.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,24.0,0.0,294.0,No,No,Hips,No,Car,Sunny,2020-12-11 19:07:54.574914,2021-08-10 19:07:54.574914,17.0,20.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Other
+1254.6,Other side drove on wrong side of the road,H. 8 months,0.0,0.0,0.0,3000.0,0.0,0.0,150.0,0.0,0.0,0.0,,895.0,0.0,0.0,,9.6,0.0,No,Yes,Hips,Yes,,Sunny,2023-02-22 22:59:13.190638,2024-02-01 22:59:13.190638,5.0,71.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+1570.58,Other side drove on wrong side of the road,,,0.0,0.0,1102.85,0.0,309.4,0.0,0.0,,0.0,0.0,895.0,179.0,0.0,0.0,14.43,0.0,Yes,Yes,Legs,Yes,Car,Sunny,2022-07-28 13:14:45.057011,,8.0,20.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+1060.0,Rear end - 3 car - Clt at front,A. 1 month,0.0,0.0,0.0,800.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Rainy,2022-03-23 12:09:21.712342,2022-03-26 12:09:21.712342,10.0,25.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+840.0,Other,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Car,Sunny,2020-08-14 22:18:18.939787,2021-01-03 22:18:18.939787,13.0,63.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+2258.0,Rear end - 3 car - Clt at front,I. 9 months,0.0,0.0,0.0,2016.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,244.0,Yes,Yes,Hips,No,Truck,Snowy,2022-09-13 20:46:08.233646,2022-11-13 20:46:08.233646,1.0,48.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+2771.0,Other side turned across Clt's path,,0.0,0.0,,2170.0,0.0,0.0,,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,,Yes,Arms,No,Truck,Sunny,2021-12-07 04:44:01.488297,2022-09-27 04:44:01.488297,13.0,72.0,,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Other
+1481.5,Other side drove on wrong side of the road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,,0.0,42.0,0.0,455.0,Yes,Yes,Arms,No,Car,Rainy,2023-04-05 17:19:53.278655,2023-11-16 17:19:53.278655,18.0,26.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+410.0,Rear end - 3 car - Clt at front,B. 2 months,0.0,0.0,0.0,1102.85,0.0,0.0,,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,,Yes,Multiple,Yes,Motorcycle,,2023-05-29 18:04:14.930986,2024-03-26 18:04:14.930986,9.0,22.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+624.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,0.0,Yes,Yes,Arms,Yes,Truck,Rainy,2021-12-13 07:55:52.270454,2022-06-01 07:55:52.270454,4.0,45.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+2500.0,Rear end,J. 10 months,0.0,0.0,0.0,1410.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2023-11-11 22:25:13.742748,2024-03-24 22:25:13.742748,3.0,32.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+1149.51,Other side collided with Clt's parked vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.0,0.0,0.0,520.0,0.0,0.0,0.0,10.5,520.01,No,Yes,Arms,Yes,Car,Snowy,2021-08-03 21:42:01.224244,2021-09-13 21:42:01.224244,6.0,66.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+1381.8,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,895.0,0.0,0.0,0.0,37.8,442.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2020-11-07 08:01:20.656131,2021-06-26 08:01:20.656131,12.0,44.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,37.8,,573.0,No,,Arms,,Car,Sunny,2020-10-02 16:52:31.350270,,9.0,59.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+800.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,555.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2020-01-09 04:15:47.709541,2020-05-27 04:15:47.709541,9.0,48.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+907.0,Rear end,E. 5 months,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,462.0,No,No,Multiple,Yes,Truck,Snowy,,2021-10-26 00:50:07.321464,3.0,76.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+1700.0,,B. 2 months,0.0,,0.0,1469.0,0.0,0.0,140.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,,Car,Snowy,2021-05-10 14:57:17.967593,2022-03-03 14:57:17.967593,15.0,57.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,2022-04-01 20:27:24.808961,2022-05-28 20:27:24.808961,14.0,35.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+2115.0,Rear end,H. 8 months,0.0,0.0,0.0,1851.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,150.0,No,No,Hips,No,Motorcycle,Rainy,2022-09-09 18:38:14.378875,2023-01-10 18:38:14.378875,10.0,55.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2021-12-27 15:23:30.762152,2022-08-24 15:23:30.762152,18.0,66.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+520.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2021-05-01 06:39:14.870974,2021-07-26 06:39:14.870974,2.0,71.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+520.0,,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Snowy,2023-09-11 00:25:38.227645,2024-03-05 00:25:38.227645,14.0,21.0,4.0,Rear-ended at a stoplight.,,No,Yes,Female
+520.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Snowy,2021-04-03 12:45:39.427885,2021-06-05 12:45:39.427885,15.0,38.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Male
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2021-05-21 03:17:36.451290,2021-06-29 03:17:36.451290,13.0,64.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Other
+1216.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,455.0,Yes,Yes,Multiple,Yes,Truck,Snowy,2020-08-09 16:08:09.697939,2020-12-25 16:08:09.697939,4.0,59.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+2045.0,Rear end,J. 10 months,0.0,0.0,0.0,650.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,5.0,No,Yes,Legs,No,Truck,Rainy,2021-09-21 23:16:47.481496,2022-05-20 23:16:47.481496,16.0,40.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+950.0,Other side changed lanes and collided with clt's vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,405.0,No,No,Arms,No,Truck,Rainy,2021-01-29 13:42:06.985397,2021-09-12 13:42:06.985397,17.0,62.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Other
+1070.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,516.28,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,No,Car,Sunny,2022-10-12 04:40:51.370274,2023-05-06 04:40:51.370274,18.0,39.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+840.0,Rear end,B. 2 months,0.0,,0.0,1516.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,,0.0,0.0,0.0,No,,Arms,No,Truck,Sunny,2021-01-05 07:55:17.703540,,0.0,18.0,,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+2195.0,Rear end - 3 car - Clt at front,G. 7 months,0.0,0.0,0.0,2030.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2021-06-05 07:46:56.483296,2021-07-02 07:46:56.483296,8.0,42.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+840.0,Rear end,H. 8 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,,0.0,0.0,No,No,Legs,No,Truck,Rainy,,2023-08-29 08:07:40.892178,13.0,71.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+1516.2,Rear end,F. 6 months,0.0,0.0,0.0,1444.4,0.0,0.0,250.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,1.2,238.0,No,Yes,Multiple,No,Motorcycle,Sunny,2022-01-31 09:30:38.527705,2022-08-17 09:30:38.527705,19.0,71.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Male
+1237.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,0.0,0.0,520.0,0.0,0.0,0.0,63.0,630.0,No,Yes,Hips,Yes,Truck,Sunny,2020-04-26 05:44:31.014202,2021-03-29 05:44:31.014202,19.0,58.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+580.0,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,1038.0,0.0,313.14,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,54.0,182.0,No,Yes,Legs,No,Car,Sunny,2022-02-07 02:43:37.003400,2022-05-25 02:43:37.003400,10.0,45.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+240.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,240.0,,0.0,0.0,0.0,0.0,No,No,Hips,No,Car,Snowy,2021-12-15 08:59:49.197839,2022-06-22 08:59:49.197839,,75.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,495.0,,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Rainy,2021-05-02 10:41:30.258051,2021-06-07 10:41:30.258051,19.0,54.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+1170.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Arms,No,Car,Sunny,2020-03-10 12:14:15.531106,2020-06-03 12:14:15.531106,4.0,28.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Other
+950.0,Other,D. 4 months,0.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,0.0,406.0,No,Yes,Legs,No,Motorcycle,Snowy,2022-10-29 17:14:42.176435,2023-04-02 17:14:42.176435,14.0,39.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+2028.48,Rear end,I. 9 months,0.0,0.0,0.0,1185.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,70.98,625.0,No,Yes,Legs,Yes,Truck,Snowy,2023-02-01 15:18:02.376475,2023-07-20 15:18:02.376475,11.0,71.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Male
+520.0,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2022-06-25 06:10:26.525305,2023-04-05 06:10:26.525305,13.0,72.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+1224.15,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,869.85,0.0,0.0,520.0,0.0,0.0,0.0,109.2,400.0,No,Yes,Multiple,Yes,Car,Sunny,2020-11-30 16:46:28.397679,2021-08-29 16:46:28.397679,10.0,42.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+995.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,475.0,No,Yes,Hips,Yes,Truck,Snowy,2021-03-30 17:38:19.419883,2021-05-04 17:38:19.419883,8.0,70.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+1371.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,574.0,Yes,Yes,Legs,Yes,Car,Rainy,2022-12-27 17:08:39.223844,2023-06-29 17:08:39.223844,19.0,38.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Other
+6976.96,Rear end,F. 6 months,0.0,0.0,0.0,,,0.0,0.0,0.0,6070.0,0.0,0.0,495.0,0.0,0.0,36.96,0.0,375.0,No,No,Hips,Yes,Truck,Snowy,2021-09-21 23:16:47.481496,2021-12-29 23:16:47.481496,7.0,53.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+2603.46,Rear end,G. 7 months,0.0,0.0,0.0,1540.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,895.0,0.0,0.0,0.0,17.46,135.0,No,Yes,Legs,No,Car,Snowy,2022-10-04 21:26:45.201040,2023-05-29 21:26:45.201040,11.0,75.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Female
+962.62,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,113.82,0.0,28.8,406.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2020-03-28 07:48:40.184036,2020-07-28 07:48:40.184036,2.0,37.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+567.98,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,28.8,50.0,No,Yes,Legs,Yes,Car,Snowy,2022-12-16 00:46:05.353070,2023-01-08 00:46:05.353070,14.0,33.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Other
+1555.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Legs,No,Car,Rainy,2023-03-29 17:06:20.956191,2023-05-31 17:06:20.956191,7.0,45.0,,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+291.02,Rear end,A. 1 month,0.0,0.0,4.68,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,260.0,0.0,0.0,21.54,4.8,0.0,No,Yes,Legs,Yes,,,2023-11-20 02:41:01.452290,2024-10-11 02:41:01.452290,6.0,,,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+1820.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Rainy,2020-03-13 10:19:53.998799,2020-08-10 10:19:53.998799,16.0,46.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Other
+1445.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1376.86,0.0,0.0,895.0,0.0,0.0,0.0,0.0,630.0,No,Yes,Hips,Yes,Truck,Rainy,2022-01-20 00:08:38.503700,2022-08-03 00:08:38.503700,11.0,67.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+1395.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,955.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2023-04-20 21:49:13.310662,2023-07-09 21:49:13.310662,19.0,43.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Other
+1147.0,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,78.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,174.0,No,Yes,Hips,No,Truck,Snowy,2023-06-16 13:38:39.583916,2024-04-26 13:38:39.583916,17.0,57.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Female
+910.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,48.6,375.0,No,Yes,Legs,Yes,Truck,Sunny,2023-09-28 20:00:02.880576,2024-02-28 20:00:02.880576,17.0,19.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+1570.4,Rear end,E. 5 months,0.0,0.0,0.0,680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,5.4,565.0,No,Yes,Hips,No,Car,Sunny,2022-04-15 06:53:21.760352,2022-05-02 06:53:21.760352,14.0,66.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Male
+669.14,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,94.14,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Hips,No,Motorcycle,Rainy,2020-07-30 03:47:51.214242,2020-09-07 03:47:51.214242,2.0,27.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Male
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Sunny,2020-06-15 04:20:58.811762,2021-05-14 04:20:58.811762,18.0,30.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+2456.18,Rear end,H. 8 months,0.0,0.0,0.0,1445.0,0.0,360.18,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,,No,Arms,Yes,Car,Snowy,2020-03-04 23:03:32.442488,2021-02-15 23:03:32.442488,14.0,32.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Rainy,2021-02-11 03:06:22.396479,2021-09-01 03:06:22.396479,15.0,26.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+700.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,,0.0,523.0,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,,0.0,,No,Yes,Hips,Yes,Truck,Snowy,2022-04-07 16:38:41.744348,2023-01-12 16:38:41.744348,16.0,44.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Female
+520.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Rainy,2021-09-11 17:57:02.844568,2021-12-08 17:57:02.844568,0.0,25.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+994.68,,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,895.0,0.0,0.0,0.0,4.68,125.0,No,Yes,Arms,No,Truck,Snowy,,,10.0,23.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Other
+1430.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,110.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Sunny,2023-03-14 05:36:27.077415,2023-12-31 05:36:27.077415,5.0,53.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+788.8,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,19.8,406.0,No,Yes,Hips,Yes,Truck,Sunny,2023-06-24 03:53:19.599919,2024-06-13 03:53:19.599919,8.0,67.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+780.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2022-06-21 04:02:32.670534,2022-08-30 04:02:32.670534,19.0,41.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Female
+1220.0,Rear end,F. 6 months,0.0,0.0,0.0,900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,10.0,No,Yes,Multiple,Yes,Truck,Snowy,2020-01-15 07:27:38.491698,2020-05-18 07:27:38.491698,15.0,20.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+2350.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,1771.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,19.67,290.0,No,Yes,Hips,Yes,Car,Rainy,2020-05-30 02:49:57.239447,2020-08-18 02:49:57.239447,5.0,43.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Other
+3516.0,Other side pulled out of side road,R. 18 months,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3005.0,0.0,0.0,0.0,0.0,511.0,No,No,Arms,Yes,Motorcycle,Rainy,2022-03-26 03:14:26.333266,2022-05-10 03:14:26.333266,11.0,53.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Male
+1512.0,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,325.0,No,No,Arms,Yes,Car,Rainy,2022-03-22 08:07:06.325265,2022-11-10 08:07:06.325265,18.0,38.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Female
+2195.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,1960.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2022-02-03 14:36:50.842168,2022-07-07 14:36:50.842168,12.0,30.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+470.43,Rear end,A. 1 month,0.0,0.0,150.0,0.0,0.0,0.0,0.0,0.0,66.33,0.0,0.0,240.0,0.0,0.0,0.0,14.1,0.0,No,No,Legs,No,Motorcycle,Snowy,2021-06-20 12:16:16.515303,2021-12-17 12:16:16.515303,12.0,69.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Other
+3610.94,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,2189.82,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,46.12,0.0,480.0,No,Yes,Legs,No,Motorcycle,Rainy,2023-09-26 04:54:58.259651,2023-10-27 04:54:58.259651,3.0,28.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Male
+495.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Snowy,2020-12-06 05:57:11.486297,2021-03-01 05:57:11.486297,8.0,25.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Male
+1417.04,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,413.0,0.0,0.0,520.0,0.0,0.0,0.0,14.04,574.0,No,Yes,Multiple,No,Car,Rainy,2023-12-30 16:59:26.153230,2024-02-13 16:59:26.153230,13.0,74.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+956.96,Rear end,E. 5 months,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,406.0,No,Yes,Legs,Yes,,Sunny,2021-10-18 20:08:41.384276,2022-09-06 20:08:41.384276,13.0,63.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+1002.97,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,107.97,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Snowy,2020-04-30 21:53:32.562512,2021-03-28 21:53:32.562512,16.0,63.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,,Rainy,2021-10-24 09:19:24.472894,2022-06-24 09:19:24.472894,4.0,65.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+1010.0,Rear end,D. 4 months,0.0,0.0,0.0,1200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2020-11-18 10:22:46.833366,2020-12-28 10:22:46.833366,18.0,31.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+3074.0,Rear end,H. 8 months,0.0,0.0,0.0,2137.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,50.0,Yes,Yes,Legs,Yes,Motorcycle,Rainy,2023-11-19 19:40:27.605521,2024-05-19 19:40:27.605521,1.0,50.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Male
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-09-22 09:47:38.251650,2024-07-15 09:47:38.251650,12.0,19.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+745.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,294.0,No,No,Arms,No,Truck,Sunny,2022-09-07 03:33:09.757951,2022-11-27 03:33:09.757951,10.0,77.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+,Other side collided with Clt's parked vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,,0.0,No,Yes,Arms,No,Truck,Rainy,2021-12-06 14:42:53.794758,2022-01-13 14:42:53.794758,1.0,69.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Female
+524.25,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,4.25,No,Yes,Arms,No,Car,Rainy,2021-07-18 20:10:59.651930,2022-07-09 20:10:59.651930,0.0,18.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Female
+1110.0,Other side changed lanes and collided with clt's vehicle,B. 2 months,0.0,0.0,750.0,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2020-02-29 06:54:30.894178,2020-04-26 06:54:30.894178,2.0,28.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+260.0,Other side reversed into clt's stationary vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2020-01-20 20:38:21.580316,2020-12-07 20:38:21.580316,11.0,23.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Other
+1342.04,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,895.0,0.0,0.0,31.8,0.0,,No,Yes,Hips,,Truck,Snowy,2020-05-30 09:50:31.086217,2020-06-29 09:50:31.086217,6.0,49.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+983.91,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.2,0.0,520.0,0.0,0.0,0.0,220.21,400.0,No,Yes,Hips,Yes,Truck,Snowy,2022-11-06 14:29:56.039207,2023-07-30 14:29:56.039207,0.0,32.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Male
+682.0699999999999,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,,0.0,,162.07,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Rainy,2023-07-25 09:53:41.204240,2024-03-08 09:53:41.204240,8.0,29.0,,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Male
+335.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,75.0,No,Yes,Arms,No,Motorcycle,Sunny,2021-03-03 13:45:51.670334,2022-01-14 13:45:51.670334,17.0,54.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2021-04-27 11:31:54.862972,2022-02-13 11:31:54.862972,19.0,46.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+260.0,Other side drove on wrong side of the road,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2020-07-25 04:38:15.819163,2020-09-17 04:38:15.819163,5.0,72.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Male
+983.91,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.2,0.0,520.0,0.0,0.0,0.0,220.21,400.0,No,Yes,Hips,No,Truck,Rainy,2021-04-19 14:16:41.000200,2021-07-25 14:16:41.000200,8.0,61.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Female
+804.8,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,19.8,0.0,265.0,No,Yes,Legs,No,Car,Rainy,2023-10-19 20:40:39.847969,2023-10-23 20:40:39.847969,7.0,39.0,,,,Yes,Yes,Female
+1370.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,1182.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Snowy,2023-01-10 10:35:10.022004,2023-11-16 10:35:10.022004,17.0,63.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+1838.0,Other,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,518.0,No,No,Hips,No,Motorcycle,Sunny,2021-01-27 19:38:43.904780,2021-04-28 19:38:43.904780,14.0,31.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Female
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2020-04-10 04:13:29.441888,2020-07-08 04:13:29.441888,0.0,36.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Male
+1443.21,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,574.21,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,518.0,No,Yes,Multiple,No,Truck,Rainy,2023-01-10 17:35:43.868773,2023-11-26 17:35:43.868773,13.0,22.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Other
+520.0,Other side pulled from parked position into the path of clt's vehicle,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,,No,Truck,Rainy,2020-06-05 06:01:48.021604,2020-09-05 06:01:48.021604,17.0,52.0,3.0,,Fractured arm and leg.,No,Yes,Male
+3325.0,Other side pulled out of side road,F. 6 months,0.0,0.0,475.0,1950.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,254.2,0.0,565.0,No,Yes,Arms,No,Motorcycle,Sunny,2020-04-13 09:19:41.756351,2020-09-10 09:19:41.756351,18.0,42.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Female
+1605.55,Rear end,H. 8 months,0.0,0.0,0.0,1320.0,0.0,210.55,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2022-10-31 11:18:05.257051,2023-06-22 11:18:05.257051,18.0,67.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Other
+6047.08,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,500.0,0.0,5027.08,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2020-10-13 19:13:57.527505,2021-09-15 19:13:57.527505,9.0,55.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+520.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2021-01-27 19:38:43.904780,2021-03-27 19:38:43.904780,19.0,26.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2022-05-28 19:17:24.928985,2022-11-29 19:17:24.928985,5.0,75.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+520.0,Other side reversed into clt's stationary vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2020-06-02 14:56:43.400680,2020-07-16 14:56:43.400680,16.0,24.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Female
+520.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,,Yes,Arms,,Truck,Sunny,2020-09-28 14:44:37.495499,,13.0,70.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+520.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Sunny,2022-03-15 21:54:41.696339,2022-05-30 21:54:41.696339,12.0,35.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Other
+920.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,425.0,No,No,Legs,No,Truck,Sunny,2021-10-28 11:27:18.327665,2022-03-21 11:27:18.327665,7.0,19.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+,Rear end,A. 1 month,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Sunny,2021-07-22 08:17:45.813162,2021-10-31 08:17:45.813162,9.0,69.0,4.0,Rear-ended at a stoplight.,,Yes,No,Female
+621.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,126.0,No,No,Hips,No,Truck,Rainy,2023-02-20 21:55:16.263252,2023-11-19 21:55:16.263252,8.0,27.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Male
+820.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,300.0,No,,Hips,No,Car,Sunny,2022-01-12 02:53:24.640928,2022-03-08 02:53:24.640928,4.0,61.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Female
+240.0,Other,B. 2 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,240.0,,0.0,,0.0,0.0,No,No,Arms,Yes,Truck,Rainy,2021-07-13 14:00:50.410082,2022-01-18 14:00:50.410082,3.0,19.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Female
+900.6600000000001,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,15.6625,0.0,575.0,No,Yes,Arms,Yes,Car,Rainy,2022-09-08 07:35:25.145029,2023-08-25 07:35:25.145029,5.0,77.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Female
+1440.0,Rear end,H. 8 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,350.0,No,No,Arms,No,Truck,Rainy,2021-04-10 05:58:37.903580,2022-03-11 05:58:37.903580,5.0,62.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Motorcycle,Snowy,2022-05-04 06:30:01.800360,2022-07-20 06:30:01.800360,12.0,78.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,240.0,,0.0,0.0,0.0,,No,No,Legs,No,Motorcycle,Rainy,2022-11-24 17:04:54.538907,2023-09-16 17:04:54.538907,,25.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+1153.0,Other side reversed into clt's stationary vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Arms,No,Truck,Sunny,,2021-07-30 04:29:54.598919,7.0,75.0,,,Whiplash and minor bruises.,No,Yes,Female
+1145.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Legs,Yes,Truck,Snowy,2021-07-26 03:25:05.821164,2022-04-29 03:25:05.821164,4.0,72.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+,Other side pulled out of side road,,0.0,0.0,,955.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Sunny,2020-10-08 20:04:22.132426,2020-12-13 20:04:22.132426,1.0,24.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+822.9,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,462.0,No,Yes,Hips,No,Car,Rainy,2023-12-28 22:56:03.072614,2024-05-12 22:56:03.072614,,52.0,4.0,,Fractured arm and leg.,Yes,Yes,Other
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Sunny,2022-12-10 04:34:48.417683,2023-08-01 04:34:48.417683,10.0,40.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+730.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,290.0,0.0,0.0,520.0,,0.0,0.0,0.0,455.0,No,Yes,Legs,Yes,Truck,Snowy,2023-06-13 08:32:27.269453,2023-12-29 08:32:27.269453,19.0,25.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+1110.0,Other side changed lanes and collided with clt's vehicle,B. 2 months,0.0,0.0,750.0,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2020-06-30 15:50:52.690538,2021-03-23 15:50:52.690538,19.0,38.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Other
+1895.0,Other,G. 7 months,,0.0,0.0,3006.0,0.0,0.0,0.0,0.0,0.0,0.0,,895.0,179.0,0.0,0.0,0.0,0.0,Yes,,Arms,No,Motorcycle,Sunny,2023-07-23 01:49:10.430086,2023-09-04 01:49:10.430086,10.0,50.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+1142.0,Rear end,G. 7 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,238.0,,Yes,Hips,Yes,Truck,Sunny,2023-10-30 02:00:24.484896,2024-10-25 02:00:24.484896,6.0,64.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Male
+655.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,215.0,No,No,Hips,Yes,Truck,Sunny,2023-10-12 06:25:59.831966,2024-05-27 06:25:59.831966,13.0,18.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Female
+2858.9700000000003,Other side pulled out of side road,,0.0,0.0,0.0,1600.0,0.0,213.97,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,275.0,No,,Hips,Yes,Motorcycle,Snowy,2021-11-23 18:18:04.536907,,5.0,29.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+1084.16,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,44.16,525.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2022-05-10 23:43:00.276055,2022-07-12 23:43:00.276055,3.0,28.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+2350.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,1771.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,19.67,290.0,No,Yes,Legs,No,Car,Sunny,2022-08-21 12:01:00.492098,2023-02-08 12:01:00.492098,5.0,65.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Male
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,,Yes,Legs,No,Truck,Rainy,2020-12-07 02:58:53.026605,2021-08-14 02:58:53.026605,2.0,47.0,,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Male
+260.0,Rear end,A. 1 month,,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,,Truck,Snowy,2023-10-18 23:38:58.307661,2024-09-20 23:38:58.307661,5.0,21.0,,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Other
+2544.0,Other side turned across Clt's path,N. 14 months,0.0,0.0,0.0,1188.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2040.0,0.0,0.0,,0.0,0.0,No,No,Multiple,No,Car,Sunny,2020-04-24 04:40:34.086817,2020-12-30 04:40:34.086817,2.0,,4.0,,Sprained ankle and wrist.,No,No,Female
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Sunny,2023-01-17 10:48:42.344468,2023-11-20 10:48:42.344468,0.0,40.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+2854.81,,G. 7 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,14.46,800.35,No,No,Multiple,Yes,Car,Snowy,2021-12-03 23:37:49.173834,2022-07-29 23:37:49.173834,17.0,49.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Female
+800.4,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,5.4,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2023-11-21 13:43:50.686137,2024-01-16 13:43:50.686137,3.0,78.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+2685.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,1972.25,,0.0,0.0,,584.99,0.0,0.0,,0.0,0.0,0.0,0.0,765.0,No,Yes,Arms,No,,,2023-11-29 17:59:38.395679,2024-05-18 17:59:38.395679,5.0,20.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Other
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2023-05-29 04:03:07.237447,2023-07-02 04:03:07.237447,16.0,45.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Female
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2023-11-11 01:23:32.202440,2024-09-21 01:23:32.202440,17.0,21.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Sunny,2020-06-18 09:27:11.126225,2020-10-26 09:27:11.126225,,74.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Snowy,2020-08-27 11:42:34.350870,2021-01-04 11:42:34.350870,1.0,67.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Other
+2190.0,,L. 12 months,0.0,0.0,0.0,2020.0,,0.0,0.0,0.0,0.0,0.0,,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2020-12-30 04:43:26.921384,2021-05-30 04:43:26.921384,11.0,29.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Female
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Sunny,2020-02-05 22:09:23.152630,2020-06-27 22:09:23.152630,11.0,41.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Female
+260.0,Other,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2023-07-20 10:44:05.809161,2023-11-15 10:44:05.809161,3.0,50.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+2170.0,Rear end,J. 10 months,0.0,0.0,0.0,1108.45,0.0,1600.0,790.0,0.0,299.0,0.0,0.0,1320.0,0.0,62.97,0.0,0.0,0.0,No,No,Hips,No,Truck,Sunny,2021-07-01 07:37:08.845769,2022-01-21 07:37:08.845769,15.0,20.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Female
+1875.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,1208.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Arms,No,Motorcycle,Rainy,2020-06-01 17:55:01.860372,2021-01-22 17:55:01.860372,19.0,21.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+560.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,70.0,No,Yes,Multiple,No,Truck,Rainy,2022-07-01 02:21:43.460692,2022-07-18 02:21:43.460692,9.0,47.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+920.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,57.6,0.0,462.0,No,Yes,Multiple,No,Motorcycle,Sunny,2023-05-18 15:42:48.753750,2023-08-08 15:42:48.753750,9.0,23.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+990.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,188.0,No,No,Legs,No,Truck,Rainy,2022-07-23 00:04:01.968393,2022-08-06 00:04:01.968393,6.0,66.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Female
+1292.0,Rear end,B. 2 months,0.0,0.0,0.0,1032.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Sunny,2022-03-24 09:11:03.252650,2022-06-13 09:11:03.252650,13.0,47.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Female
+520.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2021-09-10 13:54:47.457491,2022-04-05 13:54:47.457491,6.0,25.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+3034.98,Other side pulled out of side road,E. 5 months,0.0,0.0,800.0,1400.0,0.0,369.98,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2020-12-19 09:22:34.590918,2021-07-11 09:22:34.590918,11.0,35.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+1257.6,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,967.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,30.6,0.0,No,Yes,Legs,Yes,Car,Sunny,2020-10-26 15:38:46.785357,2021-07-25 15:38:46.785357,10.0,33.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Other
+769.5,Rear end,E. 5 months,0.0,0.0,0.0,1064.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,163.0,No,Yes,Legs,Yes,Car,Sunny,2023-04-17 09:42:27.149429,2023-05-19 09:42:27.149429,16.0,70.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+733.54,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,13.54,No,Yes,Hips,No,Motorcycle,Sunny,2023-05-29 11:03:41.084216,2023-06-21 11:03:41.084216,10.0,23.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Male
+1510.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,120.0,No,Yes,Multiple,No,Car,Sunny,2020-05-25 03:40:21.844368,2020-09-04 03:40:21.844368,2.0,41.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+1460.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Hips,No,Motorcycle,Sunny,2023-08-15 17:34:52.018403,2024-01-24 17:34:52.018403,18.0,68.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Sunny,2022-03-30 05:22:20.188037,2022-07-06 05:22:20.188037,3.0,45.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Other
+895.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,400.0,No,No,Hips,No,Motorcycle,Snowy,2023-12-11 10:22:12.266453,2024-05-03 10:22:12.266453,7.0,49.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Male
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,10.8,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2021-05-09 10:55:02.580516,2021-08-21 10:55:02.580516,13.0,42.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+1216.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,518.0,No,No,Multiple,Yes,Motorcycle,Rainy,2023-10-21 14:44:02.928585,2024-09-09 14:44:02.928585,19.0,45.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+975.0,Other side drove on wrong side of the road,E. 5 months,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Arms,No,Truck,Sunny,2020-07-30 10:48:25.061012,2021-01-17 10:48:25.061012,13.0,38.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+1459.5,Other side pulled out of side road,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Legs,Yes,Car,Rainy,2020-04-19 12:31:32.538507,2020-06-22 12:31:32.538507,,25.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+1125.0,Other side collided with Clt's parked vehicle,E. 5 months,0.0,,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Hips,Yes,Truck,Rainy,2023-07-08 11:20:58.091618,2024-03-08 11:20:58.091618,14.0,53.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Other
+1355.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Legs,No,Car,Snowy,2021-12-17 03:03:12.278455,2022-02-26 03:03:12.278455,11.0,77.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+1521.2,Rear end,E. 5 months,0.0,0.0,,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,1.2,0.0,No,Yes,Legs,No,,Rainy,2023-02-01 01:16:54.682936,2023-11-02 01:16:54.682936,15.0,26.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+1210.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,2279.64,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,370.0,No,Yes,Legs,No,Car,Snowy,,2021-09-09 09:51:05.653130,19.0,57.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Male
+800.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,350.0,No,No,Legs,Yes,Truck,Rainy,2023-11-03 18:09:26.033206,2024-09-15 18:09:26.033206,18.0,38.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+3188.79,Other side pulled out of side road,J. 10 months,0.0,0.0,0.0,1600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,46.29,270.0,No,Yes,Hips,Yes,Car,Sunny,2020-03-15 18:24:24.772954,2021-02-09 18:24:24.772954,4.0,68.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Female
+935.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,,No,Yes,Legs,Yes,Truck,Rainy,2023-08-05 12:15:07.381476,2023-11-20 12:15:07.381476,11.0,18.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+495.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Snowy,2022-11-17 09:50:48.369673,2023-04-14 09:50:48.369673,4.0,70.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+547.5,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,52.5,No,No,Hips,No,Car,Snowy,2020-01-15 14:28:12.338467,2020-07-25 14:28:12.338467,9.0,70.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+730.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,290.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Arms,No,Car,Snowy,2020-06-22 11:35:04.980996,2021-05-25 11:35:04.980996,16.0,21.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Male
+718.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,274.0,No,Yes,,No,Motorcycle,Rainy,2023-12-05 21:11:29.177835,2024-07-18 21:11:29.177835,14.0,,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-10-13 17:28:49.065813,2024-06-11 17:28:49.065813,7.0,43.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+2235.0,Rear end,O. 15 months,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,110.0,No,Yes,Hips,Yes,Car,Snowy,2023-02-05 03:24:48.537707,2024-02-02 03:24:48.537707,7.0,57.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Male
+3554.0,Other side drove on wrong side of the road,J. 10 months,0.0,0.0,0.0,2217.0,0.0,,0.0,0.0,147.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,,2022-09-30 12:18:17.499499,2023-07-11 12:18:17.499499,7.0,20.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Sunny,2020-11-09 02:04:43.736747,2021-04-21 02:04:43.736747,9.0,61.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+1808.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,1070.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Hips,No,Truck,Rainy,2021-03-07 01:52:37.831566,2021-03-15 01:52:37.831566,19.0,75.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+1195.0,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,0.0,0.0,0.0,173.0,0.0,0.0,0.0,0.0,340.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Hips,No,Car,Rainy,2023-11-23 07:47:13.766753,2024-11-04 07:47:13.766753,12.0,26.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+901.4,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,32.88,0.0,510.0,No,Yes,Arms,No,Truck,Snowy,2022-06-01 00:23:37.243448,2022-10-31 00:23:37.243448,15.0,49.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+1355.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,460.0,No,Yes,Multiple,Yes,Truck,Rainy,2021-04-30 23:38:41.024204,2022-03-18 23:38:41.024204,8.0,20.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+603.32,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,660.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,9.6,0.0,No,Yes,Arms,Yes,Car,Rainy,2023-08-04 22:13:59.687937,2023-11-07 22:13:59.687937,15.0,21.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Motorcycle,Snowy,2022-03-08 07:40:01.680336,2022-10-08 07:40:01.680336,9.0,23.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+,,D. 4 months,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,2021-02-11 10:06:56.243248,2021-04-16 10:06:56.243248,2.0,26.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+1970.06,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,5.31,574.0,Yes,Yes,Arms,Yes,Truck,Rainy,2023-02-12 03:38:20.860172,2023-04-18 03:38:20.860172,13.0,43.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Male
+1795.0,Other,F. 6 months,0.0,0.0,0.0,2090.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Sunny,2023-09-12 11:28:27.461492,2024-06-08 11:28:27.461492,12.0,19.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+1253.0,Rear end,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,91.62,518.0,No,Yes,Arms,Yes,Car,Rainy,2023-10-28 00:56:27.557511,2023-11-22 00:56:27.557511,3.0,19.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Male
+1191.5,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,89.5,0.0,0.0,0.0,207.0,Yes,Yes,Multiple,Yes,Truck,Sunny,2023-03-27 09:01:50.182036,2023-07-05 09:01:50.182036,3.0,67.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+1265.45,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,58.45,412.0,No,Yes,Legs,Yes,Truck,Sunny,2022-02-15 21:00:32.406481,2022-05-31 21:00:32.406481,5.0,38.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+620.94,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,73.11,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,60.33,0.0,No,Yes,Multiple,No,Car,Sunny,2021-10-14 03:59:39.835967,2022-02-22 03:59:39.835967,18.0,39.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+1253.0,Rear end,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,91.62,518.0,No,Yes,Multiple,No,Truck,Snowy,2022-08-28 05:13:58.967793,2023-07-15 05:13:58.967793,10.0,20.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
+1190.0,Rear end,I. 9 months,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,245.0,No,Yes,Arms,Yes,Truck,Snowy,2023-05-10 18:27:34.890978,2023-05-29 18:27:34.890978,7.0,52.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+1770.0,Rear end - Clt pushed into next vehicle,I. 9 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Hips,No,Truck,Snowy,2023-05-16 21:39:25.673134,2023-12-27 21:39:25.673134,13.0,67.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2021-09-05 14:45:12.062412,2021-12-20 14:45:12.062412,7.0,76.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+945.0,Other,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,Yes,Truck,Snowy,2021-01-16 10:16:43.880776,2021-03-11 10:16:43.880776,13.0,55.0,4.0,,Sprained ankle and wrist.,No,Yes,Other
+727.36,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.0,0.0,0.0,495.0,0.0,0.0,26.04,0.0,375.0,No,No,Multiple,Yes,Truck,Snowy,2021-04-23 02:23:27.161432,2021-12-05 02:23:27.161432,6.0,50.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+2402.87,Other side turned across Clt's path,D. 4 months,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,18.9,,No,Yes,Arms,Yes,Motorcycle,Rainy,,2021-11-23 22:43:05.317063,17.0,74.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+910.0,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,1260.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2020-06-28 14:46:55.763152,2020-07-13 14:46:55.763152,11.0,32.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+881.4,Rear end,C. 3 months,0.0,0.0,0.0,380.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,53.4,208.0,No,No,Arms,Yes,Truck,Sunny,2023-09-20 15:44:15.171034,2023-11-07 15:44:15.171034,13.0,28.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+2170.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,1880.0,0.0,0.0,0.0,0.0,863.32,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2023-05-14 06:34:21.052210,2023-09-30 06:34:21.052210,14.0,27.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+1070.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Hips,No,Motorcycle,Rainy,2021-04-02 08:43:24.040808,2021-05-06 08:43:24.040808,17.0,53.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+847.4,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,325.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,2.4,,No,Yes,Legs,,Truck,Snowy,2020-10-12 01:10:34.446889,2021-10-02 01:10:34.446889,11.0,31.0,4.0,Rear-ended at a stoplight.,,Yes,Yes,Other
+640.0,Rear end,F. 6 months,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,120.0,No,Yes,Hips,Yes,Car,Sunny,2023-11-01 17:05:29.105821,,9.0,19.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+807.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,4.35,455.0,No,No,Multiple,No,Truck,Sunny,2021-01-19 08:22:22.348469,2021-02-07 08:22:22.348469,11.0,62.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+834.5,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,99.0,0.0,0.0,0.0,406.0,Yes,No,Hips,No,Truck,Rainy,2021-11-14 02:59:27.593518,2022-05-29 02:59:27.593518,7.0,65.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+2290.0,Other side drove on wrong side of the road,L. 12 months,0.0,0.0,0.0,1103.0,0.0,0.0,0.0,0.0,,0.0,0.0,1320.0,0.0,0.0,0.0,,798.0,No,No,Arms,No,Truck,Snowy,2023-06-26 04:57:16.527305,2024-05-17 04:57:16.527305,5.0,61.0,,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Male
+877.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Hips,Yes,Truck,Snowy,2021-09-04 03:42:22.828565,2021-12-28 03:42:22.828565,18.0,71.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+1700.0,Rear end,G. 7 months,0.0,0.0,200.0,1035.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Snowy,2020-04-20 09:33:14.078815,2021-04-07 09:33:14.078815,0.0,54.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+597.19,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99,0.0,0.0,,0.0,0.0,25.2,0.0,294.0,No,Yes,Hips,No,Truck,Snowy,2022-10-08 23:34:39.055811,2022-12-22 23:34:39.055811,12.0,68.0,2.0,Lost control on a snowy road.,,No,No,Other
+320.0,Other side reversed into Clt's vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1692.54,0.0,0.0,240.0,0.0,0.0,,0.0,180.0,,No,Arms,Yes,Truck,,2021-10-25 06:21:06.013202,2022-03-24 06:21:06.013202,15.0,46.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Male
+1136.5,Rear end,H. 8 months,0.0,0.0,0.0,488.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-11-01 11:50:03.720744,2020-12-07 11:50:03.720744,17.0,52.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+884.5,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2020-10-21 02:28:03.696739,2021-06-20 02:28:03.696739,11.0,70.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+840.0,,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,,No,No,Hips,Yes,Truck,Sunny,2020-02-01 20:01:29.297859,2020-07-01 20:01:29.297859,4.0,37.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Male
+270.0,Other,B. 2 months,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,30.0,No,No,Arms,Yes,Truck,Rainy,2022-03-20 07:03:09.397879,2022-05-22 07:03:09.397879,12.0,38.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2023-02-08 01:30:27.005401,2023-07-12 01:30:27.005401,7.0,51.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+1671.0,Rear end,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,36.0,0.0,400.0,No,No,Multiple,No,Motorcycle,Snowy,2022-01-29 08:26:41.600320,2022-08-05 08:26:41.600320,5.0,76.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Male
+1224.15,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,869.85,0.0,0.0,520.0,0.0,0.0,0.0,109.2,400.0,No,Yes,Legs,No,Motorcycle,Snowy,2022-08-05 03:29:25.073014,2023-03-16 03:29:25.073014,2.0,66.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+1558.75,Other side pulled out of side road,J. 10 months,0.0,0.0,0.0,0.0,0.0,168.75,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Snowy,2020-10-20 12:26:56.003200,2021-01-21 12:26:56.003200,19.0,70.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+895.0,Other,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2023-10-31 20:03:47.565513,2023-11-05 20:03:47.565513,3.0,60.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Female
+1796.0,Other,,0.0,0.0,0.0,1771.0,0.0,0.0,0.0,0.0,200.0,0.0,0.0,840.0,0.0,0.0,0.0,56.0,0.0,No,No,Hips,Yes,Car,Snowy,2020-03-30 01:52:03.264652,2020-09-12 01:52:03.264652,11.0,50.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+1390.0,Other side pulled out of side road,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2020-10-06 19:00:25.205041,2020-10-31 19:00:25.205041,12.0,36.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Male
+495.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Snowy,2020-10-05 07:57:35.971194,2021-01-11 07:57:35.971194,1.0,25.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Male
+680.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1880.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2022-02-18 05:05:03.180636,2022-11-13 05:05:03.180636,18.0,48.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Other
+922.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,27.0,0.0,No,Yes,Legs,No,Car,Sunny,2022-10-30 07:15:49.869974,2023-03-29 07:15:49.869974,3.0,28.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Male
+1895.0,Other side pulled on to roundabout,H. 8 months,0.0,0.0,0.0,1261.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,Yes,Motorcycle,Rainy,2022-02-20 20:10:07.801560,2022-10-30 20:10:07.801560,12.0,25.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Male
+669.14,Rear end,E. 5 months,,0.0,0.0,0.0,0.0,0.0,30.0,0.0,94.14,,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Legs,No,Motorcycle,Sunny,2021-04-21 01:19:30.234046,2021-07-14 01:19:30.234046,18.0,42.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+895.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2021-06-07 01:50:19.563912,2022-03-19 01:50:19.563912,7.0,66.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+854.0,Other,B. 2 months,0.0,0.0,0.0,1651.4,0.0,0.0,0.0,0.0,139.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,125.0,No,No,Arms,No,Motorcycle,Snowy,2022-01-30 05:28:23.140628,2022-07-21 05:28:23.140628,7.0,37.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Female
+959.8,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,64.8,0.0,No,Yes,Legs,Yes,Truck,,2021-07-29 15:31:51.982396,,15.0,55.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+840.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,3.6,6.0,No,No,Hips,No,Car,Rainy,2020-01-20 06:37:13.886777,2020-05-08 06:37:13.886777,10.0,24.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+260.0,Rear end - 3 car - Clt at front,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Sunny,2020-08-31 13:50:28.205641,2020-09-27 13:50:28.205641,17.0,70.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+935.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Multiple,Yes,Truck,Rainy,2020-02-29 20:55:38.587717,2020-11-01 20:55:38.587717,3.0,30.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2022-04-07 09:38:07.897579,2022-06-01 09:38:07.897579,0.0,56.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+962.62,Rear end,F. 6 months,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,113.82,0.0,28.8,406.0,No,Yes,Legs,Yes,Truck,,2023-05-26 05:57:28.769753,2023-10-06 05:57:28.769753,0.0,60.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Female
+545.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Hips,Yes,Truck,Sunny,2021-05-15 14:06:53.362672,2021-07-06 14:06:53.362672,13.0,27.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2021-03-23 10:24:13.250650,2021-12-01 10:24:13.250650,3.0,25.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Other
+1395.25,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,500.25,No,Yes,Arms,,Truck,Sunny,2022-07-07 12:34:08.089617,2023-04-02 12:34:08.089617,,59.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+1675.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,285.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2022-06-30 05:20:01.920384,2023-04-24 05:20:01.920384,17.0,71.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+560.0,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,40.0,No,Yes,Legs,No,Motorcycle,Rainy,2020-07-25 11:38:49.665933,2020-10-12 11:38:49.665933,15.0,60.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Other
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Sunny,2020-02-21 23:40:24.724944,2020-03-10 23:40:24.724944,16.0,37.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-02-02 17:03:10.838167,2020-12-04 17:03:10.838167,1.0,34.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Other
+688.4300000000001,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,8.43,160.0,No,Yes,Legs,Yes,Truck,Snowy,2020-08-08 19:06:28.157631,2021-04-23 19:06:28.157631,3.0,28.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+,Rear end,E. 5 months,0.0,0.0,0.0,1700.0,0.0,2746.26,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2020-09-18 16:25:26.705341,2021-08-27 16:25:26.705341,2.0,33.0,,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Male
+910.0,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,1260.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2022-04-17 14:57:52.534506,2022-08-02 14:57:52.534506,14.0,54.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Female
+495.0,Rear end - 3 car - Clt at front,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Motorcycle,Sunny,2020-02-16 03:29:07.789557,2020-04-03 03:29:07.789557,1.0,59.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Female
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Snowy,2020-08-17 06:22:49.713942,2021-04-20 06:22:49.713942,18.0,49.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2021-06-10 13:57:05.725145,2021-09-07 13:57:05.725145,8.0,43.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2021-06-21 02:17:24.208841,2022-01-10 02:17:24.208841,9.0,75.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2022-07-14 05:47:06.565313,2023-03-11 05:47:06.565313,18.0,69.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+795.9,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.9,275.0,No,Yes,Multiple,Yes,Car,Rainy,2021-11-02 03:36:19.875975,2022-07-28 03:36:19.875975,4.0,54.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+1529.0,Other,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Hips,No,Motorcycle,Snowy,2023-04-06 00:20:27.125425,2023-04-19 00:20:27.125425,13.0,69.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Female
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2021-03-26 08:29:51.718343,2021-08-10 08:29:51.718343,9.0,26.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Sunny,2023-05-13 23:33:47.205441,2024-03-23 23:33:47.205441,15.0,52.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+1895.0,Other,G. 7 months,0.0,0.0,0.0,2105.0,0.0,0.0,0.0,0.0,198.66,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Hips,Yes,Truck,Rainy,2023-06-25 14:56:08.833766,2023-12-15 14:56:08.833766,5.0,20.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+815.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Multiple,No,Car,Snowy,2021-09-21 02:15:05.941188,2022-05-09 02:15:05.941188,7.0,48.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Male
+1015.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,520.0,0.0,0.0,31.2,0.0,455.0,No,Yes,Legs,Yes,Car,Sunny,2020-06-16 15:23:48.045609,2020-12-31 15:23:48.045609,1.0,59.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+1795.95,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,477.95,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2022-06-06 06:33:46.485297,2023-02-04 06:33:46.485297,17.0,24.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+950.0,Other side changed lanes and collided with clt's vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,405.0,No,No,Legs,No,Motorcycle,Snowy,2021-02-07 07:59:02.388477,2021-03-22 07:59:02.388477,19.0,19.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Other
+808.0,Other,E. 5 months,0.0,0.0,0.0,115.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Legs,Yes,Car,Snowy,2020-12-22 21:29:20.752150,2021-11-17 21:29:20.752150,7.0,42.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Other
+240.0,Other,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Rainy,2021-12-23 13:15:36.907381,2022-09-28 13:15:36.907381,4.0,57.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Other
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2021-03-14 09:06:44.000800,2021-06-01 09:06:44.000800,16.0,29.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,0.0,No,Yes,Arms,Yes,Car,Sunny,2020-09-07 14:04:00.528105,2021-06-13 14:04:00.528105,15.0,47.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Female
+1270.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,750.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Snowy,2022-11-09 19:36:08.353670,2023-06-29 19:36:08.353670,4.0,71.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Male
+808.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,64.8,400.0,No,Yes,Multiple,Yes,Car,Snowy,2022-12-25 02:03:34.602920,2023-04-05 02:03:34.602920,16.0,47.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Female
+1057.76,Other side drove on wrong side of the road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.35,0.0,0.0,0.0,520.0,0.0,0.0,10.8,459.71,68.7,No,Yes,Hips,No,Car,Sunny,2022-05-15 22:52:35.671134,2022-10-24 22:52:35.671134,3.0,46.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+1295.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,455.0,No,No,Arms,No,Motorcycle,Sunny,2022-07-20 23:00:05.041008,2022-12-11 23:00:05.041008,0.0,58.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+950.0,Other side changed lanes and collided with clt's vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,405.0,No,No,Arms,No,Truck,Rainy,2021-04-11 03:00:19.443888,2021-07-29 03:00:19.443888,5.0,28.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+1850.23,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,350.0,1725.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,190.0,No,,Hips,Yes,Motorcycle,Rainy,2021-03-31 21:40:34.806961,2021-11-19 21:40:34.806961,0.0,68.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+950.0,Rear end,E. 5 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,455.0,No,No,Arms,No,Motorcycle,Rainy,2022-01-06 13:42:41.552310,2022-04-27 13:42:41.552310,3.0,69.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Other
+520.0,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2022-01-29 01:26:07.753550,,1.0,40.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+1730.29,Rear end,E. 5 months,,0.0,0.0,1028.0,,0.0,0.0,0.0,456.44,0.0,0.0,,0.0,0.0,0.0,4.5,9.35,No,Yes,,Yes,Truck,Sunny,2021-11-29 07:28:47.625525,2022-07-25 07:28:47.625525,12.0,34.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Female
+495.0,,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Snowy,2022-02-20 06:09:00.108021,2022-09-05 06:09:00.108021,13.0,30.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+1025.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,1771.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,50.0,290.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2021-09-29 13:31:27.497499,2022-06-29 13:31:27.497499,16.0,50.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+1695.0,Rear end,E. 5 months,,0.0,0.0,1446.5,,0.0,0.0,0.0,47.0,0.0,0.0,520.0,0.0,0.0,0.0,,345.0,,Yes,,No,Truck,Snowy,2020-03-21 14:35:41.708341,2020-06-15 14:35:41.708341,10.0,18.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Female
+1835.0,Other,H. 8 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Hips,Yes,Motorcycle,Rainy,2023-02-07 18:29:53.158631,2023-11-29 18:29:53.158631,2.0,77.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+1600.2,Rear end,,0.0,0.0,0.0,1182.2,,0.0,0.0,0.0,0.0,0.0,0.0,260.0,52.0,0.0,,0.0,182.0,Yes,Yes,Hips,No,Motorcycle,Sunny,2022-11-18 13:53:03.756751,2022-12-29 13:53:03.756751,6.0,57.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+1566.17,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,0.0,0.0,150.0,906.0,,0.0,0.0,0.0,46.17,,0.0,895.0,0.0,0.0,0.0,0.0,,No,Yes,,Yes,Truck,Sunny,2021-08-29 21:32:13.586717,2021-10-16 21:32:13.586717,9.0,30.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+2800.0,Rear end,F. 6 months,0.0,0.0,0.0,2280.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Sunny,2023-06-22 02:49:22.672534,2023-09-07 02:49:22.672534,10.0,55.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+965.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-08-09 00:21:53.542708,2024-02-03 00:21:53.542708,9.0,20.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+1020.0,Rear end,E. 5 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2023-04-05 17:19:53.278655,2023-12-18 17:19:53.278655,7.0,33.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Female
+1516.99,Other,H. 8 months,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,94.99,0.0,0.0,895.0,0.0,151.0,0.0,0.0,126.0,No,Yes,Hips,No,Car,Sunny,2023-05-02 07:11:13.334666,2023-08-27 07:11:13.334666,4.0,59.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2020-11-23 02:31:48.381676,2020-12-12 02:31:48.381676,1.0,24.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+790.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Arms,No,Truck,Sunny,2023-10-24 12:49:41.396279,2023-12-22 12:49:41.396279,14.0,71.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2022-01-06 20:43:15.399079,2022-07-21 20:43:15.399079,15.0,70.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+1980.0,Rear end,E. 5 months,0.0,0.0,0.0,1537.55,0.0,0.0,0.0,0.0,60.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,175.0,No,Yes,Legs,No,Truck,Sunny,2022-09-11 05:41:03.612722,2022-12-27 05:41:03.612722,3.0,20.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+965.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2023-07-03 19:11:56.543308,2024-04-12 19:11:56.543308,15.0,31.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+1297.0,Other side changed lanes and collided with clt's vehicle,D. 4 months,0.0,0.0,0.0,555.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Multiple,No,Motorcycle,Sunny,2021-07-11 05:56:19.635927,2021-08-14 05:56:19.635927,11.0,33.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+845.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,350.0,No,No,Hips,Yes,Motorcycle,Sunny,2022-10-25 01:05:40.628125,2023-08-16 01:05:40.628125,13.0,21.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+935.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Multiple,No,Truck,Rainy,2023-06-11 21:29:38.035607,2024-02-17 21:29:38.035607,11.0,48.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+620.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Multiple,No,Car,Rainy,2023-08-06 02:16:15.075015,2023-12-10 02:16:15.075015,15.0,78.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Other
+2500.0,Rear end,J. 10 months,0.0,0.0,0.0,1410.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2023-10-19 06:39:32.154430,2024-09-22 06:39:32.154430,15.0,30.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+2195.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,3273.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Rainy,2022-06-25 20:11:34.218843,2022-10-09 20:11:34.218843,11.0,44.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Male
+852.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,520.0,0.0,0.0,27.0,0.0,305.0,No,Yes,Arms,No,Truck,Sunny,2020-05-25 03:40:21.844368,2020-11-21 03:40:21.844368,1.0,76.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Male
+1051.5,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,13.5,518.0,No,Yes,Legs,No,Car,Sunny,2022-11-13 14:43:28.361672,2023-03-03 14:43:28.361672,13.0,18.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Other
+1996.0,Other,,0.0,0.0,0.0,2254.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Rainy,2023-05-09 14:25:19.503900,2023-12-23 14:25:19.503900,10.0,42.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Female
+1274.2,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,,No,No,,,Car,Snowy,,2022-04-05 17:41:12.254450,8.0,54.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Male
+718.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,274.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-01-14 19:43:37.723544,2023-05-01 19:43:37.723544,6.0,67.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+760.0,Rear end,A. 1 month,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2020-05-14 22:20:37.207441,2020-09-22 22:20:37.207441,11.0,61.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+852.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,520.0,0.0,0.0,27.0,0.0,305.0,No,Yes,Arms,No,Truck,Sunny,2022-03-17 01:56:57.083416,2022-04-09 01:56:57.083416,16.0,28.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Other
+2575.0,Rear end,M. 13 months,0.0,0.0,0.0,959.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Snowy,2022-10-06 15:30:08.281656,2023-02-28 15:30:08.281656,8.0,26.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Female
+1555.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Legs,No,Car,Rainy,2020-03-20 10:33:26.321264,2021-02-10 10:33:26.321264,5.0,77.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Legs,No,Truck,Sunny,2020-12-01 20:48:43.784756,2021-05-04 20:48:43.784756,11.0,24.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+1375.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2022-09-16 18:51:46.701340,2023-01-01 18:51:46.701340,19.0,31.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Male
+3650.0,Rear end,L. 12 months,0.0,0.0,0.0,2400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,50.0,No,No,Arms,No,Car,Sunny,2020-01-06 06:10:09.241848,2020-05-31 06:10:09.241848,9.0,47.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+946.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,106.0,No,No,Hips,Yes,Car,Rainy,2021-04-16 23:11:36.379275,2021-12-24 23:11:36.379275,8.0,41.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Other
+1714.0,Rear end,F. 6 months,0.0,0.0,0.0,740.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,630.0,No,Yes,Hips,Yes,Car,Rainy,2022-07-17 03:52:45.033006,2023-05-15 03:52:45.033006,11.0,78.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Female
+385.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,260.0,,0.0,0.0,0.0,,No,Yes,Hips,Yes,Car,Snowy,2023-04-06 21:22:08.665733,,0.0,20.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,,Motorcycle,Sunny,2020-04-30 00:51:51.022204,2020-05-31 00:51:51.022204,1.0,,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Female
+905.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,,0.0,,0.0,No,Yes,Legs,,Truck,Sunny,2020-08-04 09:58:00.456091,2020-11-05 09:58:00.456091,18.0,79.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Male
+623.08,Rear end,E. 5 months,,0.0,0.0,0.0,0.0,103.08,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2022-02-19 02:06:44.720944,2022-07-06 02:06:44.720944,0.0,56.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Male
+696.61,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,176.61,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2022-03-22 15:07:40.172034,2022-09-01 15:07:40.172034,15.0,44.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+448.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,260.0,0.0,0.0,0.0,0.0,208.0,No,,Legs,Yes,Motorcycle,Snowy,2022-02-05 08:40:13.922784,2022-04-27 08:40:13.922784,15.0,18.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+1125.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.0,0.0,0.0,520.0,0.0,0.0,0.0,126.0,455.0,No,Yes,Hips,No,Car,Snowy,2020-05-30 02:49:57.239447,2021-04-11 02:49:57.239447,17.0,55.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Male
+753.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,29.4,284.0,No,Yes,Multiple,No,Car,Sunny,2020-03-01 03:56:12.434486,2020-05-16 03:56:12.434486,17.0,43.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+1512.0,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,325.0,No,No,Multiple,No,Motorcycle,Rainy,2020-10-03 13:54:12.890578,2020-12-05 13:54:12.890578,12.0,23.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Female
+764.0,Rear end,F. 6 months,0.0,,,,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,244.0,No,Yes,Arms,No,Motorcycle,Rainy,2021-12-13 21:56:59.963992,2022-03-23 21:56:59.963992,11.0,76.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+3282.27,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,380.27,693.7,Yes,Yes,Multiple,Yes,Truck,Rainy,2021-06-17 21:11:11.894378,2021-08-04 21:11:11.894378,8.0,59.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+1707.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,1187.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2022-11-16 19:49:40.676135,2023-01-29 19:49:40.676135,4.0,29.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+2390.0,Other,J. 10 months,,0.0,0.0,1757.2,0.0,0.0,0.0,0.0,0.0,0.0,,1390.0,0.0,0.0,0.0,0.0,80.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2021-09-24 21:22:25.949189,2022-08-04 21:22:25.949189,8.0,71.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+2094.0,Rear end,E. 5 months,0.0,0.0,0.0,1880.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,1.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Snowy,2021-04-28 15:34:10.250050,2021-11-06 15:34:10.250050,12.0,68.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+2045.0,Rear end,D. 4 months,0.0,0.0,0.0,1846.5,0.0,660.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,18.0,50.0,No,Yes,Legs,Yes,Truck,Snowy,2020-06-24 12:39:01.908381,2020-07-24 12:39:01.908381,15.0,55.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Truck,,2020-07-26 15:41:05.053010,2020-12-30 15:41:05.053010,,63.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+1314.1,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,44.1,375.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2020-12-17 08:18:37.663532,2021-09-09 08:18:37.663532,15.0,52.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,,,,2021-10-24 06:04:40.856171,13.0,27.0,,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2022-02-26 09:20:50.890178,2022-04-06 09:20:50.890178,1.0,26.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+2008.0,Rear end,J. 10 months,0.0,0.0,0.0,340.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,278.0,,0.0,0.0,0.0,Yes,Yes,Arms,No,Car,Sunny,2022-08-13 14:45:46.629325,2022-10-07 14:45:46.629325,,40.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Male
+723.5,Rear end - 3 car - Clt at front,F. 6 months,0.0,,0.0,,0.0,0.0,0.0,0.0,55.91,0.0,0.0,520.0,104.0,0.0,,0.0,239.6,,Yes,Legs,No,Car,Rainy,2023-12-09 09:18:15.339067,,10.0,47.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Other
+1700.0,Rear end,G. 7 months,0.0,0.0,200.0,1035.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2022-07-03 10:26:14.234846,2022-10-29 10:26:14.234846,18.0,78.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+520.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2022-12-25 09:04:08.449689,2023-07-22 09:04:08.449689,10.0,69.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Other
+260.0,Other side turned across Clt's path,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2022-02-17 15:03:55.487097,2022-05-03 15:03:55.487097,13.0,68.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Male
+2988.6,Rear end,G. 7 months,0.0,0.0,0.0,1890.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,33.6,0.0,460.0,Yes,Yes,Arms,Yes,Motorcycle,Sunny,2020-06-09 08:09:41.876375,2020-08-13 08:09:41.876375,14.0,39.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+995.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,475.0,No,Yes,Arms,No,Car,Snowy,2023-10-16 15:34:27.533506,2024-09-17 15:34:27.533506,6.0,64.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+579.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,84.0,No,Yes,Hips,No,Truck,Sunny,2023-03-08 23:26:17.835567,2024-02-27 23:26:17.835567,14.0,26.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+2790.0,Other side reversed into clt's stationary vehicle,J. 10 months,0.0,0.0,0.0,1400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2020-12-29 07:41:45.381076,2021-04-08 07:41:45.381076,7.0,36.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+240.0,Rear end,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Rainy,2023-02-08 22:32:08.545709,2023-03-26 22:32:08.545709,3.0,25.0,,,Concussion and bruised ribs.,No,Yes,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,No,Motorcycle,Snowy,2023-03-17 17:43:13.238647,2024-01-27 17:43:13.238647,17.0,71.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+1535.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,640.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Multiple,Yes,Truck,Rainy,2022-01-14 10:57:55.415083,2022-06-19 10:57:55.415083,13.0,21.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Female
+915.43,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.43,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Rainy,2022-07-24 18:07:25.049009,2023-03-21 18:07:25.049009,17.0,22.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+1647.5700000000002,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,633.57,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,390.0,Yes,Yes,Arms,Yes,Car,Sunny,2020-09-03 18:56:40.520104,2021-08-22 18:56:40.520104,3.0,36.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+495.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Rainy,2023-08-20 09:43:53.566713,2024-05-05 09:43:53.566713,1.0,63.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Other
+531.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,36.0,No,No,Hips,Yes,Motorcycle,,2020-01-13 13:24:15.411082,2020-05-28 13:24:15.411082,5.0,35.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+2153.46,,H. 8 months,0.0,0.0,0.0,2875.0,0.0,238.46,10.0,18.7,0.0,0.0,0.0,895.0,,0.0,0.0,14.51,,No,Yes,Hips,Yes,Motorcycle,Snowy,2020-07-11 04:11:11.174234,2021-01-25 04:11:11.174234,10.0,,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Rainy,2023-11-09 14:20:42.968593,2024-05-14 14:20:42.968593,0.0,46.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+524.25,,F. 6 months,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,,No,Yes,Arms,Yes,Car,Sunny,2023-02-21 18:56:57.803560,2023-06-17 18:56:57.803560,14.0,36.0,4.0,,Concussion and bruised ribs.,Yes,No,Male
+520.0,Other side pulled from parked position into the path of clt's vehicle,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,0.0,No,Yes,Arms,Yes,Truck,Rainy,2022-04-17 07:57:18.687737,2022-06-14 07:57:18.687737,11.0,23.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+1829.2,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,51.84,574.0,No,Yes,Multiple,No,Car,Snowy,2022-12-01 03:17:19.167833,2023-02-09 03:17:19.167833,17.0,22.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+965.0,Rear end - 3 car - Clt at front,G. 7 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,0.0,0.0,0.0,20.0,50.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2022-03-23 12:09:21.712342,2022-06-24 12:09:21.712342,4.0,75.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Male
+1796.0,Other,G. 7 months,0.0,0.0,0.0,1771.0,0.0,0.0,0.0,,200.0,0.0,0.0,840.0,0.0,0.0,0.0,,0.0,No,No,,Yes,,Rainy,2021-05-08 20:53:54.886977,2021-12-23 20:53:54.886977,10.0,60.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+723.0,Other side reversed into Clt's vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,463.0,No,Yes,Multiple,Yes,Truck,Rainy,2021-10-11 19:55:09.061812,2022-02-25 19:55:09.061812,18.0,73.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+1274.2,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.0,0.0,,495.0,0.0,,0.0,0.0,,No,No,Arms,No,Motorcycle,Rainy,2022-06-14 10:49:34.194838,2022-09-27 10:49:34.194838,,22.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+1370.0,Rear end,I. 9 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,170.0,No,Yes,Arms,No,Car,Snowy,2021-07-22 15:18:19.659931,2022-05-23 15:18:19.659931,16.0,76.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+240.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Car,Snowy,2021-02-02 15:50:00.840168,2022-01-07 15:50:00.840168,7.0,25.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+2295.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2840.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Snowy,2022-07-03 03:25:40.388077,2022-07-20 03:25:40.388077,15.0,44.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+1018.0,Other,E. 5 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,180.0,No,Yes,Multiple,Yes,Car,Sunny,2023-08-16 21:37:07.405481,2023-10-09 21:37:07.405481,10.0,54.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Female
+495.0,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,,0.0,0.0,0.0,No,No,Hips,Yes,Car,Snowy,2023-08-13 09:30:21.244248,2023-12-03 09:30:21.244248,18.0,60.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+1316.88,Rear end,G. 7 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,527.35,No,Yes,Arms,Yes,Car,Snowy,2020-10-09 10:05:29.825965,2021-03-30 10:05:29.825965,10.0,75.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+2486.79,Rear end,F. 6 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,14.79,182.0,No,Yes,Arms,No,Car,Sunny,2021-02-14 01:12:00.864172,2021-12-16 01:12:00.864172,14.0,62.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+1255.0,Other side collided with Clt's parked vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,400.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2020-05-21 15:33:35.683136,2020-10-12 15:33:35.683136,7.0,55.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,14.7,50.0,No,No,Legs,Yes,Car,Sunny,2021-05-27 13:30:01.080216,2021-08-20 13:30:01.080216,13.0,54.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,,Sunny,2022-11-26 04:07:43.772754,2022-12-08 04:07:43.772754,0.0,35.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Sunny,2022-05-16 19:54:17.211442,2023-01-23 19:54:17.211442,9.0,43.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Male
+1470.0,Other side turned across Clt's path,I. 9 months,0.0,0.0,0.0,1112.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,,,0.0,,105.0,No,Yes,Legs,Yes,Car,Sunny,2021-04-06 03:50:44.048809,2021-11-08 03:50:44.048809,6.0,59.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Male
+725.0,Rear end,D. 4 months,0.0,0.0,0.0,524.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,180.0,No,Yes,Legs,Yes,Truck,Rainy,2022-03-27 07:16:41.720344,2022-07-31 07:16:41.720344,17.0,33.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+,Rear end,,0.0,0.0,0.0,959.0,0.0,0.0,0.0,0.0,,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,,No,Yes,Legs,Yes,Car,Rainy,2020-01-15 14:28:12.338467,2020-04-22 14:28:12.338467,11.0,39.0,2.0,,Fractured arm and leg.,No,No,Female
+1020.0,Rear end,A. 1 month,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Rainy,2021-04-29 12:35:51.790358,2022-02-27 12:35:51.790358,1.0,63.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Other
+994.8,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.8,150.0,No,No,Arms,Yes,Truck,Rainy,2023-06-09 20:25:41.108221,2023-07-07 20:25:41.108221,17.0,40.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+650.0,Rear end - 3 car - Clt at front,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,390.0,No,Yes,Legs,No,Car,Snowy,2022-03-24 23:12:10.946189,2023-02-23 23:12:10.946189,6.0,64.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2023-09-13 15:30:42.848569,2024-06-05 15:30:42.848569,19.0,20.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Female
+983.91,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.2,0.0,520.0,0.0,0.0,0.0,220.21,400.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2021-09-21 09:15:39.787957,2021-11-12 09:15:39.787957,11.0,20.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+1172.95,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,446.95,0.0,0.0,520.0,0.0,0.0,0.0,0.0,300.0,No,Yes,Hips,Yes,Car,Sunny,2023-06-23 06:51:38.059611,2023-11-13 06:51:38.059611,19.0,29.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+1335.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,686.0,No,Yes,Hips,Yes,Car,Sunny,2023-05-20 09:46:11.834366,2023-09-29 09:46:11.834366,13.0,40.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+1472.0,Rear end,F. 6 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,90.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2022-07-12 04:43:09.637927,2023-06-23 04:43:09.637927,9.0,64.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Female
+2286.96,Rear end - 3 car - Clt at front,J. 10 months,0.0,0.0,0.0,700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,20.16,0.0,246.8,No,No,Legs,Yes,Car,Rainy,2021-04-16 09:10:28.685737,2021-11-09 09:10:28.685737,8.0,28.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+900.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,405.0,No,No,Arms,Yes,Car,Snowy,2022-03-10 01:43:24.760952,2022-05-11 01:43:24.760952,14.0,59.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+1390.0,Other side pulled out of side road,A. 1 month,0.0,0.0,1000.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Snowy,2020-04-28 13:49:01.788357,2021-04-26 13:49:01.788357,19.0,69.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Other
+1088.64,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,8.64,275.0,No,Yes,Legs,Yes,Car,,2022-09-13 20:46:08.233646,,9.0,64.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Female
+1645.0,Other,H. 8 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2023-05-10 18:27:34.890978,2023-06-20 18:27:34.890978,18.0,67.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Male
+2190.0,Rear end,L. 12 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2021-02-08 05:00:43.928785,2021-08-28 05:00:43.928785,18.0,74.0,4.0,Rear-ended at a stoplight.,,Yes,Yes,Other
+1546.7,Rear end,F. 6 months,0.0,,0.0,1606.0,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,103.0,0.0,0.0,12.0,0.0,,Yes,Legs,No,Motorcycle,Rainy,2022-12-15 03:44:23.812762,2023-03-24 03:44:23.812762,11.0,63.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+1170.0,,F. 6 months,0.0,0.0,0.0,0.0,0.0,761.94,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2023-08-06 23:17:56.615323,2024-06-12 23:17:56.615323,11.0,46.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+1876.86,Other side pulled out of side road,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,17.1,0.0,675.0,No,No,Arms,No,Car,Snowy,2023-12-04 17:09:13.790758,2024-09-13 17:09:13.790758,8.0,74.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Rainy,2022-04-27 13:17:03.324664,2023-04-19 13:17:03.324664,19.0,23.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+1749.0,Rear end,E. 5 months,0.0,0.0,0.0,920.0,0.0,0.0,230.0,0.0,304.0,0.0,0.0,520.0,0.0,0.0,0.0,54.36,443.05,No,Yes,Legs,No,Truck,Snowy,2021-04-20 18:18:56.387277,2021-06-06 18:18:56.387277,3.0,63.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+675.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,175.0,No,Yes,Multiple,No,Motorcycle,Snowy,2022-08-10 16:40:08.161632,2022-12-25 16:40:08.161632,0.0,33.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+1320.0,Rear end,J. 10 months,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,,0.0,1320.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Sunny,2020-10-26 15:38:46.785357,2021-03-05 15:38:46.785357,15.0,51.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Male
+607.2,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,80.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,7.2,0.0,No,Yes,Multiple,No,Car,Rainy,2022-05-22 23:06:07.993598,2022-12-03 23:06:07.993598,0.0,68.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+982.0,Rear end,E. 5 months,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Arms,No,Motorcycle,Sunny,2021-10-11 12:54:35.215043,2022-02-05 12:54:35.215043,12.0,,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+1186.0,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,1028.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,27.9,455.0,No,Yes,Legs,Yes,Truck,Rainy,2022-05-02 19:27:12.566513,2023-05-01 19:27:12.566513,2.0,28.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+1334.5,Rear end - Clt pushed into next vehicle,I. 9 months,0.0,0.0,0.0,1548.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,83.2,0.0,Yes,Yes,Multiple,Yes,Motorcycle,Sunny,2023-06-14 05:34:08.809761,2023-08-22 05:34:08.809761,11.0,28.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Female
+1390.0,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2023-05-31 12:07:38.011602,2023-06-28 12:07:38.011602,8.0,70.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+3590.0,Other side pulled on to roundabout,L. 12 months,0.0,0.0,0.0,2200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Rainy,2022-03-23 19:09:55.559111,2023-02-21 19:09:55.559111,3.0,78.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Other
+1152.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,375.0,No,No,Arms,No,Car,Rainy,2021-02-16 16:17:05.485097,2021-03-02 16:17:05.485097,1.0,42.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+240.0,Rear end,A. 1 month,,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,,Multiple,Yes,Truck,,2023-09-04 14:13:13.598719,2023-10-20 14:13:13.598719,8.0,75.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+1245.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,100.0,625.0,No,Yes,Multiple,Yes,Car,Rainy,2022-12-01 10:17:53.014602,2022-12-17 10:17:53.014602,19.0,36.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+1120.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Snowy,2022-03-31 02:24:01.728345,2022-10-26 02:24:01.728345,12.0,49.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+1595.0,Other side drove on wrong side of the road,F. 6 months,0.0,0.0,0.0,1100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Snowy,2022-08-30 20:19:03.588717,2023-02-04 20:19:03.588717,13.0,67.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Male
+360.0,Rear end,B. 2 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,2021-09-28 02:28:38.263652,2022-08-31 02:28:38.263652,2.0,75.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+1133.63,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.23,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Arms,Yes,Car,Sunny,2020-08-20 18:29:35.875175,2021-04-04 18:29:35.875175,17.0,25.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+1445.0,Rear end,H. 8 months,0.0,0.0,0.0,1903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Rainy,2022-04-11 04:45:27.905581,2022-12-08 04:45:27.905581,8.0,72.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+1770.0,Rear end - Clt pushed into next vehicle,I. 9 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Arms,No,Motorcycle,Sunny,2020-09-28 07:44:03.648729,2020-11-25 07:44:03.648729,14.0,29.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Other
+960.0,Rear end,B. 2 months,0.0,0.0,0.0,1102.85,0.0,,,0.0,0.0,0.0,0.0,260.0,0.0,,0.0,0.0,0.0,No,Yes,,Yes,Car,Snowy,2023-11-08 03:17:53.734746,2024-09-07 03:17:53.734746,9.0,58.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Rainy,2022-06-21 18:03:40.364072,2023-04-22 18:03:40.364072,16.0,52.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,,No,Yes,Hips,Yes,Truck,,2021-10-22 15:16:01.392278,2022-10-02 15:16:01.392278,12.0,23.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Other
+1470.0,Rear end,G. 7 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Arms,No,Motorcycle,Rainy,2021-01-24 07:31:57.743548,2021-06-03 07:31:57.743548,0.0,38.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,2021-01-07 01:58:40.784156,2021-08-12 01:58:40.784156,10.0,70.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+631.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,111.0,No,Yes,Legs,Yes,Truck,Sunny,2023-08-31 12:05:19.743948,2023-09-14 12:05:19.743948,4.0,43.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Female
+1701.22,Rear end,B. 2 months,0.0,0.0,0.0,1433.0,0.0,0.0,50.0,6.24,0.0,0.0,0.0,260.0,0.0,0.0,1.98,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2022-10-13 08:43:06.757351,2023-10-07 08:43:06.757351,8.0,73.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+4421.0,Rear end,Q. 17 months,0.0,0.0,0.0,0.0,0.0,0.0,170.0,0.0,0.0,0.0,0.0,3100.0,0.0,1.0,0.0,0.0,1150.0,No,Yes,Arms,Yes,Truck,Snowy,2022-09-03 01:25:15.903180,2023-05-04 01:25:15.903180,6.0,18.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+570.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Hips,,Car,Rainy,2020-12-21 10:26:31.518303,,6.0,34.0,2.0,Rear-ended at a stoplight.,,Yes,No,Male
+1500.0,Other,G. 7 months,0.0,0.0,0.0,1187.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2021-03-03 13:45:51.670334,2022-01-23 13:45:51.670334,1.0,52.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+942.5,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,76.0,No,Yes,Multiple,No,Truck,Sunny,2023-07-11 09:26:36.559311,2023-10-22 09:26:36.559311,18.0,44.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Snowy,2023-05-04 01:14:36.415283,2023-12-07 01:14:36.415283,19.0,67.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Male
+2232.0,Other,H. 8 months,0.0,0.0,0.0,1537.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2023-10-25 02:50:49.089817,2024-10-17 02:50:49.089817,17.0,67.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Female
+1100.03,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,210.0,0.0,214.0,0.0,0.0,520.0,0.0,0.0,0.0,118.04,406.99,No,Yes,Multiple,No,Motorcycle,Snowy,2020-01-04 19:07:20.008001,2020-03-08 19:07:20.008001,9.0,19.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+687.56,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,214.23,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,2021-10-31 16:33:30.642128,2022-04-07 16:33:30.642128,4.0,53.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Male
+925.0,,F. 6 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,455.0,,No,Arms,Yes,Truck,Rainy,2021-08-20 06:13:36.643328,2022-01-29 06:13:36.643328,15.0,18.0,,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,,No,,Hips,No,Car,Snowy,,2020-11-16 20:44:59.099819,4.0,27.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Female
+1088.64,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,8.64,275.0,No,Yes,Hips,No,Truck,Rainy,2023-04-20 14:48:39.463892,2023-11-22 14:48:39.463892,14.0,48.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+1895.0,Rear end,H. 8 months,0.0,0.0,400.0,1103.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2021-03-02 02:43:02.436487,2022-01-15 02:43:02.436487,15.0,,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+1135.0,Other side pulled out of side road,G. 7 months,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,895.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Multiple,No,Car,,,2020-05-03 18:24:24.772954,3.0,79.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+988.0,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,132.0,No,Yes,Hips,No,Truck,Sunny,2023-04-20 21:49:13.310662,2023-06-15 21:49:13.310662,13.0,54.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+1057.76,Other side drove on wrong side of the road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.35,0.0,0.0,0.0,520.0,0.0,0.0,10.8,459.71,68.7,No,Yes,Legs,No,Motorcycle,Snowy,2023-04-04 13:17:37.891578,2024-03-16 13:17:37.891578,16.0,22.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+1700.0,Rear end,G. 7 months,0.0,0.0,200.0,1035.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2021-01-09 17:03:45.405081,2021-03-08 17:03:45.405081,16.0,58.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Male
+895.0,Other side drove on wrong side of the road,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Hips,No,Car,Sunny,2022-10-15 09:47:03.684736,2023-03-19 09:47:03.684736,15.0,63.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+895.0,Other side pulled on to roundabout,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2021-09-29 20:32:01.344268,2021-11-23 20:32:01.344268,8.0,70.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+1195.0,Rear end,G. 7 months,0.0,0.0,0.0,1444.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,,Motorcycle,Snowy,2020-04-14 13:21:57.143428,2021-03-21 13:21:57.143428,1.0,30.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Other
+2051.32,Other,G. 7 months,0.0,0.0,0.0,1112.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,45.19,10.43,308.7,No,Yes,Legs,No,Truck,Sunny,2023-01-12 04:38:33.102620,2023-01-31 04:38:33.102620,10.0,62.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Other
+1110.0,Rear end,H. 8 months,0.0,0.0,0.0,1363.0,0.0,0.0,0.0,,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Snowy,2023-11-17 04:35:22.984596,2024-04-16 04:35:22.984596,,76.0,,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+495.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,,0.0,0.0,0.0,No,No,Multiple,Yes,Car,,2022-07-19 18:57:49.653930,2023-07-13 18:57:49.653930,2.0,79.0,4.0,Side collision at an intersection.,,Yes,Yes,Male
+,Rear end,C. 3 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Snowy,2023-08-06 23:17:56.615323,2023-11-22 23:17:56.615323,15.0,41.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Male
+1443.21,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,574.21,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,518.0,No,Yes,Arms,No,Car,Snowy,2020-12-23 18:31:02.292458,2021-02-08 18:31:02.292458,18.0,44.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+1590.0,Rear end,K. 11 months,0.0,0.0,0.0,556.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2021-11-01 20:35:46.029205,2022-05-27 20:35:46.029205,5.0,18.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+1059.5,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,49.5,0.0,0.0,0.0,515.0,Yes,No,Multiple,Yes,Motorcycle,Sunny,2020-03-21 21:36:15.555111,2021-03-19 21:36:15.555111,13.0,66.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Male
+567.98,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,28.8,50.0,No,Yes,Multiple,Yes,Car,Rainy,2023-05-13 16:33:13.358671,2024-04-17 16:33:13.358671,4.0,37.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Male
+925.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,415.13,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,130.0,Yes,Yes,Multiple,No,Car,Rainy,2021-08-03 00:40:19.683936,2021-12-09 00:40:19.683936,4.0,25.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Female
+1829.2,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,51.84,574.0,No,Yes,Multiple,No,Car,Snowy,2022-11-01 01:19:12.950590,2023-05-05 01:19:12.950590,5.0,20.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+1730.29,Rear end,E. 5 months,0.0,0.0,0.0,1028.0,0.0,0.0,0.0,0.0,456.44,0.0,0.0,520.0,0.0,0.0,0.0,4.5,9.35,No,Yes,Legs,Yes,Car,Sunny,2022-03-26 17:15:34.026805,2022-05-23 17:15:34.026805,17.0,66.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Female
+830.0,Rear end,F. 6 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Multiple,Yes,Car,Sunny,2020-04-24 04:40:34.086817,2020-09-14 04:40:34.086817,17.0,49.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Female
+1253.0,Rear end,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,91.62,518.0,No,Yes,Legs,No,Motorcycle,Rainy,2020-10-09 17:06:03.672734,2021-01-14 17:06:03.672734,18.0,76.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+538.5,Rear end,E. 5 months,0.0,0.0,600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,104.4,0.0,No,No,Multiple,Yes,Car,Sunny,2021-10-01 14:35:24.424884,2021-11-17 14:35:24.424884,1.0,61.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+651.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,253.0,No,Yes,Arms,No,Motorcycle,Snowy,2021-10-12 16:56:50.602120,2022-04-21 16:56:50.602120,16.0,74.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Female
+945.0,Rear end,H. 8 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,,No,Yes,Hips,No,Car,Snowy,2022-02-05 22:41:21.616323,2022-06-25 22:41:21.616323,0.0,,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Female
+2356.0,Other side turned across Clt's path,C. 3 months,0.0,0.0,0.0,2116.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Sunny,2022-04-10 21:44:54.058811,2022-07-22 21:44:54.058811,8.0,42.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Other
+1555.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Multiple,Yes,Truck,Snowy,2023-06-28 13:01:47.301460,2024-02-14 13:01:47.301460,12.0,42.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+1671.0,Rear end,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,36.0,0.0,400.0,No,No,Arms,No,Car,Rainy,2022-08-23 20:05:31.266253,2023-07-29 20:05:31.266253,3.0,67.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+624.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,0.0,Yes,Yes,Hips,Yes,Truck,Snowy,2022-01-29 08:26:41.600320,2022-03-19 08:26:41.600320,4.0,31.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+895.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2022-02-21 17:11:49.341868,2022-06-13 17:11:49.341868,17.0,79.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+1600.0,Rear end,E. 5 months,0.0,0.0,0.0,1444.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Hips,Yes,Car,Rainy,2023-06-30 07:05:10.382076,2024-05-11 07:05:10.382076,9.0,60.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+7862.9,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,7735.58,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2023-11-13 23:29:10.670134,2024-09-30 23:29:10.670134,3.0,44.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Female
+950.0,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Legs,No,Car,Rainy,2020-01-25 19:47:56.975395,2020-04-21 19:47:56.975395,12.0,65.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Other
+642.75,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,51.0,163.0,No,Yes,Hips,No,Truck,Sunny,2022-07-04 07:27:55.775155,2023-04-12 07:27:55.775155,12.0,49.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+895.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Snowy,2023-08-06 23:17:56.615323,2024-06-28 23:17:56.615323,16.0,44.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Other
+240.0,Other side pulled out of side road,B. 2 months,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Snowy,2021-10-15 22:03:02.916583,2022-06-24 22:03:02.916583,7.0,21.0,,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Female
+1208.14,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,688.14,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2022-09-09 11:37:40.532106,2022-11-22 11:37:40.532106,3.0,67.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+984.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,464.0,No,Yes,Arms,Yes,Car,Snowy,2021-08-20 06:13:36.643328,2021-10-06 06:13:36.643328,2.0,56.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+260.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2020-11-03 19:54:34.494898,2021-01-18 19:54:34.494898,10.0,28.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Other
+240.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Snowy,2022-09-20 06:58:32.862572,2022-12-25 06:58:32.862572,11.0,65.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,,Yes,Hips,Yes,,Snowy,2022-12-25 02:03:34.602920,2023-01-25 02:03:34.602920,8.0,,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Male
+847.5,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Legs,No,Car,Sunny,2022-02-18 12:05:37.027405,2022-03-12 12:05:37.027405,14.0,20.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Male
+1701.22,Rear end,B. 2 months,0.0,0.0,0.0,1433.0,0.0,0.0,50.0,6.24,0.0,0.0,0.0,260.0,0.0,0.0,1.98,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2020-03-21 07:35:07.861572,2020-04-07 07:35:07.861572,12.0,42.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Female
+1200.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,425.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,,0.0,0.0,,,Hips,,Truck,Rainy,2023-10-18 02:37:16.767353,2024-05-17 02:37:16.767353,4.0,72.0,3.0,Lost control on a snowy road.,,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Sunny,2023-04-09 12:27:13.286657,2023-09-04 12:27:13.286657,4.0,41.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Female
+1008.3,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,237.0,No,No,Multiple,Yes,Motorcycle,Rainy,2020-11-18 17:23:20.680136,2021-07-11 17:23:20.680136,18.0,26.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+1284.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,,0.0,0.0,,0.0,130.0,0.0,0.0,520.0,0.0,0.0,,54.0,450.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2023-09-29 03:00:36.727345,2024-09-17 03:00:36.727345,10.0,25.0,4.0,Lost control on a snowy road.,,No,No,Female
+1039.7,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,183.7,No,Yes,Arms,No,Truck,Rainy,2022-05-06 07:33:58.727745,2023-03-07 07:33:58.727745,8.0,56.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,8.4,0.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2020-02-07 09:12:12.386477,2020-05-04 09:12:12.386477,2.0,48.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+1529.0,Other,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Legs,No,Car,Sunny,2023-06-24 17:54:27.293458,2023-08-01 17:54:27.293458,17.0,74.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Female
+889.6,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Arms,Yes,Truck,Sunny,2023-06-17 10:40:21.124224,2023-08-09 10:40:21.124224,12.0,76.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Other
+285.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,45.0,No,Yes,Hips,No,Car,Snowy,2022-11-08 01:32:45.273054,2022-12-06 01:32:45.273054,11.0,34.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2021-12-02 12:34:59.939988,2022-02-17 12:34:59.939988,8.0,60.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Sunny,2021-04-26 00:29:05.629125,2021-11-12 00:29:05.629125,9.0,48.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+534.0,Rear end,C. 3 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,230.0,No,Yes,Multiple,Yes,Car,Rainy,,2023-04-26 13:25:59.111822,12.0,21.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+550.2,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,55.2,0.0,No,No,Arms,Yes,Motorcycle,Sunny,2023-02-10 09:34:57.779555,2023-11-11 09:34:57.779555,19.0,21.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Male
+800.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,180.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,76.8,300.0,No,Yes,Legs,No,Motorcycle,Sunny,2021-10-02 11:37:05.965193,2021-11-21 11:37:05.965193,19.0,54.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Male
+941.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,36.0,No,Yes,Arms,Yes,Truck,Sunny,2021-08-20 20:14:44.336867,2022-07-31 20:14:44.336867,12.0,25.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Male
+820.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,400.0,No,No,Legs,No,Car,Rainy,2022-06-25 13:11:00.372074,2022-12-19 13:11:00.372074,8.0,59.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+762.75,Other,E. 5 months,0.0,0.0,0.0,20.0,0.0,222.75,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2023-06-25 21:56:42.680536,2024-04-21 21:56:42.680536,9.0,66.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Female
+1429.32,Rear end,G. 7 months,0.0,0.0,0.0,524.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,10.32,0.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2021-09-15 06:03:49.005801,2022-04-30 06:03:49.005801,18.0,23.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+629.23,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,,0.0,0.0,0.0,0.0,289.2,0.0,0.0,0.0,0.0,0.0,520.0,,,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2020-09-02 21:54:58.979795,2021-01-07 21:54:58.979795,5.0,26.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Male
+525.25,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,5.25,0.0,No,Yes,Multiple,Yes,Car,Sunny,2021-07-29 15:31:51.982396,2022-07-13 15:31:51.982396,6.0,59.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+1115.8,Rear end,G. 7 months,0.0,0.0,0.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,25.8,0.0,No,No,Legs,No,Motorcycle,Snowy,2023-06-27 08:59:31.914382,2023-07-18 08:59:31.914382,14.0,25.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+600.8,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,120.0,0.0,,520.0,0.0,0.0,0.0,10.8,70.0,No,Yes,Legs,Yes,Motorcycle,,2023-02-13 21:41:43.940788,2023-08-31 21:41:43.940788,18.0,49.0,,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Other
+1819.4,Rear end,E. 5 months,0.0,0.0,100.0,2230.0,0.0,0.0,870.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,11.4,0.0,235.0,No,Yes,Hips,No,Truck,Rainy,2022-11-21 04:58:08.377675,2023-05-29 04:58:08.377675,13.0,32.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+1415.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,78.0,455.0,No,Yes,Legs,No,Truck,Rainy,2020-04-24 04:40:34.086817,2021-03-22 04:40:34.086817,15.0,35.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2021-10-27 14:25:36.787357,2022-03-28 14:25:36.787357,13.0,40.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+787.1800000000001,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,22.18,270.0,No,No,Arms,No,Car,Sunny,2020-09-19 20:27:42.092418,2021-02-26 20:27:42.092418,19.0,22.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+800.05,Rear end - Clt pushed into next vehicle,A. 1 month,0.0,0.0,0.0,560.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Snowy,2023-09-29 17:01:44.420884,2024-09-10 17:01:44.420884,1.0,67.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+1259.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,185.0,Yes,Yes,Legs,Yes,Truck,Sunny,2021-12-29 09:26:53.842768,2022-04-04 09:26:53.842768,8.0,44.0,,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+1924.2,Rear end,F. 6 months,0.0,0.0,0.0,480.0,0.0,0.0,110.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,25.0,789.2,No,Yes,Hips,No,Motorcycle,Snowy,2020-12-02 10:49:51.478295,2021-11-19 10:49:51.478295,2.0,50.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Other
+1854.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,2021-01-12 22:09:57.719543,2021-03-28 22:09:57.719543,5.0,19.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+640.6,Rear end - 3 car - Clt at front,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,182.0,No,No,Hips,No,Car,Snowy,2020-05-15 19:22:18.747749,2020-08-05 19:22:18.747749,4.0,76.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Other
+840.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,400.0,No,Yes,Hips,Yes,Truck,Sunny,2021-09-27 05:26:56.723344,2022-02-02 05:26:56.723344,13.0,59.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+260.0,Other side reversed into clt's stationary vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2022-08-05 17:30:32.766553,2023-07-30 17:30:32.766553,14.0,55.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Female
+616.76,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,351.2,0.0,0.0,260.0,52.0,0.0,0.0,5.56,0.0,Yes,Yes,Hips,No,Car,Rainy,2020-05-22 05:34:43.376675,2020-10-02 05:34:43.376675,17.0,76.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,,No,Yes,Arms,,Truck,Sunny,2022-05-08 01:37:21.808361,2022-09-24 01:37:21.808361,16.0,45.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2022-02-05 22:41:21.616323,2022-10-09 22:41:21.616323,8.0,41.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,,0.0,No,,Arms,Yes,Car,Snowy,2020-10-04 03:55:20.584116,2021-07-22 03:55:20.584116,18.0,68.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+495.0,Rear end - 3 car - Clt at front,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,,0.0,0.0,,0.0,No,No,Legs,Yes,Car,Sunny,2023-08-07 13:19:04.308861,2023-11-27 13:19:04.308861,8.0,38.0,,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+3065.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,,2160.0,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,0.0,0.0,0.0,0.0,794.35,No,,Multiple,Yes,Truck,Rainy,,2021-05-24 08:51:45.261052,15.0,48.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+345.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,182.0,No,No,Arms,No,Motorcycle,Rainy,2023-04-05 03:18:45.585117,2023-09-22 03:18:45.585117,5.0,28.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+1044.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,33.84,805.95,No,No,Arms,No,Truck,Sunny,2023-07-26 06:55:22.744548,2023-10-21 06:55:22.744548,7.0,67.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Female
+600.0,Rear end,D. 4 months,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,105.0,,No,Multiple,Yes,Motorcycle,Rainy,,2021-06-08 23:04:07.009401,2.0,,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+1060.65,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,84.0,1034.98,No,Yes,Arms,Yes,Car,Snowy,2020-11-12 07:10:56.051210,2021-02-18 07:10:56.051210,4.0,65.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Other
+910.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,48.6,375.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2023-09-18 21:40:52.090418,2024-05-15 21:40:52.090418,6.0,57.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+840.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,400.0,No,Yes,Hips,No,Car,Sunny,2021-04-29 05:35:17.943588,2022-04-01 05:35:17.943588,0.0,21.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Male
+1639.5,Rear end,F. 6 months,0.0,0.0,0.0,1256.0,889.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,30.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2023-07-05 06:14:45.777155,2023-11-20 06:14:45.777155,3.0,60.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+1510.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,120.0,No,Yes,Legs,Yes,Truck,Snowy,2021-06-14 16:04:59.579915,2021-09-04 16:04:59.579915,15.0,59.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+260.0,Rear end - 3 car - Clt at front,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2020-02-25 11:47:10.886177,2020-10-18 11:47:10.886177,13.0,33.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+682.0699999999999,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,162.07,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,0.0,0.0,No,Yes,Multiple,No,Truck,Sunny,2020-05-14 08:19:29.513902,2020-09-27 08:19:29.513902,0.0,29.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+4034.0,Rear end,J. 10 months,0.0,0.0,0.0,2400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,244.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2022-01-06 06:42:07.705541,2022-10-15 06:42:07.705541,3.0,39.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Male
+1730.29,,E. 5 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,456.44,0.0,0.0,520.0,0.0,0.0,0.0,4.5,9.35,No,Yes,,No,Motorcycle,Rainy,2022-10-12 04:40:51.370274,2022-10-15 04:40:51.370274,9.0,,3.0,,Whiplash and minor bruises.,No,Yes,Other
+1700.0,Rear end,B. 2 months,0.0,0.0,0.0,1469.0,0.0,0.0,140.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2022-03-01 00:25:55.511102,2022-04-29 00:25:55.511102,10.0,60.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Female
+1854.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2023-06-29 03:02:54.994999,2023-10-23 03:02:54.994999,6.0,73.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Female
+804.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,24.0,0.0,294.0,No,No,Legs,Yes,Car,Rainy,2020-12-03 21:52:40.712142,2021-04-13 21:52:40.712142,3.0,33.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+895.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2023-05-30 22:06:30.318063,2023-12-17 22:06:30.318063,0.0,41.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+1835.0,Other,H. 8 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Arms,Yes,Truck,Rainy,2020-01-08 21:15:13.862772,2020-10-26 21:15:13.862772,0.0,52.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Female
+2061.91,Rear end,G. 7 months,,0.0,0.0,523.25,0.0,580.91,,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,433.0,Yes,Yes,Arms,Yes,Truck,Rainy,2023-05-20 16:46:45.681136,,16.0,45.0,1.0,,Whiplash and minor bruises.,Yes,No,Male
+1970.06,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,5.31,574.0,Yes,Yes,Hips,No,Motorcycle,Snowy,2022-05-17 23:56:32.598519,2022-08-23 23:56:32.598519,9.0,74.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Male
+1695.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Hips,No,Truck,Rainy,2022-06-02 04:25:52.630526,2023-01-04 04:25:52.630526,4.0,59.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Male
+1181.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Multiple,No,Motorcycle,Snowy,2023-12-26 07:50:58.451690,2024-04-28 07:50:58.451690,6.0,46.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Rainy,2021-01-04 03:53:02.316463,2021-03-18 03:53:02.316463,7.0,38.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Other
+1615.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,720.0,Yes,Yes,Legs,Yes,Motorcycle,Sunny,2020-09-06 17:02:18.987797,2021-01-14 17:02:18.987797,1.0,65.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2023-03-21 12:50:33.246649,2023-04-17 12:50:33.246649,8.0,75.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+1817.0,Other,H. 8 months,0.0,0.0,0.0,1546.0,0.0,0.0,1050.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,36.0,0.0,275.0,No,Yes,Arms,No,Motorcycle,Sunny,2020-12-31 08:45:42.308461,2021-06-14 08:45:42.308461,3.0,42.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Other
+845.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Legs,No,Car,Rainy,2023-09-06 15:17:10.526105,2023-11-13 15:17:10.526105,11.0,56.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+1179.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,284.0,Yes,Yes,Multiple,No,Truck,Rainy,2023-02-04 06:23:06.997399,2023-02-18 06:23:06.997399,10.0,48.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+1820.0,Rear end,F. 6 months,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Sunny,2021-01-22 06:28:00.816163,2021-04-30 06:28:00.816163,4.0,32.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Other
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,260.0,,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2020-10-26 08:38:12.938587,,11.0,64.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+261.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,1.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2020-04-15 10:23:38.683736,2020-12-18 10:23:38.683736,3.0,59.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2020-12-21 17:27:05.365073,2021-04-12 17:27:05.365073,12.0,52.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+1850.23,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,350.0,1725.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,600.23,0.0,0.0,190.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2020-06-25 16:41:17.295459,2021-01-18 16:41:17.295459,0.0,55.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Female
+1409.99,Rear end - Clt pushed into next vehicle,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,80.0,0.0,89.99,0.0,0.0,1320.0,0.0,0.0,0.0,87.6,0.0,No,,Multiple,,Truck,Snowy,2021-05-02 17:42:04.104820,2022-04-19 17:42:04.104820,17.0,,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Male
+723.9300000000001,Other side reversed into clt's stationary vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.98,0.0,0.0,520.0,0.0,0.0,0.0,3.95,126.0,No,Yes,Arms,No,Motorcycle,Sunny,2023-11-06 02:13:56.807361,2024-10-05 02:13:56.807361,3.0,67.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+943.9,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,5.88,576.78,No,Yes,Legs,No,Car,Rainy,2021-11-01 20:35:46.029205,2022-06-22 20:35:46.029205,3.0,39.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Male
+895.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1610.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2021-10-02 18:37:39.811962,2021-12-02 18:37:39.811962,7.0,77.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Male
+820.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,325.0,No,No,Legs,Yes,Truck,Snowy,2023-07-21 14:46:21.196239,2023-10-14 14:46:21.196239,19.0,22.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+530.8,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,10.8,No,Yes,Arms,Yes,Truck,Sunny,2021-01-07 23:00:22.324464,2021-07-09 23:00:22.324464,5.0,65.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Female
+908.16,Other,F. 6 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,38.16,350.0,No,,Legs,No,Truck,Snowy,2020-04-26 05:44:31.014202,2020-12-21 05:44:31.014202,3.0,30.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+1695.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Multiple,Yes,Car,Sunny,2021-09-26 08:25:15.183036,2022-06-03 08:25:15.183036,3.0,49.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Other
+2500.0,Rear end,J. 10 months,0.0,0.0,0.0,1410.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2022-03-31 16:25:09.421884,2022-06-10 16:25:09.421884,10.0,20.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Female
+240.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Car,Snowy,2022-02-13 12:56:01.632326,2022-09-29 12:56:01.632326,8.0,79.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+720.0,Other side turned across Clt's path,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,460.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Rainy,2022-05-08 08:37:55.655131,2022-08-01 08:37:55.655131,13.0,32.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+795.0,Rear end,E. 5 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,345.0,No,Yes,Arms,,Truck,Rainy,2020-08-27 18:43:08.197639,2021-06-29 18:43:08.197639,3.0,72.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2023-12-30 09:58:52.306461,2024-09-26 09:58:52.306461,12.0,44.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+1642.5,Other,C. 3 months,0.0,0.0,0.0,2140.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,211.0,No,Yes,Multiple,No,Truck,Sunny,2020-10-02 16:52:31.350270,2021-07-19 16:52:31.350270,5.0,69.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+3055.0,Rear end,F. 6 months,0.0,0.0,0.0,2875.0,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,60.0,0.0,0.0,,0.0,Yes,Yes,Arms,No,,Sunny,2022-10-12 18:41:59.063812,2023-06-05 18:41:59.063812,12.0,44.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+903.16,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,8.16,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2022-03-22 15:07:40.172034,2023-01-07 15:07:40.172034,2.0,47.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Other
+3100.0,Other,P. 16 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,Yes,Car,Sunny,2023-07-17 12:38:27.341468,2023-08-25 12:38:27.341468,6.0,23.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+1390.0,Rear end - 3 car - Clt at front,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,250.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2023-07-23 15:50:18.123624,2024-02-14 15:50:18.123624,0.0,42.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+260.0,Other,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2020-12-15 07:14:40.736147,2021-06-16 07:14:40.736147,10.0,45.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+890.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,370.0,No,Yes,Legs,No,Motorcycle,Snowy,2020-12-19 23:23:42.284456,2021-06-24 23:23:42.284456,1.0,79.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+260.0,Rear end - 3 car - Clt at front,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2020-08-28 08:44:15.891178,2021-01-08 08:44:15.891178,4.0,39.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+1295.0,Rear end,H. 8 months,0.0,0.0,0.0,985.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2021-07-07 17:49:33.474694,2021-08-06 17:49:33.474694,13.0,21.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+1395.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,955.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Sunny,2023-05-30 01:04:48.777755,2024-02-09 01:04:48.777755,12.0,32.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2021-12-06 07:42:19.947989,2022-04-28 07:42:19.947989,15.0,43.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Female
+498.78,Rear end,D. 4 months,0.0,0.0,0.0,,0.0,0.0,,0.0,,0.0,0.0,495.0,0.0,0.0,0.0,,0.0,No,No,Multiple,No,Truck,Snowy,2020-06-05 06:01:48.021604,2020-09-16 06:01:48.021604,14.0,35.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+955.7,Rear end - Clt pushed into next vehicle,I. 9 months,0.0,0.0,0.0,1725.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,68.7,No,Yes,Arms,Yes,Motorcycle,Rainy,2022-05-29 02:17:58.775755,2022-08-11 02:17:58.775755,2.0,26.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+2195.44,Rear end - Clt pushed into next vehicle,J. 10 months,0.0,0.0,360.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,43.14,27.3,375.0,No,Yes,Hips,No,Motorcycle,Sunny,2022-02-06 05:41:55.463092,2022-04-02 05:41:55.463092,5.0,79.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+1818.94,Rear end,A. 1 month,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,,0.0,0.0,0.0,240.0,0.0,0.0,7.8,0.0,801.14,No,No,Legs,No,Motorcycle,Rainy,2023-01-08 02:30:39.247849,2023-09-01 02:30:39.247849,8.0,,4.0,,Concussion and bruised ribs.,Yes,No,Other
+1781.46,Rear end,F. 6 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,31.46,230.0,No,Yes,Hips,No,Motorcycle,Sunny,2020-10-04 03:55:20.584116,2020-12-03 03:55:20.584116,2.0,21.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Male
+520.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2022-10-21 12:58:54.466893,2022-11-14 12:58:54.466893,12.0,65.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+1975.0,Rear end,C. 3 months,0.0,0.0,0.0,1610.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,125.0,No,No,Arms,No,Car,Rainy,2023-06-10 10:26:48.801760,2023-07-02 10:26:48.801760,12.0,67.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+1114.6,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Hips,No,Car,Snowy,2020-06-07 14:06:18.795759,2020-07-09 14:06:18.795759,6.0,22.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Sunny,2023-02-13 00:40:02.400480,2024-01-30 00:40:02.400480,4.0,62.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Female
+1570.58,Other side drove on wrong side of the road,H. 8 months,0.0,0.0,0.0,1102.85,0.0,309.4,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,14.43,0.0,Yes,Yes,Hips,Yes,Car,Snowy,2023-01-01 02:17:06.925385,2023-12-06 02:17:06.925385,7.0,23.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2023-05-18 15:42:48.753750,2023-05-21 15:42:48.753750,7.0,75.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
+570.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2021-08-31 01:34:28.973794,2021-11-09 01:34:28.973794,6.0,71.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Male
+520.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2022-04-17 00:56:44.840968,2022-09-24 00:56:44.840968,18.0,68.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2021-10-17 23:06:59.843968,2022-01-13 23:06:59.843968,6.0,29.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+1157.2,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,7.2,350.0,No,Yes,Hips,No,Motorcycle,Sunny,2021-06-20 05:15:42.668533,2021-08-18 05:15:42.668533,3.0,48.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+1107.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,24.0,735.0,No,No,Arms,Yes,Truck,Rainy,2020-01-23 04:42:52.354470,2020-10-01 04:42:52.354470,9.0,64.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Male
+1039.0,Other side reversed into clt's stationary vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,183.0,No,Yes,Arms,Yes,Truck,Snowy,2020-04-17 11:27:35.611122,2020-11-22 11:27:35.611122,12.0,79.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+520.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2023-09-11 14:26:45.921184,2024-03-30 14:26:45.921184,3.0,26.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Female
+240.0,Other side changed lanes on a roundabout colliding with clt's vehicle,A. 1 month,,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,,Yes,Motorcycle,,2020-04-11 15:16:18.675735,2020-06-27 15:16:18.675735,18.0,24.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Other
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2023-09-05 18:15:28.985797,2024-05-17 18:15:28.985797,9.0,46.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+780.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Sunny,2023-10-15 18:32:45.993198,2024-06-18 18:32:45.993198,6.0,31.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Female
+290.0,Rear end,A. 1 month,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Snowy,2023-06-19 11:44:18.051610,2024-03-15 11:44:18.051610,4.0,68.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Male
+597.19,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99,0.0,0.0,260.0,0.0,0.0,25.2,0.0,294.0,No,Yes,Arms,No,Motorcycle,Rainy,2021-02-28 22:40:47.049409,2022-01-01 22:40:47.049409,2.0,37.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+265.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,25.0,No,No,Arms,No,Truck,Snowy,2021-09-30 03:32:35.191038,2022-02-16 03:32:35.191038,1.0,65.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+1133.63,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.23,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Multiple,,Motorcycle,Snowy,2023-01-18 00:49:50.038007,,10.0,72.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+621.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,126.0,No,No,Hips,Yes,Car,Sunny,2022-08-13 14:45:46.629325,2022-11-01 14:45:46.629325,9.0,49.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+1195.0,Rear end,G. 7 months,0.0,0.0,0.0,1444.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Hips,No,Motorcycle,Rainy,2022-12-11 08:37:03.804760,2022-12-21 08:37:03.804760,12.0,76.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+1740.0,Other,J. 10 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2021-06-23 03:21:21.136227,2022-05-25 03:21:21.136227,6.0,73.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+1257.6,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,967.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,30.6,0.0,No,Yes,Hips,No,Truck,Sunny,2021-06-25 11:25:51.910382,2021-10-27 11:25:51.910382,9.0,39.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+886.3299999999999,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,31.08,366.33,No,Yes,Hips,No,Motorcycle,Snowy,2022-05-21 19:03:52.606521,2022-11-23 19:03:52.606521,3.0,53.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+545.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,495.0,0.0,0.0,0.0,0.0,126.0,,,Multiple,Yes,Truck,Snowy,2023-07-23 15:50:18.123624,2023-08-26 15:50:18.123624,19.0,61.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+1297.93,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,318.15,0.0,0.0,840.0,0.0,0.0,0.0,200.0,27.93,No,No,Legs,Yes,Truck,Sunny,2022-02-05 15:40:47.769553,2022-06-06 15:40:47.769553,15.0,35.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+1642.5,Other,C. 3 months,0.0,0.0,0.0,2140.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,211.0,No,Yes,Arms,Yes,Truck,Sunny,2022-04-25 05:12:32.550510,2022-07-14 05:12:32.550510,19.0,75.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
+957.5,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Arms,Yes,Truck,Rainy,2020-06-11 23:14:46.497299,2021-01-03 23:14:46.497299,5.0,57.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Other
+603.32,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,660.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,9.6,0.0,No,Yes,Multiple,No,Truck,Snowy,2022-04-25 19:13:40.244048,2022-06-17 19:13:40.244048,8.0,66.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+520.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2021-07-13 21:01:24.256851,2021-12-16 21:01:24.256851,12.0,42.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+849.5,Rear end,F. 6 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,142.0,No,Yes,Hips,Yes,Car,Sunny,2021-01-01 05:47:23.848769,2021-10-02 05:47:23.848769,6.0,48.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+1270.0,Other side pulled from parked position into the path of clt's vehicle,G. 7 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,100.2,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2021-05-05 22:48:16.419283,2022-04-28 22:48:16.419283,17.0,73.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+,Rear end,L. 12 months,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,506.0,No,Yes,Legs,No,Motorcycle,Snowy,2021-06-13 19:03:18.039607,2021-10-26 19:03:18.039607,13.0,52.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+836.0,Rear end,F. 6 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,6.0,400.0,,Yes,Multiple,No,Motorcycle,Rainy,2020-07-12 08:13:26.561312,2020-10-18 08:13:26.561312,4.0,43.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,495.0,0.0,,0.0,0.0,0.0,No,No,Legs,No,Motorcycle,Rainy,2023-04-17 02:41:53.302660,2023-12-14 02:41:53.302660,12.0,21.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+1070.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Legs,No,Car,Snowy,2022-08-29 02:15:40.508101,2022-10-13 02:15:40.508101,7.0,59.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Female
+1390.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-12-28 10:40:03.840768,2021-07-15 10:40:03.840768,14.0,65.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Female
+1775.0,Rear end,F. 6 months,0.0,0.0,0.0,1557.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,205.0,No,Yes,Arms,No,Truck,Rainy,2022-07-06 22:33:00.396079,2023-04-23 22:33:00.396079,18.0,37.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Male
+2495.0,Rear end - Clt pushed into next vehicle,G. 7 months,,0.0,0.0,2075.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2022-06-05 23:33:12.638527,2022-09-27 23:33:12.638527,8.0,51.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+260.0,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2020-02-17 00:30:49.329865,2020-11-20 00:30:49.329865,5.0,29.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+780.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,,2024-01-14 22:43:22.600520,13.0,33.0,4.0,,Whiplash and minor bruises.,No,Yes,Female
+808.0,Other,E. 5 months,0.0,0.0,0.0,115.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Arms,No,Car,Rainy,2021-07-23 12:20:01.200240,2021-12-26 12:20:01.200240,9.0,76.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Other
+1457.41,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,80.16,0.0,0.0,482.25,No,Yes,Legs,Yes,Truck,Rainy,2023-06-15 16:36:58.043608,2024-06-01 16:36:58.043608,8.0,59.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Female
+851.0,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,356.0,No,No,Multiple,Yes,Motorcycle,Rainy,2021-06-04 03:44:41.096219,2021-07-18 03:44:41.096219,16.0,22.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Other
+3224.0,Other,F. 6 months,1152.0,,0.0,2300.0,0.0,,0.0,0.0,0.0,,0.0,520.0,104.0,0.0,0.0,239.4,0.0,Yes,Yes,Hips,Yes,Motorcycle,Sunny,2023-09-27 08:57:13.646729,2023-12-16 08:57:13.646729,12.0,78.0,4.0,,Fractured arm and leg.,No,No,Female
+950.55,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,46.2,9.35,No,Yes,Legs,No,Motorcycle,Sunny,2021-03-07 08:53:11.678335,2022-01-13 08:53:11.678335,16.0,61.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+890.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,370.0,No,Yes,Arms,No,Truck,Rainy,2022-06-03 22:29:15.711142,2022-10-19 22:29:15.711142,18.0,52.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+1020.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,129.04,180.0,No,No,Legs,Yes,Car,Rainy,2023-03-10 03:28:33.222644,2023-08-08 03:28:33.222644,12.0,61.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+884.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,18.6,0.0,406.0,No,,Arms,Yes,Truck,Snowy,2020-01-31 22:59:47.757551,2020-09-29 22:59:47.757551,8.0,44.0,2.0,,Sprained ankle and wrist.,Yes,No,Female
+240.0,Rear end - 3 car - Clt at front,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Snowy,2022-02-18 05:05:03.180636,2022-07-11 05:05:03.180636,0.0,18.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Female
+3020.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,4600.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Rainy,,2024-10-18 07:23:53.806761,0.0,51.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+1345.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,,0.0,,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,541.0,No,Yes,Multiple,Yes,Car,,2020-12-05 22:56:37.639527,2021-09-30 22:56:37.639527,4.0,60.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Male
+973.12,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,75.12,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,3.0,0.0,No,Yes,Arms,Yes,Truck,Sunny,2020-12-03 21:52:40.712142,2021-01-22 21:52:40.712142,7.0,49.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Female
+2405.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,1400.0,0.0,0.0,0.0,0.0,111.0,0.0,,520.0,0.0,0.0,,0.0,574.0,No,Yes,Multiple,,Car,Rainy,2021-10-17 23:06:59.843968,2022-07-06 23:06:59.843968,17.0,,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+781.2,Rear end - 3 car - Clt at front,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,16.2,0.0,350.0,No,Yes,Hips,No,Car,Snowy,2020-07-13 12:15:41.948389,2020-12-21 12:15:41.948389,3.0,56.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Female
+729.0,,E. 5 months,0.0,,0.0,1680.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,133.0,Yes,Yes,Arms,No,Motorcycle,Sunny,2021-09-12 21:59:18.231646,2021-11-13 21:59:18.231646,0.0,50.0,,Lost control on a snowy road.,,Yes,No,Other
+812.7,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,488.5,30.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,34.2,0.0,No,Yes,Multiple,No,Motorcycle,Snowy,2022-05-08 22:39:03.348669,2022-07-02 22:39:03.348669,14.0,48.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+2042.0,Other side turned across Clt's path,L. 12 months,120.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,90.0,607.0,No,Yes,Multiple,No,Car,Snowy,2020-05-29 05:48:15.699139,2020-06-29 05:48:15.699139,19.0,77.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,287.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Sunny,2020-03-13 17:20:27.845569,2021-02-06 17:20:27.845569,3.0,30.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+1845.0,Rear end,G. 7 months,0.0,0.0,0.0,1105.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,19.2,425.0,No,Yes,Multiple,Yes,Truck,Snowy,2020-09-16 08:20:55.931186,2021-07-03 08:20:55.931186,8.0,62.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+1000.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,625.0,No,Yes,Multiple,No,Truck,Rainy,2020-10-25 18:37:05.245049,2021-04-12 18:37:05.245049,19.0,19.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Male
+360.0,Rear end,B. 2 months,0.0,0.0,,523.25,0.0,,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2023-10-02 22:07:56.735347,2024-06-24 22:07:56.735347,9.0,47.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Male
+865.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,370.0,No,No,Arms,Yes,,Sunny,2023-11-16 21:34:49.137827,2024-09-19 21:34:49.137827,14.0,27.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Male
+1208.14,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,688.14,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,,Car,Sunny,2020-06-23 22:37:54.214842,2020-12-25 22:37:54.214842,2.0,40.0,2.0,Side collision at an intersection.,,Yes,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Sunny,2022-06-01 14:24:44.936987,2023-05-01 14:24:44.936987,1.0,50.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Other
+926.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2022-01-08 21:47:12.326465,2022-01-11 21:47:12.326465,4.0,56.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Other
+1469.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,574.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2022-04-22 00:06:20.236047,2022-09-30 00:06:20.236047,0.0,62.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Female
+4294.64,Rear end,G. 7 months,0.0,0.0,0.0,3220.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,185.64,0.0,714.0,No,Yes,Hips,Yes,Truck,Sunny,2021-08-25 19:24:19.731946,2022-05-12 19:24:19.731946,10.0,73.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+1005.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,520.0,0.0,0.0,0.0,,,No,Yes,,No,Truck,Rainy,2021-05-28 10:31:42.620524,2021-07-15 10:31:42.620524,11.0,76.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,6.0,9.35,No,Yes,Hips,Yes,Truck,Sunny,2022-11-08 08:33:19.119823,2023-07-20 08:33:19.119823,2.0,46.0,,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+1010.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,179.0,0.0,0.0,12.0,238.0,Yes,No,Arms,No,,,2020-12-28 17:40:37.687537,2021-03-12 17:40:37.687537,15.0,47.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+1595.0,Rear end,F. 6 months,0.0,0.0,0.0,1346.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Rainy,2023-06-18 07:42:02.664532,2024-05-18 07:42:02.664532,13.0,51.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+4345.0,Other,X. 24 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4345.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2021-11-01 06:34:38.335667,2022-04-16 06:34:38.335667,11.0,69.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+300.0,Rear end,A. 1 month,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,,No,Yes,Hips,No,Truck,,2021-07-16 05:05:55.031006,2022-04-02 05:05:55.031006,19.0,,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Female
+1710.0,Other side reversed into Clt's vehicle,D. 4 months,0.0,0.0,0.0,1112.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,235.0,No,Yes,Arms,Yes,Truck,Snowy,2021-08-25 05:23:12.038407,2021-08-29 05:23:12.038407,15.0,34.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Other
+2145.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2022-09-18 12:55:09.781956,2023-01-15 12:55:09.781956,7.0,39.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Female
+317.5,Other side reversed into Clt's vehicle,A. 1 month,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,33.0,50.0,No,Yes,Arms,No,Motorcycle,Snowy,2020-05-08 12:08:12.578515,2021-02-05 12:08:12.578515,16.0,22.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Female
+955.0,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,1250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,45.0,35.0,No,Yes,Legs,Yes,Car,Rainy,2022-03-12 02:47:21.688337,2022-10-24 02:47:21.688337,16.0,28.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Male
+1300.0,Other side reversed into Clt's vehicle,D. 4 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Arms,No,Car,Sunny,2020-01-02 18:03:23.080616,2020-12-19 18:03:23.080616,6.0,39.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+1081.05,"Other side opened their door, hitting clt's vehicle",H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,47.62,299.35,No,No,Legs,No,Motorcycle,Rainy,2021-04-08 04:54:40.976195,2021-06-17 04:54:40.976195,14.0,49.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+1715.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,1445.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2020-08-28 22:45:23.584716,2021-02-26 22:45:23.584716,8.0,41.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+4776.969999999999,Rear end,F. 6 months,0.0,0.0,0.0,1085.0,0.0,3051.97,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,205.0,No,Yes,Multiple,Yes,Truck,Rainy,2023-01-21 19:57:10.046009,2024-01-09 19:57:10.046009,3.0,28.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+2500.0,Rear end,J. 10 months,0.0,0.0,0.0,1410.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Sunny,2021-01-05 07:55:17.703540,2021-09-26 07:55:17.703540,7.0,28.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,520.0,0.0,,0.0,0.0,0.0,No,Yes,Arms,No,,Sunny,2022-09-30 12:18:17.499499,2023-03-30 12:18:17.499499,9.0,34.0,1.0,,Concussion and bruised ribs.,Yes,Yes,Male
+800.0,Rear end,E. 5 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,305.0,No,No,Multiple,Yes,Truck,Sunny,2022-10-01 02:19:25.193038,2022-10-06 02:19:25.193038,14.0,49.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Other
+1868.49,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,880.0,0.0,0.0,0.0,0.0,35.99,0.0,0.0,840.0,168.0,0.0,0.0,0.0,112.5,Yes,No,Legs,Yes,Truck,Rainy,2021-01-17 14:18:59.267853,2021-08-02 14:18:59.267853,17.0,36.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+925.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,415.13,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,130.0,Yes,Yes,Multiple,Yes,Motorcycle,Snowy,2023-03-23 20:55:04.020804,2023-05-09 20:55:04.020804,13.0,44.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+860.0,Other side pulled out of side road,B. 2 months,0.0,0.0,0.0,1651.0,0.0,0.0,0.0,0.0,79.5,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2021-04-20 04:17:48.693738,2021-05-30 04:17:48.693738,4.0,49.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Male
+822.9,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Hips,No,Motorcycle,Rainy,2020-10-29 13:44:25.253050,2021-02-28 13:44:25.253050,8.0,78.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+1175.0,Rear end,F. 6 months,0.0,0.0,0.0,680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,,0.0,No,No,Legs,Yes,Truck,Sunny,2020-05-19 07:29:04.908981,2020-10-01 07:29:04.908981,12.0,42.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+1110.0,Rear end,H. 8 months,0.0,0.0,0.0,1363.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Sunny,2022-02-21 03:10:41.648329,2022-07-11 03:10:41.648329,18.0,45.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+3195.0,Rear end,H. 8 months,0.0,0.0,0.0,2576.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Snowy,2020-07-27 12:42:46.593318,2021-07-12 12:42:46.593318,10.0,57.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+2685.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,,0.0,1972.25,0.0,0.0,0.0,0.0,,0.0,0.0,520.0,,0.0,0.0,0.0,765.0,No,Yes,Multiple,Yes,Truck,Snowy,2021-05-04 11:45:27.185437,2021-10-04 11:45:27.185437,11.0,69.0,4.0,Swerved to avoid another vehicle.,,No,No,Other
+895.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2021-09-23 10:19:36.715343,2021-10-21 10:19:36.715343,2.0,44.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Other
+895.0,Other side pulled on to roundabout,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2020-05-28 08:46:34.158831,2020-08-13 08:46:34.158831,1.0,31.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Female
+895.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,400.0,No,,Arms,Yes,Motorcycle,Snowy,2020-04-21 06:34:55.619123,2020-10-13 06:34:55.619123,14.0,59.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+895.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,400.0,No,Yes,Hips,Yes,Truck,Sunny,2020-12-10 15:05:39.187837,2021-01-28 15:05:39.187837,4.0,74.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+1058.55,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,210.0,0.0,0.0,495.0,0.0,0.0,7.55,0.0,485.0,No,No,Arms,No,Truck,Rainy,2021-06-22 20:20:47.289457,2022-05-30 20:20:47.289457,6.0,56.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Female
+3516.0,Other side pulled out of side road,R. 18 months,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3005.0,0.0,0.0,0.0,0.0,511.0,No,No,Arms,Yes,Car,Snowy,2023-06-30 07:05:10.382076,2024-05-05 07:05:10.382076,3.0,19.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Male
+1500.0,Rear end,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Sunny,2021-05-16 18:09:08.749749,2022-02-14 18:09:08.749749,4.0,34.0,3.0,Side collision at an intersection.,,No,Yes,Male
+1529.0,Other,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,Yes,Car,Snowy,2020-11-17 06:20:31.446289,2020-12-14 06:20:31.446289,15.0,18.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Other
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2021-06-27 05:29:14.990998,2022-05-21 05:29:14.990998,14.0,62.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+260.0,Other side changed lanes and collided with clt's vehicle,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2021-09-02 16:39:33.594718,2022-04-11 16:39:33.594718,15.0,49.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Male
+702.0,Rear end,C. 3 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,240.0,0.0,0.0,0.0,0.0,462.0,No,No,Legs,Yes,Motorcycle,Snowy,2020-07-28 09:44:28.133626,2020-11-27 09:44:28.133626,3.0,36.0,4.0,,Whiplash and minor bruises.,No,No,Female
+520.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Snowy,2020-04-02 13:58:49.425885,2021-03-29 13:58:49.425885,5.0,78.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+1047.9,,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,102.9,425.0,No,Yes,Multiple,,,Snowy,2023-09-13 22:31:16.695339,2023-11-21 22:31:16.695339,17.0,31.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+2042.0,Other side turned across Clt's path,L. 12 months,120.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,90.0,607.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2021-06-02 16:41:51.862372,2021-08-12 16:41:51.862372,2.0,48.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Female
+1457.0,Other side pulled out of side road,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,127.92,0.0,0.0,125.0,Yes,Yes,Legs,,Truck,Rainy,2021-10-29 01:28:26.021204,2022-03-28 01:28:26.021204,4.0,75.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Male
+1665.0,Other,E. 5 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,162.0,70.0,No,Yes,Hips,Yes,Truck,Snowy,2020-12-29 07:41:45.381076,2021-07-04 07:41:45.381076,1.0,35.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Female
+1175.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Legs,No,Motorcycle,Sunny,2021-01-24 07:31:57.743548,2021-09-27 07:31:57.743548,15.0,69.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Other
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Snowy,2022-12-07 13:29:43.796759,2023-06-21 13:29:43.796759,5.0,31.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+740.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,182.0,No,Yes,Arms,No,Truck,Snowy,2020-12-16 11:16:56.123224,2021-01-17 11:16:56.123224,14.0,64.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+1515.0,,J. 10 months,0.0,0.0,0.0,25.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,,0.0,50.0,No,Yes,,No,Motorcycle,Rainy,2021-06-07 22:52:01.104220,2021-09-24 22:52:01.104220,17.0,31.0,3.0,Side collision at an intersection.,,Yes,Yes,Female
+2640.2,Other side pulled out of side road,N. 14 months,0.0,0.0,0.0,556.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,10.2,366.0,No,Yes,Hips,Yes,Truck,Rainy,2022-02-27 20:23:40.124024,2023-02-15 20:23:40.124024,5.0,41.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Male
+2575.0,Rear end,M. 13 months,0.0,0.0,0.0,959.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2021-02-28 15:40:13.202640,2021-03-01 15:40:13.202640,12.0,22.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+895.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,1180.0,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,0.0,73.81,9.35,No,Yes,Multiple,No,Truck,Snowy,,2022-01-16 13:10:25.805161,,33.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Other
+761.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,350.0,No,No,Multiple,No,Truck,Snowy,2020-08-05 21:00:49.689937,2021-01-26 21:00:49.689937,0.0,22.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+1776.0,Rear end,F. 6 months,0.0,0.0,0.0,1445.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2020-09-02 07:53:51.286257,2021-02-18 07:53:51.286257,15.0,71.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Male
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Car,Snowy,2021-12-29 16:27:27.689537,2022-09-03 16:27:27.689537,3.0,30.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Male
+566.9,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5.1,0.0,0.0,520.0,0.0,0.0,0.0,1.8,0.0,No,Yes,Hips,No,Car,Snowy,2020-11-13 18:13:45.285057,2021-03-01 18:13:45.285057,16.0,77.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Rainy,2020-08-19 07:26:46.641328,2021-06-12 07:26:46.641328,17.0,33.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+2195.0,Rear end - 3 car - Clt at front,,0.0,0.0,0.0,3273.0,0.0,0.0,,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,2021-01-05 00:54:43.856771,2021-09-26 00:54:43.856771,,32.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Female
+2878.15,,E. 5 months,0.0,0.0,0.0,2712.0,0.0,0.0,0.0,0.0,3.8,,0.0,520.0,0.0,0.0,15.0,14.35,565.0,No,Yes,Hips,No,Car,Rainy,2021-03-28 16:34:22.492498,2021-04-27 16:34:22.492498,0.0,48.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2022-02-24 15:17:27.809561,2022-12-23 15:17:27.809561,5.0,22.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+565.0,Other side turned across Clt's path,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,45.0,No,Yes,Multiple,No,Truck,Rainy,2020-03-26 06:44:43.256651,2021-03-22 06:44:43.256651,10.0,38.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+937.27,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.67,0.0,0.0,0.0,495.0,0.0,0.0,0.0,25.8,462.0,No,No,Multiple,Yes,Truck,Sunny,2023-03-20 15:48:51.706341,2024-03-06 15:48:51.706341,5.0,47.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Sunny,2021-02-14 01:12:00.864172,2021-12-28 01:12:00.864172,16.0,40.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+520.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2021-04-26 07:29:39.475895,2021-12-07 07:29:39.475895,3.0,55.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Male
+520.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2022-04-02 10:28:32.502500,2022-06-30 10:28:32.502500,13.0,46.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Other
+2045.0,Rear end,J. 10 months,0.0,0.0,0.0,650.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,5.0,No,Yes,Legs,No,Truck,Rainy,2023-02-15 22:45:40.868173,2023-10-07 22:45:40.868173,13.0,30.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Male
+1010.0,Rear end,D. 4 months,0.0,0.0,0.0,1200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2022-05-02 05:26:04.872974,2022-10-17 05:26:04.872974,19.0,49.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+1472.0,Rear end,F. 6 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,90.0,No,Yes,Legs,Yes,Car,Sunny,2021-02-12 00:08:03.936787,2021-10-01 00:08:03.936787,7.0,65.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Female
+1850.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,1725.0,0.0,588.6,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,No,Truck,Rainy,2021-05-09 10:55:02.580516,2021-09-12 10:55:02.580516,1.0,79.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+1259.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,185.0,Yes,Yes,Hips,Yes,Motorcycle,Sunny,2020-10-29 20:44:59.099819,2020-12-29 20:44:59.099819,4.0,59.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Female
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-01-30 00:12:57.755551,2023-05-30 00:12:57.755551,3.0,44.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Other
+1270.0,Other side drove on wrong side of the road,E. 5 months,0.0,0.0,0.0,1927.0,0.0,0.0,0.0,0.0,1249.0,0.0,0.0,520.0,0.0,0.0,0.0,9.0,5.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2021-04-01 04:41:08.653730,2021-10-08 04:41:08.653730,9.0,51.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+1275.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,480.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Arms,No,,Sunny,2020-11-20 18:27:17.607521,2021-03-21 18:27:17.607521,19.0,,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Male
+1110.0,Rear end,H. 8 months,0.0,0.0,0.0,1363.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Snowy,2021-01-12 01:08:16.179235,2021-03-01 01:08:16.179235,2.0,66.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Female
+840.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Sunny,2020-12-05 01:54:56.099219,2021-06-25 01:54:56.099219,15.0,50.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Other
+1083.0,Rear end - 3 car - Clt at front,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,188.0,No,Yes,Hips,No,Truck,Rainy,2020-10-27 12:40:28.325665,2020-12-25 12:40:28.325665,9.0,21.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+1390.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,2023-06-20 15:46:33.438687,2023-12-22 15:46:33.438687,14.0,35.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+566.11,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.11,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Snowy,2023-05-28 07:01:25.697139,2024-01-06 07:01:25.697139,3.0,23.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+3080.0,Rear end,I. 9 months,0.0,0.0,,2300.0,0.0,,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,0.0,196.8,280.0,No,Yes,Multiple,,Truck,Rainy,2022-03-10 22:45:06.301260,,0.0,45.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+623.08,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,103.08,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Sunny,2020-10-12 15:11:42.140428,2021-07-20 15:11:42.140428,14.0,61.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,,0.0,0.0,0.0,0.0,,No,Yes,Hips,Yes,Truck,Rainy,2020-05-30 23:51:38.779755,,9.0,74.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+595.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,75.0,No,Yes,Legs,No,Car,Rainy,2023-12-29 05:56:36.919383,2024-10-26 05:56:36.919383,19.0,75.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+1253.0,Rear end,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,91.62,518.0,No,Yes,Legs,No,Motorcycle,Sunny,2020-08-16 09:21:08.173634,2021-06-22 09:21:08.173634,17.0,44.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+2988.6,Rear end,G. 7 months,0.0,0.0,0.0,1890.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,33.6,0.0,460.0,Yes,Yes,Hips,Yes,Truck,Snowy,2022-04-06 19:37:00.204040,2022-11-29 19:37:00.204040,15.0,79.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+1265.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,370.0,No,Yes,Arms,Yes,Car,Snowy,2023-05-05 19:17:59.495899,2023-06-08 19:17:59.495899,8.0,43.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+1388.0,Other side pulled out of side road,B. 2 months,0.0,0.0,0.0,940.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,559.44,0.0,0.0,345.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2020-02-10 00:17:17.007401,2021-01-15 00:17:17.007401,18.0,73.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Female
+992.2,Rear end,F. 6 months,0.0,0.0,0.0,490.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,7.2,0.0,No,No,Arms,No,Motorcycle,Sunny,2020-08-07 22:04:46.617323,2020-12-20 22:04:46.617323,16.0,37.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Female
+1707.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,1187.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2022-05-12 10:45:49.509901,2022-07-13 10:45:49.509901,9.0,30.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+644.75,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,99.0,0.0,0.0,0.0,182.0,Yes,No,Hips,Yes,Truck,Snowy,2023-11-05 05:12:15.267053,2024-09-13 05:12:15.267053,18.0,45.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+240.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Rainy,2021-12-18 00:04:53.818763,2022-08-02 00:04:53.818763,7.0,51.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+2235.0,Rear end,O. 15 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,2125.0,0.0,0.0,0.0,0.0,110.0,No,,Legs,No,Motorcycle,Sunny,2022-04-07 16:38:41.744348,2022-07-09 16:38:41.744348,18.0,66.0,,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+4710.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,4215.0,0.0,0.0,0.0,0.0,625.0,No,No,Hips,Yes,Motorcycle,Snowy,2020-06-18 02:26:37.279455,2020-10-12 02:26:37.279455,4.0,40.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2022-08-08 15:36:11.234246,2023-07-06 15:36:11.234246,1.0,27.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,,Rainy,2022-08-11 20:42:23.548709,2022-12-22 20:42:23.548709,14.0,68.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+462.29,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,222.29,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Rainy,2023-09-19 18:42:33.630726,2024-08-16 18:42:33.630726,16.0,47.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2020-04-25 08:42:49.473894,2021-02-12 08:42:49.473894,9.0,39.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Female
+528.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,288.0,No,No,Legs,Yes,Car,Snowy,2021-07-19 17:12:41.192238,2022-01-28 17:12:41.192238,1.0,22.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+1020.0,Rear end,E. 5 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2023-12-03 13:06:58.403680,2024-01-02 13:06:58.403680,8.0,70.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+1020.0,Rear end,E. 5 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2022-01-26 03:20:29.285857,2022-11-20 03:20:29.285857,1.0,61.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+335.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,75.0,No,Yes,Hips,Yes,Truck,Rainy,,2022-08-05 02:31:31.098219,17.0,67.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Other
+960.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,7507.2,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,65.0,No,Yes,Hips,Yes,Truck,Snowy,2020-02-19 08:35:20.104020,2020-12-19 08:35:20.104020,11.0,79.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Female
+795.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,345.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2021-11-13 12:58:19.899980,2022-10-19 12:58:19.899980,14.0,26.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Female
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2022-08-03 23:27:09.685937,2023-07-18 23:27:09.685937,19.0,60.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Female
+1292.0,Rear end,B. 2 months,0.0,0.0,0.0,1032.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Sunny,2022-09-24 09:06:26.717343,2023-08-14 09:06:26.717343,5.0,21.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+1039.7,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,,0.0,,No,Yes,Hips,No,Motorcycle,Rainy,,2023-09-06 01:32:45.273054,17.0,59.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Male
+698.47,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,203.47,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Truck,Snowy,2022-07-28 06:14:11.210242,2022-08-25 06:14:11.210242,12.0,18.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Male
+1224.15,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,,0.0,0.0,,0.0,869.85,0.0,0.0,520.0,0.0,0.0,0.0,109.2,400.0,No,Yes,Legs,Yes,Car,Sunny,2022-10-14 12:45:22.144428,2022-12-30 12:45:22.144428,3.0,51.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Male
+795.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,400.0,No,Yes,Arms,No,Car,Snowy,2023-11-13 02:27:29.129825,2024-03-13 02:27:29.129825,11.0,58.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+1750.0,Rear end,G. 7 months,0.0,0.0,0.0,1112.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,325.0,No,No,Legs,No,Truck,Sunny,2021-06-21 16:18:31.902380,2021-06-24 16:18:31.902380,8.0,72.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+800.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,15.0,350.0,No,Yes,Arms,No,Car,Sunny,2023-01-03 03:21:03.852770,2023-02-09 03:21:03.852770,1.0,43.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Other
+260.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2023-08-22 10:47:50.494098,2024-01-16 10:47:50.494098,15.0,35.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+1987.0,Other side turned across Clt's path,B. 2 months,0.0,0.0,0.0,1972.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,12.0,0.0,No,Yes,Arms,No,Car,Rainy,2022-06-02 18:27:00.324064,2022-09-02 18:27:00.324064,0.0,33.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+520.0,,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,,Motorcycle,Rainy,,2024-02-06 00:16:42.440488,3.0,40.0,3.0,,Concussion and bruised ribs.,Yes,Yes,Other
+3590.0,Other side pulled on to roundabout,L. 12 months,0.0,0.0,0.0,2200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2021-04-12 14:03:08.677735,2022-01-10 14:03:08.677735,14.0,63.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+1054.28,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,149.28,0.0,510.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2020-11-30 16:46:28.397679,2021-02-25 16:46:28.397679,19.0,53.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+1665.0,Rear end,I. 9 months,0.0,0.0,0.0,770.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-06-17 10:40:21.124224,2023-07-27 10:40:21.124224,0.0,43.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Male
+1450.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,413.28,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Legs,No,Motorcycle,Sunny,2022-02-22 21:14:04.728945,2022-08-19 21:14:04.728945,19.0,19.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Female
+1793.69,Rear end,F. 6 months,0.0,0.0,0.0,1038.45,0.0,249.79,0.0,0.0,1108.0,0.0,0.0,520.0,0.0,0.0,0.0,274.0,272.4,No,Yes,Legs,Yes,Truck,Rainy,2020-02-02 10:02:36.991398,2020-12-27 10:02:36.991398,14.0,61.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+3055.0,Rear end,F. 6 months,0.0,0.0,0.0,2875.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,60.0,0.0,0.0,0.0,0.0,Yes,Yes,Arms,Yes,Motorcycle,Rainy,2020-06-21 21:33:57.287457,2021-04-02 21:33:57.287457,2.0,69.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+495.0,Other side changed lanes on a roundabout colliding with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Rainy,2021-12-13 07:55:52.270454,2022-01-24 07:55:52.270454,12.0,22.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+940.0,Rear end,G. 7 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Motorcycle,Rainy,2020-12-27 13:38:22.300460,2021-10-08 13:38:22.300460,17.0,46.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Male
+977.02,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,57.02,462.0,No,Yes,Legs,No,,Sunny,2022-03-27 00:16:07.873574,2022-06-01 00:16:07.873574,12.0,79.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Female
+932.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,412.0,No,Yes,Hips,Yes,Car,Rainy,2021-12-06 00:41:46.101220,2022-04-09 00:41:46.101220,9.0,21.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+1530.2,Other side pulled out of side road,F. 6 months,,0.0,0.0,1207.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,10.2,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2021-09-13 19:00:59.771954,2022-02-05 19:00:59.771954,19.0,64.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Other
+1379.92,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,523.25,0.0,79.92,210.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,5.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2022-04-13 05:49:24.832966,2022-08-11 05:49:24.832966,6.0,52.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+300.0,Rear end,A. 1 month,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Rainy,2022-04-17 21:58:26.381276,2022-08-04 21:58:26.381276,7.0,39.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Male
+520.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2022-11-16 19:49:40.676135,2023-02-16 19:49:40.676135,0.0,66.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Female
+1720.0,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,1200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2023-01-15 16:45:19.263852,2023-11-19 16:45:19.263852,17.0,25.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2021-03-21 16:20:50.170034,2021-05-20 16:20:50.170034,11.0,61.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+1269.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Hips,Yes,Truck,Rainy,2021-07-29 01:30:44.288857,2022-07-14 01:30:44.288857,17.0,38.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Other
+520.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2020-10-04 17:56:28.277655,2021-05-19 17:56:28.277655,11.0,25.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+260.0,Other,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2021-03-14 16:07:17.847569,2021-11-09 16:07:17.847569,19.0,75.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+1470.0,Rear end,G. 7 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Arms,Yes,Car,Sunny,2023-07-28 14:59:53.518703,2024-02-25 14:59:53.518703,8.0,69.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Other
+835.4,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,285.0,0.0,0.0,520.0,0.0,1.0,0.0,29.4,0.0,No,Yes,Legs,No,Car,Sunny,2022-09-01 07:21:52.822564,2022-12-08 07:21:52.822564,1.0,69.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+1020.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Arms,No,Truck,Snowy,2020-02-01 20:01:29.297859,2020-02-15 20:01:29.297859,13.0,22.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+2308.6,Rear end,N. 14 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2040.0,,0.0,0.0,33.3,243.89,No,No,Legs,No,Motorcycle,Sunny,2023-03-10 03:28:33.222644,2023-10-14 03:28:33.222644,3.0,38.0,2.0,,,Yes,No,Female
+,,L. 12 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,127.92,,0.0,125.0,Yes,Yes,Multiple,Yes,Truck,Rainy,2021-11-18 12:07:55.295059,2022-05-07 12:07:55.295059,14.0,44.0,2.0,Lost control on a snowy road.,,No,Yes,Female
+1320.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Rainy,2020-03-06 17:06:55.523104,2021-01-07 17:06:55.523104,16.0,55.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Truck,Snowy,2022-05-29 09:18:32.622524,2023-03-05 09:18:32.622524,18.0,22.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+1175.0,Rear end,F. 6 months,0.0,0.0,0.0,680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Sunny,2023-04-20 00:47:31.770354,2024-04-17 00:47:31.770354,5.0,38.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+5880.02,Other side reversed into Clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,910.0,0.0,3435.23,0.0,0.0,895.0,0.0,0.0,0.0,210.3,479.49,No,Yes,Legs,No,Motorcycle,Sunny,2020-06-28 00:45:48.069613,2021-01-24 00:45:48.069613,8.0,78.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+2712.17,Rear end,F. 6 months,0.0,0.0,0.0,1750.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,184.54,620.0,No,Yes,Arms,Yes,Car,Sunny,2020-01-29 14:55:16.983396,2020-10-11 14:55:16.983396,16.0,25.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+850.7,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2020-08-24 13:36:55.883176,2021-02-11 13:36:55.883176,14.0,39.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Male
+1390.0,Other side reversed into clt's stationary vehicle,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2022-09-01 14:22:26.669333,2022-11-13 14:22:26.669333,4.0,35.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Truck,Snowy,2022-02-27 06:22:32.430486,2022-07-24 06:22:32.430486,17.0,21.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+481.2,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,52.0,0.0,0.0,0.0,,Yes,Yes,Multiple,No,Car,Rainy,2023-12-04 17:09:13.790758,,3.0,,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+520.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2020-10-24 14:34:49.857971,2021-09-06 14:34:49.857971,1.0,54.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2022-06-02 11:26:26.477295,2022-09-16 11:26:26.477295,18.0,32.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+520.0,Other side reversed into clt's stationary vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2022-10-27 09:10:11.402280,2023-01-29 09:10:11.402280,4.0,55.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+483.42,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,,0.0,18.42,35.0,,No,Yes,Multiple,Yes,Car,Sunny,2023-02-08 22:32:08.545709,2023-04-12 22:32:08.545709,3.0,44.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Sunny,2022-05-20 01:00:29.525905,2022-10-21 01:00:29.525905,4.0,38.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+732.5,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,16.8,266.0,No,Yes,Hips,No,Truck,Snowy,2022-09-02 11:24:08.209641,2023-05-15 11:24:08.209641,18.0,65.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Male
+1835.0,Other,H. 8 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Hips,No,Motorcycle,Snowy,2020-08-20 11:29:02.028405,2021-08-06 11:29:02.028405,12.0,63.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Male
+1191.5,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,89.5,0.0,0.0,0.0,207.0,Yes,Yes,Arms,No,Car,Snowy,2021-07-25 13:23:58.127625,2021-08-29 13:23:58.127625,15.0,63.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Female
+640.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,120.0,No,Yes,Arms,No,Truck,Sunny,2022-06-14 10:49:34.194838,2023-05-03 10:49:34.194838,11.0,65.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+260.0,Other,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2022-06-01 00:23:37.243448,2023-04-09 00:23:37.243448,8.0,76.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+959.27,Other,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.67,,0.0,520.0,0.0,0.0,0.0,12.6,375.0,No,Yes,Hips,No,Motorcycle,Sunny,2022-02-21 17:11:49.341868,2022-12-14 17:11:49.341868,15.0,71.0,,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+943.6,Rear end - 3 car - Clt at front,G. 7 months,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Sunny,2023-07-21 00:45:13.502700,2024-03-30 00:45:13.502700,13.0,73.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+1400.9,Other side pulled out of side road,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,8.4,10.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-11-08 10:18:27.581516,2024-04-13 10:18:27.581516,0.0,21.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Other
+727.36,,E. 5 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,55.0,0.0,0.0,,0.0,0.0,26.04,0.0,375.0,No,No,Multiple,Yes,Car,Rainy,2022-05-10 23:43:00.276055,2022-09-21 23:43:00.276055,19.0,28.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+520.0,Rear end,E. 5 months,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2022-12-25 16:04:42.296459,2023-05-03 16:04:42.296459,3.0,36.0,,,Whiplash and minor bruises.,Yes,Yes,Other
+937.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,442.0,No,No,Hips,Yes,Motorcycle,Rainy,2020-11-17 13:21:05.293058,2021-08-24 13:21:05.293058,8.0,74.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+1018.0,Other,E. 5 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,180.0,No,Yes,Multiple,No,Car,Sunny,2020-10-29 20:44:59.099819,2021-10-22 20:44:59.099819,18.0,36.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+2405.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,1400.0,0.0,0.0,0.0,0.0,111.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,574.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-05-20 16:46:45.681136,2024-01-27 16:46:45.681136,13.0,44.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Female
+895.0,Other side drove on wrong side of the road,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,No,Car,Sunny,2020-08-19 00:26:12.794558,2021-01-01 00:26:12.794558,11.0,57.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+1181.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Arms,No,Truck,Rainy,2023-05-04 01:14:36.415283,2024-03-30 01:14:36.415283,3.0,59.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Other
+1245.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,475.0,No,Yes,Arms,No,Car,Snowy,2021-06-03 06:42:59.555911,2021-06-14 06:42:59.555911,6.0,45.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+735.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Multiple,No,Car,Snowy,2023-11-02 21:07:44.492898,2024-08-20 21:07:44.492898,16.0,22.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+1027.7,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,2.7,238.0,Yes,Yes,Arms,Yes,Truck,Sunny,2020-10-13 12:13:23.680736,2021-03-10 12:13:23.680736,0.0,65.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+1390.0,Rear end,K. 11 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,,Legs,No,Car,Sunny,,2021-11-19 10:53:36.163232,,,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+,Rear end,C. 3 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,230.0,No,Yes,Hips,No,Truck,Sunny,2020-08-04 23:59:08.149629,2020-10-23 23:59:08.149629,14.0,20.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2021-12-10 23:51:21.496299,2022-06-19 23:51:21.496299,11.0,43.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Female
+1115.0,Rear end,G. 7 months,0.0,0.0,0.0,983.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Legs,No,Car,Snowy,2020-04-19 05:30:58.691738,2021-03-29 05:30:58.691738,11.0,27.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+240.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Snowy,2021-05-26 23:28:53.386677,2021-06-25 23:28:53.386677,5.0,41.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+1455.58,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,1.08,574.0,Yes,Yes,Hips,Yes,Motorcycle,Rainy,2023-02-12 03:38:20.860172,2024-02-06 03:38:20.860172,12.0,79.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Male
+261.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,1.0,0.0,No,Yes,Legs,No,Truck,Rainy,2022-01-10 15:50:35.407081,2022-08-27 15:50:35.407081,15.0,46.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Male
+1088.64,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,8.64,275.0,No,Yes,Hips,,Motorcycle,Sunny,,2021-10-27 11:43:08.917783,13.0,62.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Male
+945.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2022-05-05 03:31:43.340668,2022-10-02 03:31:43.340668,6.0,24.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Female
+820.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,325.0,No,No,Legs,No,Car,Sunny,2022-10-03 10:23:55.967193,2023-09-29 10:23:55.967193,15.0,61.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+1020.0,Other side pulled from parked position into the path of clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,290.0,No,No,Legs,No,Truck,Snowy,2020-06-21 14:33:23.440688,2020-12-27 14:33:23.440688,8.0,40.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+851.0,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,356.0,No,No,Legs,No,Truck,Sunny,2023-09-13 15:30:42.848569,2023-10-04 15:30:42.848569,13.0,63.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Other
+1355.0,,G. 7 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,895.0,,0.0,0.0,0.0,460.0,No,Yes,Multiple,No,Car,Rainy,2022-01-20 07:09:12.350470,,6.0,44.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+2557.0,Rear end,D. 4 months,0.0,0.0,500.0,0.0,0.0,2143.27,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,310.0,No,Yes,Legs,No,Motorcycle,Snowy,2022-04-18 19:00:07.921584,2022-12-20 19:00:07.921584,11.0,59.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Other
+978.4,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,23.4,0.0,518.0,No,Yes,Legs,Yes,Truck,Rainy,2020-12-09 11:03:23.800760,2021-09-18 11:03:23.800760,2.0,26.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+1114.6,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Legs,No,Motorcycle,Snowy,2021-01-24 21:33:05.437087,2021-05-06 21:33:05.437087,13.0,61.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+,Rear end - 3 car - Clt at front,A. 1 month,0.0,0.0,0.0,1112.05,0.0,0.0,300.0,0.0,422.95,0.0,0.0,240.0,48.0,,0.0,187.8,3.95,Yes,No,Legs,No,Truck,Sunny,2023-10-02 15:07:22.888577,2024-07-22 15:07:22.888577,18.0,73.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+800.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,305.0,No,No,Arms,No,Truck,Snowy,2020-02-02 17:03:10.838167,2020-09-21 17:03:10.838167,10.0,20.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Male
+,Other side reversed into Clt's vehicle,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,10.0,0.0,No,No,Multiple,,Truck,Rainy,2023-01-06 15:27:50.014002,2023-11-18 15:27:50.014002,,79.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+1615.0,Other,H. 8 months,0.0,0.0,0.0,110.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,665.0,No,No,Hips,No,Truck,Snowy,2021-06-22 20:20:47.289457,2022-05-14 20:20:47.289457,12.0,30.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+1115.5,Rear end,H. 8 months,0.0,0.0,0.0,555.45,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,0.0,3.0,50.0,No,Yes,Legs,No,Motorcycle,,2021-08-03 07:40:53.530706,2022-05-18 07:40:53.530706,9.0,23.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Male
+3144.8,,,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,,0.0,0.0,290.0,Yes,Yes,Arms,No,Motorcycle,Snowy,2023-11-11 08:24:06.049209,2024-10-12 08:24:06.049209,6.0,76.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+1118.32,Other side turned across Clt's path,G. 7 months,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,13.32,400.0,No,No,Arms,Yes,,Rainy,2021-08-02 17:39:45.837167,2022-04-04 17:39:45.837167,,55.0,,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+520.0,Rear end,F. 6 months,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,,Arms,No,Motorcycle,Sunny,2022-08-19 10:57:03.564712,2023-02-12 10:57:03.564712,15.0,38.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Car,Rainy,2022-08-04 20:28:51.226245,2023-03-05 20:28:51.226245,7.0,36.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+840.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Snowy,2020-03-14 14:22:09.385877,2021-03-07 14:22:09.385877,16.0,42.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+1088.64,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,,,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,8.64,275.0,,Yes,Multiple,Yes,Truck,Rainy,2020-02-05 22:09:23.152630,2020-05-17 22:09:23.152630,12.0,56.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Female
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Truck,Snowy,,2021-10-08 23:37:14.606921,10.0,21.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Male
+706.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,24.0,275.0,No,Yes,Arms,No,Car,Sunny,2020-06-30 22:51:26.537307,2020-07-22 22:51:26.537307,19.0,39.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+1045.0,Rear end,D. 4 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Hips,No,,,2022-07-10 17:40:20.404080,2022-07-29 17:40:20.404080,17.0,22.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Male
+730.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,290.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Hips,Yes,Truck,Rainy,2022-07-04 21:29:03.468693,2023-04-17 21:29:03.468693,4.0,18.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2022-09-16 18:51:46.701340,,5.0,67.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+603.32,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,660.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,9.6,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2022-09-24 23:07:34.410882,2023-02-18 23:07:34.410882,19.0,34.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+915.43,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.43,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Rainy,2021-04-28 08:33:36.403280,2021-06-07 08:33:36.403280,13.0,26.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Male
+1286.92,Other side collided with Clt's parked vehicle,H. 8 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,16.92,,No,Yes,Legs,,Car,Sunny,2021-01-04 17:54:10.010002,2021-06-20 17:54:10.010002,11.0,26.0,3.0,,Fractured arm and leg.,Yes,Yes,Other
+285.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,45.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2022-05-10 02:41:18.735747,2022-08-09 02:41:18.735747,3.0,70.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+1039.7,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,183.7,No,Yes,Arms,No,Truck,Snowy,2020-12-04 18:54:22.252450,2021-02-14 18:54:22.252450,6.0,41.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+1010.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,179.0,0.0,0.0,12.0,238.0,Yes,No,Arms,Yes,Truck,Sunny,2021-10-31 23:34:04.488897,2022-08-10 23:34:04.488897,10.0,27.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Other
+1320.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,1320.0,,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Sunny,2020-05-08 12:08:12.578515,2021-04-08 12:08:12.578515,19.0,37.0,2.0,Lost control on a snowy road.,,No,Yes,Female
+880.8,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,12.96,465.0,No,Yes,Legs,Yes,Car,Snowy,2021-09-02 23:40:07.441488,2022-01-20 23:40:07.441488,1.0,34.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+520.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Sunny,,2022-10-26 00:25:55.511102,3.0,30.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Male
+707.36,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,212.36,No,No,Hips,No,Car,Sunny,2023-01-02 20:20:30.006001,2023-03-21 20:20:30.006001,6.0,46.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+1708.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,2194.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,88.0,No,Yes,Legs,Yes,Car,Sunny,2020-06-10 12:11:57.263452,2020-12-26 12:11:57.263452,0.0,53.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2023-12-03 06:06:24.556911,2023-12-20 06:06:24.556911,14.0,40.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Female
+910.86,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,40.86,461.0,No,Yes,Legs,Yes,Car,Sunny,2020-11-20 18:27:17.607521,2021-06-26 18:27:17.607521,19.0,44.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Other
+1215.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,375.0,No,No,Arms,No,Truck,Rainy,2022-03-22 01:06:32.478495,2022-11-06 01:06:32.478495,7.0,35.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+1393.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,3.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2021-06-19 08:14:01.128225,2022-05-25 08:14:01.128225,4.0,35.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+717.5,Rear end,D. 4 months,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,406.0,No,No,Hips,Yes,Car,Snowy,,2021-06-05 18:21:14.654930,13.0,,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+815.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,783.65,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,409.35,No,No,Multiple,Yes,Truck,Sunny,2022-10-17 03:50:26.765353,2023-03-13 03:50:26.765353,17.0,26.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Female
+895.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1610.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2022-07-05 11:30:11.162232,2023-01-31 11:30:11.162232,2.0,20.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+1868.49,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,880.0,0.0,0.0,0.0,0.0,35.99,0.0,0.0,840.0,168.0,0.0,0.0,0.0,112.5,Yes,No,Arms,Yes,Motorcycle,Snowy,2022-06-27 21:15:31.146229,2022-12-02 21:15:31.146229,1.0,24.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+852.2,Other side drove on wrong side of the road,D. 4 months,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,,7.2,501.75,No,No,Multiple,No,,Rainy,2020-01-29 14:55:16.983396,2020-06-30 14:55:16.983396,15.0,75.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Female
+1520.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,1439.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2023-02-20 07:54:08.569713,2024-01-30 07:54:08.569713,13.0,32.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+945.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,No,Car,Snowy,2021-03-07 22:54:19.371874,2022-01-31 22:54:19.371874,15.0,47.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+1495.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,2020.0,0.0,0.0,60.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Legs,Yes,Car,Rainy,2023-07-07 21:19:50.398079,2024-06-29 21:19:50.398079,10.0,26.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,520.0,0.0,242.0,0.0,0.0,0.0,No,Yes,Arms,Yes,,Snowy,2020-12-22 21:29:20.752150,2021-12-09 21:29:20.752150,16.0,76.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+1010.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,574.0,No,No,Legs,Yes,Truck,Rainy,2023-08-31 12:05:19.743948,2024-02-10 12:05:19.743948,2.0,78.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Other
+1450.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,413.28,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Hips,Yes,Truck,Rainy,2020-10-20 05:26:22.156431,2021-08-23 05:26:22.156431,4.0,58.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Female
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2020-05-19 00:28:31.062212,2020-08-28 00:28:31.062212,2.0,44.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Other
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Sunny,2020-11-27 11:40:16.083216,2021-10-20 11:40:16.083216,14.0,53.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+889.6,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Multiple,Yes,Car,Rainy,2022-04-14 02:51:06.373274,2023-03-07 02:51:06.373274,4.0,35.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Female
+,Rear end,J. 10 months,0.0,0.0,450.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,285.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2021-05-12 23:01:48.741748,2021-10-14 23:01:48.741748,2.0,48.0,1.0,,Concussion and bruised ribs.,No,No,Male
+300.0,Rear end,A. 1 month,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2020-05-30 23:51:38.779755,2020-06-09 23:51:38.779755,5.0,34.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+677.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,182.0,No,No,Legs,No,Truck,Sunny,2020-12-22 07:28:13.058611,2021-12-10 07:28:13.058611,13.0,71.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+890.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Multiple,No,Car,Rainy,2022-01-01 21:33:40.004000,2022-07-03 21:33:40.004000,1.0,70.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Female
+906.75,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,2.4,9.35,No,Yes,Arms,No,Car,Sunny,2023-06-17 03:39:47.277455,2023-10-29 03:39:47.277455,17.0,23.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+2890.0,Rear end,K. 11 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2020-12-13 20:11:51.502300,2020-12-19 20:11:51.502300,5.0,56.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+1789.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,750.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,,0.0,0.0,0.0,144.0,No,Yes,Hips,,Car,Rainy,,2024-01-06 04:28:45.465093,4.0,42.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+995.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Sunny,2022-08-05 03:29:25.073014,2023-07-04 03:29:25.073014,13.0,59.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+1253.0,Rear end,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,91.62,518.0,,Yes,Legs,Yes,,Snowy,2021-07-31 09:35:15.063012,2022-04-15 09:35:15.063012,16.0,59.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+800.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,350.0,No,No,Hips,No,Truck,Sunny,2021-10-16 19:04:44.456891,2022-05-15 19:04:44.456891,10.0,76.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+1395.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,955.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2022-06-21 11:03:06.517303,2022-08-11 11:03:06.517303,0.0,55.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2021-07-05 02:44:28.853770,2021-11-29 02:44:28.853770,9.0,55.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Female
+2878.15,Other side pulled out of side road,E. 5 months,0.0,,0.0,2712.0,0.0,0.0,,0.0,3.8,0.0,0.0,520.0,0.0,0.0,15.0,14.35,565.0,No,Yes,Hips,No,Truck,Snowy,2023-08-24 11:51:47.421484,2023-12-30 11:51:47.421484,8.0,78.0,,,,Yes,Yes,Other
+925.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,415.13,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,130.0,Yes,Yes,Multiple,No,Truck,Snowy,2020-10-11 04:08:52.906581,2021-06-26 04:08:52.906581,19.0,48.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Female
+3055.0,,F. 6 months,0.0,0.0,0.0,2875.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,60.0,0.0,0.0,0.0,0.0,Yes,Yes,Arms,No,Motorcycle,Rainy,2020-01-19 23:36:40.040008,2020-03-10 23:36:40.040008,11.0,68.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+895.0,Other,I. 9 months,0.0,0.0,0.0,483.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2022-04-28 17:19:18.711742,2022-09-29 17:19:18.711742,0.0,46.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+520.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Snowy,2020-06-15 11:21:32.658531,2020-08-24 11:21:32.658531,17.0,57.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+3020.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4600.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Sunny,2023-02-10 16:35:31.626325,2023-11-13 16:35:31.626325,11.0,26.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+690.0,Rear end - 3 car - Clt at front,D. 4 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,170.0,No,Yes,Legs,Yes,Truck,Snowy,2020-03-30 15:53:10.958191,2021-01-03 15:53:10.958191,1.0,18.0,4.0,,Fractured arm and leg.,No,No,Other
+1668.0,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Hips,No,Motorcycle,Rainy,2022-09-22 08:02:29.789958,2023-07-29 08:02:29.789958,0.0,33.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+823.0,Rear end,E. 5 months,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,328.0,No,,Hips,No,Car,Rainy,2022-12-28 21:10:54.610922,2023-05-11 21:10:54.610922,0.0,55.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Male
+1265.0,Other,I. 9 months,0.0,,0.0,1237.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,370.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2020-08-16 09:21:08.173634,2021-03-24 09:21:08.173634,0.0,40.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+1445.0,Rear end,H. 8 months,0.0,0.0,0.0,1903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Rainy,2023-05-16 07:38:17.979595,2023-10-26 07:38:17.979595,11.0,76.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+1000.0,Other side changed lanes on a roundabout colliding with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,620.0,0.0,,0.0,0.0,895.0,179.0,,0.0,0.0,50.0,Yes,Yes,Arms,No,Motorcycle,Snowy,,2020-12-25 10:11:32.778555,,25.0,2.0,Lost control on a snowy road.,,No,Yes,Male
+2033.0,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,740.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Legs,No,Motorcycle,Rainy,2022-10-11 21:40:17.523504,2022-12-07 21:40:17.523504,3.0,64.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+1210.0,Other side reversed into Clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,315.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-08-13 11:15:29.705941,2021-02-06 11:15:29.705941,19.0,29.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+753.4,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,20.4,0.0,238.0,No,No,Legs,No,Truck,Snowy,2023-01-31 11:15:46.989397,2023-05-26 11:15:46.989397,3.0,27.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+1500.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1810.0,0.0,0.0,60.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Rainy,2022-07-19 04:56:41.960392,2022-12-15 04:56:41.960392,14.0,33.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Female
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Snowy,2020-06-06 10:04:03.408681,2021-02-02 10:04:03.408681,0.0,64.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+260.0,Other side reversed into clt's stationary vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Snowy,2021-08-21 10:15:52.030406,,5.0,60.0,,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+240.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Truck,Sunny,2022-08-16 19:51:58.943788,2023-06-04 19:51:58.943788,13.0,41.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+1879.24,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,78.72,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,5.52,405.0,No,Yes,Arms,No,Car,Sunny,2023-09-27 08:57:13.646729,2024-08-19 08:57:13.646729,13.0,56.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Male
+764.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,244.0,No,Yes,Arms,No,Motorcycle,Sunny,2021-04-30 16:38:07.177435,2021-07-08 16:38:07.177435,9.0,25.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2020-11-01 18:50:37.567513,2021-09-11 18:50:37.567513,6.0,28.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Other
+1266.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,21.0,0.0,350.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2023-01-25 08:03:56.207241,2023-03-29 08:03:56.207241,11.0,58.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+495.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Snowy,2022-10-01 09:19:59.039807,2023-05-10 09:19:59.039807,18.0,43.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Male
+1469.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,574.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2020-05-27 11:44:52.618523,2020-06-12 11:44:52.618523,8.0,24.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+564.9,Other side reversed into Clt's vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,44.9,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2022-08-06 07:31:40.460092,2022-10-23 07:31:40.460092,2.0,32.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+1059.5,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,49.5,0.0,0.0,0.0,515.0,Yes,No,Arms,No,Truck,Rainy,2022-10-19 04:54:23.692738,2023-02-18 04:54:23.692738,3.0,32.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Male
+1257.66,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,67.66,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,443.0,No,No,Arms,Yes,Truck,Rainy,2021-07-11 19:57:27.329465,2022-03-26 19:57:27.329465,12.0,65.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+240.0,Rear end - 3 car - Clt at front,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,240.0,,0.0,0.0,0.0,0.0,,No,Hips,No,Truck,Snowy,2020-08-01 18:52:55.835167,,9.0,20.0,1.0,,Concussion and bruised ribs.,No,Yes,Other
+260.0,Other,A. 1 month,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,,2023-02-14 00:01:43.700740,,33.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+1266.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,0.0,0.0,21.0,0.0,350.0,No,Yes,Hips,No,Car,Sunny,2021-04-03 19:46:13.274654,2021-08-27 19:46:13.274654,5.0,,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Female
+890.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,370.0,No,Yes,Arms,No,Truck,Rainy,2023-09-08 02:19:59.759951,2024-05-02 02:19:59.759951,7.0,42.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Other
+1059.5,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,49.5,0.0,0.0,0.0,515.0,Yes,No,Legs,No,Car,Sunny,2022-05-09 05:39:37.195439,2022-08-03 05:39:37.195439,18.0,50.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Other
+240.0,Other,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Snowy,2023-07-25 09:53:41.204240,2024-01-08 09:53:41.204240,9.0,31.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+1105.0,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,3024.0,0.0,0.0,0.0,0.0,0.0,310.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Arms,No,Motorcycle,Rainy,2021-11-08 20:49:18.351670,2022-03-17 20:49:18.351670,4.0,41.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2022-09-01 00:21:18.975795,2023-02-13 00:21:18.975795,4.0,71.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Other
+520.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Sunny,2023-09-11 21:27:19.767953,2024-06-14 21:27:19.767953,4.0,28.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+2372.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,574.0,No,Yes,Multiple,No,Car,Snowy,2023-07-01 11:07:25.769153,2024-03-14 11:07:25.769153,8.0,20.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Male
+4776.969999999999,Rear end,F. 6 months,0.0,0.0,0.0,1085.0,0.0,3051.97,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,205.0,No,Yes,Multiple,No,Truck,Rainy,2022-03-15 00:53:00.156031,2022-07-25 00:53:00.156031,8.0,26.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Female
+1487.0,Rear end,,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,27.0,620.0,No,No,Legs,Yes,Car,Rainy,2021-02-04 16:53:57.767553,2021-04-03 16:53:57.767553,14.0,23.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+992.2,Rear end,F. 6 months,0.0,0.0,0.0,490.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,7.2,0.0,No,No,Hips,No,Motorcycle,Sunny,2021-02-25 17:34:34.734946,2021-11-09 17:34:34.734946,8.0,48.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+795.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Arms,No,Car,Rainy,2022-09-12 23:44:26.693338,2023-01-31 23:44:26.693338,13.0,72.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Female
+959.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,19.2,0.0,420.0,No,Yes,Legs,No,Truck,Snowy,2020-03-25 09:43:01.716343,2020-09-15 09:43:01.716343,5.0,33.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Female
+815.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,783.65,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,409.35,No,No,Arms,No,Motorcycle,Snowy,2021-08-26 02:24:53.578715,2022-02-17 02:24:53.578715,19.0,28.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Female
+280.0,Rear end - 3 car - Clt at front,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,40.0,No,No,Multiple,Yes,Motorcycle,Snowy,2020-01-19 09:35:32.346469,2020-08-15 09:35:32.346469,7.0,67.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Female
+1182.13,Other side pulled out of side road,E. 5 months,0.0,0.0,400.0,,0.0,262.13,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2023-02-26 04:05:25.505101,2023-09-18 04:05:25.505101,1.0,34.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+1481.5,Other side drove on wrong side of the road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,89.5,0.0,42.0,0.0,455.0,Yes,Yes,Arms,Yes,Motorcycle,Sunny,2020-04-06 02:05:35.587117,2020-04-13 02:05:35.587117,4.0,66.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Male
+2050.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,1880.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,2023-11-19 19:40:27.605521,2024-01-09 19:40:27.605521,16.0,20.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Female
+1460.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,Yes,Truck,Sunny,2021-07-27 07:27:21.208241,2022-04-12 07:27:21.208241,9.0,76.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+1047.9,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,102.9,425.0,No,Yes,Arms,Yes,Car,Snowy,2022-06-20 21:01:58.823764,2022-12-15 21:01:58.823764,13.0,36.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Male
+2771.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,2170.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Arms,No,Car,Sunny,2021-12-28 05:24:38.455691,2022-01-28 05:24:38.455691,17.0,41.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Female
+520.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,0.0,,No,Yes,Multiple,No,Motorcycle,Snowy,2020-02-10 21:18:58.547709,2021-01-31 21:18:58.547709,0.0,72.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Other
+4710.0,Rear end,S. 19 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4215.0,0.0,0.0,0.0,0.0,625.0,No,No,,Yes,Truck,Snowy,2023-08-18 15:40:30.486097,2024-07-01 15:40:30.486097,1.0,64.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Male
+839.8,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,12.0,406.0,No,Yes,Multiple,No,Motorcycle,Sunny,2021-12-23 06:15:03.060612,2022-05-26 06:15:03.060612,3.0,59.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+1570.0,Rear end,E. 5 months,0.0,0.0,0.0,1846.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,108.0,No,Yes,Legs,No,Car,Rainy,2023-02-13 21:41:43.940788,2024-02-12 21:41:43.940788,12.0,25.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Rainy,2020-05-11 03:13:17.199439,2020-07-05 03:13:17.199439,15.0,66.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Rainy,2021-06-17 00:09:30.354070,2021-11-20 00:09:30.354070,4.0,53.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+812.7,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,488.5,30.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,34.2,0.0,No,Yes,Legs,No,Car,Sunny,2023-07-22 11:48:02.736547,2023-09-04 11:48:02.736547,9.0,57.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+995.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Hips,No,Car,Rainy,2023-10-02 22:07:56.735347,2023-12-22 22:07:56.735347,16.0,75.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+1789.35,Rear end,C. 3 months,0.0,0.0,0.0,1651.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,10.65,18.7,No,Yes,Legs,No,Motorcycle,Rainy,2023-11-04 15:11:07.573514,2024-04-18 15:11:07.573514,10.0,19.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Female
+495.0,Other side collided with Clt's parked vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Sunny,2020-09-10 19:10:12.842568,2020-10-10 19:10:12.842568,4.0,40.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Rainy,2022-11-06 21:30:29.885977,2023-09-24 21:30:29.885977,14.0,57.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2022-12-04 15:24:05.329065,2023-04-19 15:24:05.329065,3.0,47.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Female
+1820.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Rainy,2022-11-17 23:51:56.063212,2022-12-01 23:51:56.063212,6.0,42.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Female
+840.75,Other side overtook and pulled in too soon,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,92.4,253.35,No,No,Hips,Yes,Car,Sunny,2020-04-24 11:41:07.933586,2021-04-16 11:41:07.933586,9.0,24.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+2390.0,Other,J. 10 months,0.0,0.0,0.0,1757.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,80.0,No,Yes,Hips,No,Car,Sunny,2020-09-02 14:54:25.133026,2020-12-17 14:54:25.133026,3.0,45.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Other
+1054.28,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,149.28,0.0,510.0,No,Yes,Arms,No,Motorcycle,Rainy,2021-12-15 23:00:56.891378,2022-12-09 23:00:56.891378,19.0,58.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+1500.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1810.0,0.0,0.0,60.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Car,Rainy,2022-03-26 03:14:26.333266,2023-02-07 03:14:26.333266,4.0,67.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Female
+5118.09,Other side pulled out of side road,P. 16 months,0.0,0.0,0.0,1500.0,0.0,291.71,0.0,0.0,137.34,0.0,0.0,3100.0,0.0,0.0,23.1,0.0,705.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2022-05-12 10:45:49.509901,2022-07-26 10:45:49.509901,4.0,76.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Female
+702.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,462.0,No,No,Hips,Yes,Motorcycle,Rainy,2021-01-31 14:46:03.912782,2021-04-20 14:46:03.912782,10.0,34.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+1855.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,880.0,,No,Yes,Hips,No,Motorcycle,Sunny,2020-10-16 03:18:28.301660,2021-04-28 03:18:28.301660,,,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Other
+1252.0,Other side turned across Clt's path,D. 4 months,0.0,0.0,300.0,250.0,0.0,0.0,0.0,0.0,453.68,0.0,0.0,520.0,0.0,0.0,0.0,0.0,182.0,No,Yes,,,Motorcycle,Rainy,2020-10-30 03:45:32.946589,2021-10-28 03:45:32.946589,4.0,18.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Other
+377.0,Other,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,240.0,0.0,0.0,0.0,33.0,163.0,No,No,Arms,No,Motorcycle,Sunny,2020-01-08 21:15:13.862772,2020-04-13 21:15:13.862772,7.0,,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+1298.9,,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.3,0.0,,895.0,0.0,0.0,0.0,39.6,474.6,No,Yes,,No,,Snowy,2020-04-23 00:38:18.699739,2020-06-02 00:38:18.699739,6.0,61.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Other
+3130.0,Other side drove on wrong side of the road,J. 10 months,0.0,0.0,0.0,1700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,125.0,No,No,Legs,Yes,Motorcycle,Snowy,2020-08-30 23:49:20.512102,2021-05-13 23:49:20.512102,7.0,53.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2020-03-13 17:20:27.845569,2020-06-28 17:20:27.845569,12.0,66.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+1400.9,Other side pulled out of side road,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,8.4,10.0,No,Yes,Multiple,No,Car,Snowy,2021-08-15 00:03:27.401480,2021-09-01 00:03:27.401480,4.0,24.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+1134.0,Other side pulled out of side road,G. 7 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,,0.0,0.0,0.0,294.0,No,No,,No,Motorcycle,Rainy,2021-03-22 06:21:57.863572,2021-04-06 06:21:57.863572,17.0,73.0,2.0,,Whiplash and minor bruises.,No,Yes,Other
+451.5,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,235.0,No,No,Arms,No,Car,Sunny,2023-05-09 14:25:19.503900,2024-02-05 14:25:19.503900,8.0,20.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+2061.91,Rear end,G. 7 months,0.0,0.0,0.0,523.25,0.0,580.91,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,433.0,Yes,Yes,Arms,,Motorcycle,,2021-06-20 19:16:50.362072,2021-07-03 19:16:50.362072,1.0,47.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2021-02-01 04:47:11.606321,2021-10-06 04:47:11.606321,15.0,18.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+2140.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,1400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Truck,Rainy,2022-06-27 00:13:49.605921,2023-01-27 00:13:49.605921,13.0,68.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Female
+1051.5,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,13.5,518.0,No,Yes,Multiple,Yes,Truck,Sunny,2021-01-21 09:26:19.275855,2021-06-21 09:26:19.275855,16.0,51.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+1173.8,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,28.8,290.0,No,Yes,Legs,No,Car,Rainy,2021-10-12 02:55:42.908581,2022-07-31 02:55:42.908581,5.0,55.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+2280.0,Rear end - Clt pushed into next vehicle,J. 10 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,246.0,No,Yes,Hips,No,Motorcycle,Sunny,2022-12-10 18:35:56.111222,2023-01-22 18:35:56.111222,2.0,60.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Female
+2086.85,Rear end,G. 7 months,0.0,0.0,0.0,1700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,7.02,294.0,No,Yes,Legs,No,Car,Rainy,2020-09-17 05:22:37.471494,2021-01-09 05:22:37.471494,16.0,72.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Other
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Sunny,2021-01-16 03:16:10.034006,2021-12-12 03:16:10.034006,12.0,74.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+1880.0,Rear end,E. 5 months,0.0,0.0,0.0,900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,640.0,406.0,Yes,Yes,Hips,Yes,Car,Rainy,2023-08-21 06:45:35.107021,2023-11-10 06:45:35.107021,5.0,70.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Other
+913.6,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,58.6,Yes,Yes,Legs,Yes,Truck,Rainy,2023-05-09 07:24:45.657131,2024-04-23 07:24:45.657131,7.0,53.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Male
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Snowy,2020-03-17 05:27:14.006801,2020-08-05 05:27:14.006801,5.0,50.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+2495.0,Other side pulled from parked position into the path of clt's vehicle,G. 7 months,,0.0,0.0,3029.0,0.0,0.0,,0.0,0.0,,0.0,895.0,,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,,2021-11-14 10:00:01.440288,2021-12-14 10:00:01.440288,15.0,60.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Female
+1270.0,Other side pulled from parked position into the path of clt's vehicle,G. 7 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,100.2,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2021-06-07 15:51:27.257451,2021-07-07 15:51:27.257451,5.0,33.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+1095.0,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,1771.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Multiple,Yes,Motorcycle,Rainy,2021-11-01 13:35:12.182436,2022-07-25 13:35:12.182436,16.0,79.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Sunny,2021-10-31 09:32:56.795359,2022-02-07 09:32:56.795359,2.0,55.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,2021-09-25 18:24:07.489497,2021-12-28 18:24:07.489497,11.0,28.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Other
+260.0,Other side reversed into clt's stationary vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2020-04-04 15:02:46.353270,2020-11-01 15:02:46.353270,5.0,25.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Female
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,1600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2020-10-14 16:15:39.067813,2021-08-05 16:15:39.067813,6.0,69.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+895.0,Rear end,G. 7 months,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,895.0,0.0,0.0,,0.0,0.0,No,,Hips,Yes,Truck,Snowy,2023-10-28 14:57:35.251050,2023-12-04 14:57:35.251050,10.0,18.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Other
+1114.0,Other side pulled on to roundabout,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,219.0,No,Yes,Legs,No,Car,Snowy,2023-01-30 00:12:57.755551,2023-04-29 00:12:57.755551,8.0,31.0,,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+990.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,15.12,574.0,No,Yes,Arms,No,Truck,Sunny,2021-05-22 21:20:59.531906,2022-02-01 21:20:59.531906,15.0,47.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+795.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,495.0,0.0,0.0,0.0,0.0,475.0,No,No,Arms,,Car,Sunny,,2022-01-27 05:29:14.990998,4.0,38.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+2033.0,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,740.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Multiple,No,Motorcycle,Snowy,2022-07-05 04:29:37.315463,2022-07-19 04:29:37.315463,14.0,75.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Other
+943.9,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,5.88,,No,Yes,Legs,Yes,Truck,Snowy,2023-02-12 10:38:54.706941,2023-08-23 10:38:54.706941,,38.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2020-08-31 20:51:02.052410,2021-06-22 20:51:02.052410,4.0,51.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+1161.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,96.0,0.0,0.0,170.0,No,Yes,Hips,No,Car,Snowy,2023-04-28 05:03:19.479895,2023-10-27 05:03:19.479895,6.0,55.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Female
+770.0,Other side changed lanes on a roundabout colliding with clt's vehicle,D. 4 months,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,495.0,0.0,0.0,0.0,0.0,300.0,No,No,Legs,No,Car,Rainy,2022-03-22 08:07:06.325265,,2.0,43.0,,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Car,Snowy,2021-02-11 17:07:30.090018,2021-09-23 17:07:30.090018,3.0,58.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Other
+1425.0,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,530.0,No,Yes,Legs,No,Truck,Sunny,2021-05-04 11:45:27.185437,2021-06-16 11:45:27.185437,14.0,31.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+1173.8,Other side turned across Clt's path,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,0.0,0.0,0.0,28.8,290.0,No,Yes,Hips,No,Motorcycle,Sunny,2023-06-18 21:43:10.358071,,1.0,71.0,2.0,,Whiplash and minor bruises.,No,No,Other
+,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,574.21,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,,518.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2023-06-13 15:33:01.116223,2023-11-29 15:33:01.116223,4.0,57.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Female
+5118.09,Other side pulled out of side road,P. 16 months,0.0,0.0,0.0,1500.0,0.0,291.71,0.0,0.0,137.34,0.0,0.0,3100.0,0.0,0.0,23.1,0.0,705.0,No,Yes,Hips,Yes,Car,Rainy,2021-06-20 12:16:16.515303,2022-03-11 12:16:16.515303,6.0,75.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+1500.0,,G. 7 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2022-12-22 17:59:03.828765,2023-03-28 17:59:03.828765,16.0,52.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+3250.0,Other side reversed into Clt's vehicle,P. 16 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3100.0,0.0,0.0,0.0,0.0,150.0,No,Yes,Multiple,Yes,Car,Rainy,2022-12-08 10:31:25.337067,2023-06-29 10:31:25.337067,7.0,59.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+1370.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,1182.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,,No,Yes,Hips,Yes,Motorcycle,Snowy,2022-06-01 14:24:44.936987,2023-04-18 14:24:44.936987,8.0,35.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+3411.0,Rear end,G. 7 months,,0.0,0.0,2160.0,,0.0,0.0,0.0,249.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Hips,Yes,Truck,Snowy,2023-09-30 00:02:18.267653,2024-08-30 00:02:18.267653,9.0,37.0,3.0,Hit a deer on the highway.,,Yes,Yes,Other
+,Rear end,,0.0,0.0,0.0,1700.0,0.0,2746.26,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,Yes,Car,Sunny,2021-05-03 00:42:37.951590,2021-07-10 00:42:37.951590,10.0,77.0,2.0,Swerved to avoid another vehicle.,,Yes,Yes,Male
+,Other side overtook and hit Clt when pulling in,J. 10 months,0.0,0.0,0.0,25.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2020-09-24 12:36:43.640728,,0.0,26.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+1314.1,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,44.1,375.0,No,Yes,Multiple,Yes,Truck,Snowy,2020-09-24 19:37:17.487497,2021-06-17 19:37:17.487497,14.0,58.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Female
+2557.0,Rear end,D. 4 months,0.0,0.0,500.0,0.0,,2143.27,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,310.0,No,Yes,Legs,,Motorcycle,Sunny,2020-11-26 21:39:08.389677,2021-10-23 21:39:08.389677,7.0,68.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+950.0,Other side drove on wrong side of the road,D. 4 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Legs,No,Truck,Rainy,2021-06-20 05:15:42.668533,2021-12-15 05:15:42.668533,18.0,77.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Female
+753.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,109.2,238.0,No,Yes,Hips,Yes,Truck,Rainy,2021-09-16 10:06:04.392878,2022-02-14 10:06:04.392878,11.0,62.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+520.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-03-16 06:40:24.004800,2024-01-27 06:40:24.004800,5.0,50.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+280.0,Rear end - 3 car - Clt at front,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,40.0,No,No,Legs,No,Motorcycle,Rainy,2021-07-10 08:54:38.095619,2021-08-26 08:54:38.095619,9.0,66.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Other
+1454.3,Rear end - 3 car - Clt at front,A. 1 month,0.0,0.0,0.0,1112.05,0.0,0.0,300.0,0.0,422.95,0.0,0.0,240.0,48.0,0.0,0.0,187.8,3.95,,No,Arms,,Truck,Snowy,2023-03-11 00:30:14.762952,2023-03-14 00:30:14.762952,4.0,21.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+787.1800000000001,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,22.18,270.0,No,No,Legs,Yes,Truck,Rainy,2022-10-14 19:45:55.991198,2023-01-25 19:45:55.991198,6.0,21.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Male
+2500.0,Rear end,J. 10 months,0.0,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Snowy,2023-11-02 00:06:02.952590,2024-08-01 00:06:02.952590,6.0,76.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+,Rear end,A. 1 month,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,,Multiple,No,,Rainy,2021-09-11 03:55:55.151030,2021-10-03 03:55:55.151030,8.0,65.0,2.0,,Concussion and bruised ribs.,Yes,No,Female
+2000.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,1725.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,191.7,6.0,No,Yes,Multiple,Yes,Truck,Rainy,2022-03-08 21:41:09.373874,2022-07-02 21:41:09.373874,14.0,77.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Male
+1830.0,Other,J. 10 months,,0.0,0.0,0.0,,0.0,,0.0,0.0,,0.0,1320.0,0.0,0.0,0.0,0.0,510.0,No,No,Multiple,No,Car,Sunny,2022-03-19 17:02:01.704340,2023-03-01 17:02:01.704340,5.0,33.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+2575.0,Rear end,M. 13 months,0.0,0.0,0.0,959.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Sunny,2021-01-20 19:25:11.582316,2021-05-04 19:25:11.582316,15.0,64.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Other
+700.0,Other side changed lanes and collided with clt's vehicle,A. 1 month,,0.0,0.0,483.0,0.0,,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,,No,Hips,Yes,Car,Sunny,2022-12-21 06:56:14.594918,2023-09-06 06:56:14.594918,6.0,,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+912.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,392.0,No,Yes,Legs,No,Truck,Sunny,2022-09-06 13:32:02.064412,2023-07-11 13:32:02.064412,14.0,23.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Male
+890.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,,370.0,No,Yes,Legs,No,,Sunny,2021-03-22 06:21:57.863572,2022-01-14 06:21:57.863572,1.0,54.0,1.0,,Sprained ankle and wrist.,Yes,No,Female
+1691.0,Other side drove on wrong side of the road,G. 7 months,0.0,0.0,0.0,575.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Legs,No,Truck,Sunny,2023-10-17 05:35:35.227045,2024-02-24 05:35:35.227045,7.0,39.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+688.4300000000001,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,8.43,160.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-08-09 16:08:09.697939,2021-05-31 16:08:09.697939,11.0,59.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+2460.0,,G. 7 months,0.0,0.0,0.0,1500.0,0.0,,0.0,0.0,0.0,0.0,0.0,840.0,,0.0,0.0,0.0,120.0,No,No,Multiple,No,Motorcycle,Snowy,2022-09-23 12:04:45.177035,2023-07-22 12:04:45.177035,10.0,56.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Other
+1358.3,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,15.6,32.7,625.0,No,Yes,Hips,Yes,Truck,Sunny,2021-01-31 07:45:30.066013,2021-03-20 07:45:30.066013,5.0,24.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,242.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,,2021-10-01 14:35:24.424884,2021-10-28 14:35:24.424884,19.0,59.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+1358.3,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,15.6,32.7,625.0,No,Yes,Multiple,Yes,Car,Sunny,2022-10-13 15:43:40.604120,2022-10-28 15:43:40.604120,12.0,47.0,4.0,,Sprained ankle and wrist.,No,Yes,Other
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2020-10-03 20:54:46.737347,2021-06-23 20:54:46.737347,15.0,27.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Other
+260.0,Other side collided with Clt's parked vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2021-08-30 04:32:47.433486,2022-06-24 04:32:47.433486,7.0,74.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Female
+3740.0,Other,J. 10 months,0.0,0.0,0.0,2000.0,0.0,0.0,120.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,462.0,,Yes,,No,Car,Snowy,2021-05-30 18:36:13.394678,2022-02-19 18:36:13.394678,16.0,,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+845.0,Rear end,D. 4 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,,Yes,Motorcycle,Snowy,2020-01-08 21:15:13.862772,2021-01-03 21:15:13.862772,12.0,23.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+888.1,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,368.1,No,Yes,Hips,Yes,Car,Snowy,2021-12-22 09:13:21.520304,2022-05-05 09:13:21.520304,3.0,41.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+1173.8,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,290.0,No,Yes,Legs,No,Truck,Rainy,2022-01-11 05:51:43.100620,2022-03-28 05:51:43.100620,19.0,19.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+745.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,294.0,No,No,Hips,Yes,Motorcycle,Sunny,2020-02-16 10:29:41.636327,2020-03-17 10:29:41.636327,9.0,57.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+1115.0,Rear end,G. 7 months,0.0,0.0,0.0,983.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Legs,Yes,Car,Snowy,2022-04-24 15:11:24.856971,2023-03-30 15:11:24.856971,19.0,74.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Male
+830.0,Rear end,D. 4 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,,406.0,No,No,Arms,,Truck,,2023-04-16 05:40:11.762352,2023-08-20 05:40:11.762352,15.0,69.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+545.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,126.0,No,No,Multiple,No,Truck,Rainy,2022-12-23 00:59:37.675535,2023-03-17 00:59:37.675535,16.0,32.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,No,Truck,Sunny,2022-12-25 16:04:42.296459,2023-02-17 16:04:42.296459,7.0,70.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+,Rear end,,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2021-12-22 16:13:55.367073,2022-10-01 16:13:55.367073,10.0,38.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+822.44,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,54.6,455.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-12-31 00:00:00.000000,2024-12-05 00:00:00.000000,4.0,35.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2023-11-17 11:35:56.831366,2024-08-06 11:35:56.831366,15.0,22.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+2495.0,Other side pulled from parked position into the path of clt's vehicle,G. 7 months,0.0,0.0,0.0,3029.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2021-04-03 12:45:39.427885,2022-03-29 12:45:39.427885,7.0,42.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Female
+524.25,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,4.25,No,Yes,Arms,Yes,Car,Snowy,2020-09-01 03:51:35.899179,2021-04-11 03:51:35.899179,15.0,53.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+865.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,370.0,No,No,Hips,No,Truck,Snowy,2023-12-28 01:54:21.532306,2024-11-20 01:54:21.532306,3.0,27.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Male
+307.76,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,47.76,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Snowy,2023-02-24 03:01:28.577715,2023-02-26 03:01:28.577715,5.0,68.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+1069.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,574.0,No,No,Arms,Yes,Motorcycle,Snowy,2021-10-29 15:29:33.714742,2022-08-31 15:29:33.714742,7.0,63.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Other
+2895.0,Other side pulled out of side road,K. 11 months,0.0,0.0,0.0,3160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2022-09-21 11:00:48.249649,2023-02-14 11:00:48.249649,8.0,40.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+1454.3,Rear end - 3 car - Clt at front,A. 1 month,0.0,0.0,0.0,1112.05,0.0,0.0,300.0,0.0,422.95,0.0,0.0,240.0,48.0,0.0,0.0,187.8,3.95,Yes,No,Hips,No,Car,Rainy,2022-02-18 19:06:10.874174,2022-03-08 19:06:10.874174,12.0,41.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Other
+1818.94,Rear end,A. 1 month,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,7.8,0.0,801.14,No,No,Hips,No,Motorcycle,Snowy,2023-04-15 22:39:37.915583,2023-05-01 22:39:37.915583,16.0,62.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+2529.51,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,1000.0,0.0,634.51,0.0,0.0,0.0,0.0,0.0,895.0,,0.0,,0.0,0.0,No,Yes,,No,Motorcycle,Sunny,2023-10-18 09:37:50.614122,2024-08-21 09:37:50.614122,8.0,78.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,0.0,No,Yes,Hips,,Truck,Snowy,2023-06-25 21:56:42.680536,2023-12-01 21:56:42.680536,,27.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+1371.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,895.0,179.0,0.0,0.0,0.0,574.0,Yes,Yes,Legs,No,Truck,Sunny,2021-04-20 04:17:48.693738,2022-03-26 04:17:48.693738,8.0,71.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2021-06-28 23:32:38.071614,2022-06-15 23:32:38.071614,5.0,23.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Male
+568.6,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,3.6,70.0,No,No,Legs,No,Motorcycle,Sunny,2020-02-29 13:55:04.740948,2020-12-23 13:55:04.740948,9.0,30.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Female
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Rainy,2022-11-11 06:38:57.587517,2023-06-08 06:38:57.587517,4.0,38.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+1006.74,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,1.74,126.0,No,Yes,Hips,No,Car,Sunny,2022-07-15 23:50:29.645929,2023-02-05 23:50:29.645929,6.0,49.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+,Rear end,F. 6 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.0,299.35,No,Yes,Arms,Yes,Truck,Sunny,,2020-12-10 00:26:12.794558,10.0,60.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+470.43,Rear end,A. 1 month,,0.0,150.0,0.0,0.0,0.0,0.0,0.0,66.33,0.0,,240.0,0.0,0.0,0.0,14.1,0.0,No,No,Multiple,Yes,Truck,Rainy,2023-04-10 02:28:20.980196,2023-10-05 02:28:20.980196,8.0,71.0,4.0,,Minor cuts and scrapes.,Yes,Yes,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2022-12-30 08:13:43.844768,2023-07-27 08:13:43.844768,9.0,74.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Female
+1540.0,Rear end,,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,175.0,No,Yes,Legs,Yes,Truck,Sunny,2020-11-18 17:23:20.680136,2021-03-22 17:23:20.680136,10.0,,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+2095.0,Other side drove on wrong side of the road,G. 7 months,0.0,0.0,0.0,2000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,102.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2020-11-14 08:14:52.978595,2020-11-29 08:14:52.978595,2.0,19.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Other
+1150.0,Rear end,H. 8 months,0.0,0.0,0.0,1038.0,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,182.0,No,Yes,Hips,Yes,Truck,Sunny,2021-04-14 08:06:31.758351,,7.0,75.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Female
+1340.0,Rear end,F. 6 months,0.0,0.0,0.0,551.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,518.0,Yes,Yes,Arms,No,Car,Sunny,2021-06-21 02:17:24.208841,2022-04-15 02:17:24.208841,16.0,76.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+1570.58,Other side drove on wrong side of the road,H. 8 months,0.0,0.0,0.0,1102.85,0.0,309.4,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,14.43,0.0,Yes,Yes,Arms,No,Car,Sunny,2022-09-19 02:56:17.475495,2022-11-03 02:56:17.475495,6.0,32.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Male
+1549.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,29.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2020-01-20 06:37:13.886777,2020-04-23 06:37:13.886777,11.0,68.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+1095.0,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,1771.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Legs,Yes,Motorcycle,Sunny,2023-10-27 17:55:53.710742,2024-02-11 17:55:53.710742,15.0,34.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+2830.0,Rear end,L. 12 months,0.0,0.0,0.0,1440.0,0.0,0.0,0.0,0.0,0.0,,0.0,1390.0,0.0,0.0,,0.0,0.0,No,Yes,Arms,No,,Rainy,2021-01-08 06:00:56.171234,2021-10-13 06:00:56.171234,,37.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+1135.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Multiple,Yes,Truck,Sunny,2023-04-29 09:05:34.866973,2023-09-04 09:05:34.866973,12.0,67.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+1770.0,Rear end - Clt pushed into next vehicle,I. 9 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Hips,No,Car,Sunny,2020-08-25 10:38:37.423484,2020-10-02 10:38:37.423484,17.0,23.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Other
+1246.0,Rear end,G. 7 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,266.0,No,No,Legs,Yes,Truck,Rainy,2020-04-27 09:46:46.401280,2020-08-02 09:46:46.401280,17.0,32.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+1309.0,Other side pulled on to roundabout,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,895.0,179.0,0.0,0.0,0.0,235.0,Yes,Yes,Legs,Yes,Car,Rainy,2021-08-07 16:49:21.232246,2022-02-21 16:49:21.232246,4.0,78.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+1381.8,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,895.0,0.0,0.0,0.0,37.8,442.0,No,Yes,Arms,No,Motorcycle,Sunny,2023-05-01 17:10:05.641128,2023-11-09 17:10:05.641128,13.0,34.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+520.0,,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,,Hips,No,Truck,Sunny,2022-05-04 06:30:01.800360,2023-04-26 06:30:01.800360,,73.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+1320.0,Other,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,,Motorcycle,Sunny,2022-05-24 03:08:23.380676,2022-05-31 03:08:23.380676,2.0,43.0,,Side collision at an intersection.,,Yes,Yes,Other
+1115.8,Rear end,G. 7 months,0.0,0.0,0.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,25.8,0.0,No,No,Hips,No,Truck,Snowy,2020-11-13 04:12:37.591518,2020-12-27 04:12:37.591518,16.0,39.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+1378.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Hips,No,Car,Snowy,2023-06-21 12:48:14.978995,2024-05-18 12:48:14.978995,11.0,26.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Male
+,Rear end,E. 5 months,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,,Yes,Hips,Yes,Motorcycle,Sunny,2022-01-19 10:07:30.810162,2022-01-26 10:07:30.810162,2.0,29.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Female
+520.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Rainy,2023-08-03 18:11:44.300860,2024-02-13 18:11:44.300860,1.0,39.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Male
+1838.0,Other,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,518.0,No,No,Multiple,No,Truck,Sunny,2020-08-13 04:14:55.859171,2021-06-25 04:14:55.859171,3.0,75.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+1425.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,350.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,180.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2022-12-08 10:31:25.337067,2022-12-09 10:31:25.337067,17.0,40.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+999.03,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,94.73,,0.0,495.0,,337.1,0.0,22.2,0.0,No,No,Multiple,No,,Rainy,,2022-10-07 14:32:14.306861,19.0,54.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Female
+495.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Rainy,2021-05-02 10:41:30.258051,2022-04-10 10:41:30.258051,13.0,31.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+955.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,60.0,0.0,No,Yes,,Yes,Motorcycle,Sunny,2021-03-30 10:37:45.573114,,7.0,41.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+870.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,30.0,No,No,Legs,No,Truck,Sunny,2022-05-13 21:48:38.743748,2022-05-31 21:48:38.743748,1.0,25.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Male
+520.0,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2020-12-02 03:49:17.631526,2021-03-20 03:49:17.631526,18.0,43.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Other
+720.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,230.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,No,Truck,Snowy,2020-12-21 10:26:31.518303,2021-05-05 10:26:31.518303,9.0,49.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+1050.8,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,219.8,0.0,0.0,520.0,0.0,0.0,0.0,0.0,311.0,No,Yes,Arms,Yes,Truck,Snowy,2021-10-13 13:58:32.142428,2022-08-19 13:58:32.142428,4.0,74.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Female
+698.7,Rear end,E. 5 months,0.0,0.0,0.0,593.0,0.0,0.0,0.0,18.7,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,182.0,No,Yes,Legs,No,Motorcycle,Snowy,2023-06-22 02:49:22.672534,2023-08-28 02:49:22.672534,10.0,45.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+875.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,10.08,462.0,No,Yes,Legs,Yes,Car,Rainy,2023-02-25 21:04:51.658331,2023-05-29 21:04:51.658331,8.0,49.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+840.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Truck,Sunny,2021-08-19 09:11:55.103020,2022-01-04 09:11:55.103020,15.0,39.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Male
+1574.2,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,200.0,1112.0,0.0,0.0,0.0,0.0,80.0,0.0,0.0,520.0,0.0,0.0,79.2,0.0,545.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2020-07-24 21:37:41.972394,2021-01-29 21:37:41.972394,4.0,66.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+1695.0,Rear end,F. 6 months,0.0,0.0,0.0,2415.0,0.0,0.0,0.0,0.0,0.0,0.0,,495.0,0.0,1.0,0.0,0.0,,,No,,No,Truck,Snowy,2022-02-18 12:05:37.027405,2022-04-18 12:05:37.027405,,26.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Female
+1117.5,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Hips,Yes,Car,Sunny,2021-09-09 02:51:58.223644,2022-03-15 02:51:58.223644,13.0,20.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Male
+764.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,244.0,No,Yes,Arms,Yes,Car,Rainy,2022-05-19 10:59:21.832366,2023-01-09 10:59:21.832366,8.0,42.0,,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Female
+1866.0,Rear end,J. 10 months,0.0,0.0,0.0,,,0.0,,0.0,0.0,0.0,0.0,1390.0,,0.0,0.0,0.0,574.0,No,Yes,Legs,Yes,Truck,Rainy,2023-06-24 03:53:19.599919,2023-09-01 03:53:19.599919,19.0,56.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Other
+2823.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,2648.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Snowy,2023-07-02 15:09:41.156231,2023-10-08 15:09:41.156231,4.0,79.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Female
+1995.3,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,1260.0,0.0,0.0,0.0,0.0,696.6,0.0,,260.0,,0.0,0.0,38.7,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2020-05-03 05:58:03.336667,2020-05-11 05:58:03.336667,14.0,29.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Female
+260.0,Other side collided with Clt's parked vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2021-08-13 06:00:04.320864,2022-06-20 06:00:04.320864,8.0,46.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+927.56,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,7.56,455.0,No,Yes,Multiple,No,Truck,Snowy,2023-01-12 18:39:40.796159,2023-05-26 18:39:40.796159,3.0,20.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Male
+1597.0,,F. 6 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,No,Car,Snowy,2023-04-21 11:50:21.004200,2023-06-16 11:50:21.004200,3.0,58.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+495.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Sunny,2020-06-03 18:58:58.787757,2021-05-29 18:58:58.787757,19.0,63.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Male
+700.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,80.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-01-27 06:50:46.209241,2020-05-20 06:50:46.209241,6.0,40.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Male
+1473.6,Rear end,E. 5 months,0.0,0.0,0.0,1960.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,227.6,126.0,No,Yes,,,Motorcycle,Rainy,2022-09-11 19:42:11.306261,2022-12-08 19:42:11.306261,14.0,40.0,,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2021-07-21 04:15:30.426085,2021-12-06 04:15:30.426085,16.0,72.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+895.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,400.0,No,Yes,Multiple,No,Truck,Snowy,2023-01-16 06:46:26.957391,2023-05-04 06:46:26.957391,17.0,35.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Female
+1115.5,Rear end,H. 8 months,0.0,0.0,0.0,555.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,3.0,50.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2020-12-28 03:39:29.993998,2021-01-20 03:39:29.993998,6.0,28.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+2249.99,Rear end,I. 9 months,0.0,0.0,0.0,1780.0,0.0,437.96,0.0,0.0,199.99,0.0,0.0,895.0,0.0,0.0,0.0,0.0,473.5,No,Yes,Legs,No,Motorcycle,Rainy,2021-05-28 10:31:42.620524,2021-10-19 10:31:42.620524,18.0,53.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Other
+1277.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,620.0,No,No,Arms,No,Car,Sunny,2020-01-29 07:54:43.136627,2021-01-20 07:54:43.136627,9.0,43.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+650.0,Rear end,F. 6 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,80.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Rainy,2021-03-07 22:54:19.371874,2021-07-29 22:54:19.371874,12.0,25.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+1375.0,Other side pulled on to roundabout,D. 4 months,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,400.0,No,Yes,Legs,Yes,Car,Rainy,2023-09-13 01:29:35.155031,2023-11-08 01:29:35.155031,1.0,45.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Snowy,2021-06-19 01:13:27.281456,2021-10-05 01:13:27.281456,19.0,35.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2022-01-24 23:18:13.898779,2023-01-10 23:18:13.898779,10.0,30.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+1145.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Arms,Yes,Truck,Sunny,2022-12-01 03:17:19.167833,2022-12-07 03:17:19.167833,4.0,53.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Snowy,2020-01-24 01:44:33.894778,2020-02-23 01:44:33.894778,5.0,59.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+820.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,325.0,No,No,Multiple,Yes,Car,Rainy,2023-10-07 07:16:24.436887,2024-08-09 07:16:24.436887,2.0,57.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+1645.0,Other,H. 8 months,,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,,Multiple,No,Car,Rainy,2021-10-11 05:54:01.368273,2022-10-08 05:54:01.368273,0.0,61.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+2286.96,Rear end - 3 car - Clt at front,J. 10 months,0.0,0.0,0.0,700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,20.16,0.0,246.8,No,No,Arms,No,Car,Sunny,2022-01-20 07:09:12.350470,2022-12-31 07:09:12.350470,2.0,68.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2021-06-01 12:39:36.475295,2021-10-06 12:39:36.475295,2.0,29.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+1745.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,1250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Rainy,2023-08-12 12:28:39.703940,2024-06-09 12:28:39.703940,3.0,39.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+1000.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,625.0,No,Yes,Arms,No,Car,Snowy,2020-11-23 23:33:29.921984,2021-03-24 23:33:29.921984,6.0,77.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+520.0,Rear end,F. 6 months,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2023-01-18 00:49:50.038007,2023-04-27 00:49:50.038007,14.0,19.0,,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+1243.0,Rear end,C. 3 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,80.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,,Yes,Multiple,Yes,Motorcycle,Sunny,2022-10-11 14:39:43.676735,2023-03-26 14:39:43.676735,10.0,,2.0,,Concussion and bruised ribs.,Yes,Yes,Male
+529.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,9.0,0.0,No,Yes,Hips,No,Truck,Sunny,2022-02-05 01:39:40.076015,2022-12-27 01:39:40.076015,17.0,57.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+260.0,Other,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Rainy,2021-02-13 18:11:27.017403,2021-12-29 18:11:27.017403,11.0,45.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+520.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,Yes,Car,Rainy,2022-01-22 22:14:16.971394,2022-09-20 22:14:16.971394,3.0,30.0,4.0,Side collision at an intersection.,,Yes,No,Male
+1720.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,500.0,700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2020-04-06 16:06:43.280656,2020-05-26 16:06:43.280656,10.0,50.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+340.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,182.0,No,No,Multiple,Yes,Motorcycle,Rainy,2023-10-18 16:38:24.460892,2024-07-12 16:38:24.460892,5.0,20.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+1793.69,Rear end,F. 6 months,0.0,0.0,0.0,1038.45,0.0,249.79,0.0,0.0,1108.0,0.0,0.0,520.0,0.0,0.0,0.0,274.0,272.4,No,Yes,Multiple,Yes,Car,Sunny,2022-11-19 17:55:19.143828,2023-10-10 17:55:19.143828,18.0,79.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+895.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2020-08-03 19:56:52.762552,2020-10-15 19:56:52.762552,17.0,51.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Other
+520.0,Rear end - 3 car - Clt at front,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2023-09-07 05:18:18.219643,2024-07-03 05:18:18.219643,14.0,40.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Female
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,10.8,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2020-01-12 23:23:07.717543,2020-03-04 23:23:07.717543,2.0,72.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Other
+767.5,Other side changed lanes and collided with clt's vehicle,D. 4 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,3.0,0.0,270.0,No,No,Legs,No,Car,Rainy,2023-12-25 10:49:16.911382,2024-09-15 10:49:16.911382,16.0,49.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+935.3,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,18.3,0.0,375.0,No,Yes,Legs,No,Motorcycle,Snowy,2023-02-06 14:27:37.771554,2023-09-21 14:27:37.771554,0.0,37.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+270.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,50.0,No,No,Hips,Yes,Motorcycle,Snowy,2021-07-23 05:19:27.353470,2022-02-01 05:19:27.353470,1.0,45.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Male
+1470.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Multiple,Yes,Car,Rainy,2022-10-07 12:31:49.821964,2023-06-03 12:31:49.821964,18.0,77.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+2020.0,Rear end,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,,Yes,Legs,Yes,Car,Rainy,2021-09-13 12:00:25.925185,2021-09-23 12:00:25.925185,8.0,25.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+3434.0,Rear end,I. 9 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,266.44,0.0,0.0,840.0,0.0,0.0,0.0,0.0,375.0,No,No,Multiple,No,Motorcycle,Rainy,2023-08-06 09:16:48.921784,2024-06-03 09:16:48.921784,7.0,20.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+3650.0,Rear end,L. 12 months,0.0,0.0,0.0,2400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,50.0,No,No,Hips,No,Motorcycle,Sunny,2021-09-21 02:15:05.941188,2022-09-15 02:15:05.941188,11.0,47.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Male
+895.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Snowy,2020-12-27 06:37:48.453690,2021-08-12 06:37:48.453690,14.0,42.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,160.0,0.0,0.0,0.0,0.0,1390.0,,0.0,0.0,0.0,0.0,,Yes,Arms,Yes,Car,Sunny,2021-05-30 18:36:13.394678,2022-03-19 18:36:13.394678,6.0,,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+690.0,Other side pulled out of side road,E. 5 months,,0.0,0.0,1960.0,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Hips,No,,Sunny,2021-06-21 16:18:31.902380,2021-08-12 16:18:31.902380,15.0,,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Male
+3282.27,Other side pulled out of side road,,0.0,0.0,0.0,2000.0,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,104.0,0.0,,380.27,693.7,Yes,Yes,Arms,,Car,Sunny,2020-05-27 11:44:52.618523,2021-01-22 11:44:52.618523,6.0,46.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+1270.0,Rear end,D. 4 months,0.0,0.0,0.0,903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,578.0,No,Yes,Multiple,Yes,Truck,Sunny,2021-06-21 16:18:31.902380,2021-09-28 16:18:31.902380,19.0,64.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+390.0,Rear end,A. 1 month,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Motorcycle,Snowy,2023-11-07 06:16:12.194438,2024-01-27 06:16:12.194438,11.0,47.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+1595.0,Rear end - Clt pushed into next vehicle,I. 9 months,0.0,0.0,0.0,2130.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2021-02-11 03:06:22.396479,2021-02-24 03:06:22.396479,16.0,51.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+1058.55,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,210.0,0.0,0.0,495.0,0.0,0.0,7.55,0.0,485.0,No,No,Multiple,Yes,Motorcycle,Sunny,2020-03-15 18:24:24.772954,2021-03-07 18:24:24.772954,10.0,42.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Male
+3427.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,2300.0,,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,,No,Yes,Arms,Yes,Car,Rainy,2021-05-17 08:10:16.443288,2021-09-22 08:10:16.443288,3.0,34.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Male
+723.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,520.0,0.0,0.0,0.0,,345.0,No,Yes,Legs,No,,Snowy,2020-11-08 19:04:09.889977,2021-09-08 19:04:09.889977,18.0,76.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+780.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2021-04-18 17:14:59.459891,2021-04-29 17:14:59.459891,1.0,41.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Male
+3120.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,2000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,225.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-12-28 22:56:03.072614,2024-03-18 22:56:03.072614,1.0,55.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+1409.99,Rear end - Clt pushed into next vehicle,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,80.0,0.0,89.99,0.0,0.0,1320.0,0.0,0.0,0.0,87.6,0.0,No,No,Hips,No,Truck,Rainy,2021-08-26 09:25:27.425485,2022-05-14 09:25:27.425485,16.0,45.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Other
+1500.0,Other,G. 7 months,0.0,0.0,0.0,1187.0,,0.0,100.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2020-11-08 05:03:02.196439,2020-11-14 05:03:02.196439,8.0,50.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+1600.0,Rear end,D. 4 months,0.0,0.0,0.0,930.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,175.0,No,No,Arms,No,Motorcycle,Snowy,2020-05-11 10:13:51.046209,2020-12-19 10:13:51.046209,0.0,79.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Other
+687.56,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,214.23,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2020-09-18 23:26:00.552110,2021-07-13 23:26:00.552110,9.0,53.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+2120.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Snowy,2023-11-13 09:28:02.976595,2024-02-02 09:28:02.976595,14.0,68.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Male
+1224.15,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,869.85,0.0,0.0,520.0,0.0,0.0,0.0,109.2,400.0,No,Yes,Multiple,Yes,Truck,Snowy,2022-12-24 19:03:00.756151,2022-12-27 19:03:00.756151,14.0,24.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Other
+958.9,Rear end,F. 6 months,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,14.4,455.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2020-01-24 15:45:41.588317,,1.0,40.0,1.0,,Minor cuts and scrapes.,No,No,Other
+1150.0,Rear end,H. 8 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,182.0,No,Yes,Arms,No,Motorcycle,Sunny,2020-08-02 22:55:11.222244,2021-03-11 22:55:11.222244,13.0,71.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+1115.44,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,180.24,30.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,10.2,0.0,No,Yes,Arms,Yes,Car,Rainy,2023-05-04 01:14:36.415283,2024-04-17 01:14:36.415283,3.0,63.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Male
+481.2,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,52.0,0.0,0.0,0.0,238.0,Yes,Yes,Multiple,Yes,Truck,Rainy,2023-02-25 21:04:51.658331,2023-04-15 21:04:51.658331,17.0,43.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+720.0,Other side turned across Clt's path,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,460.0,0.0,0.0,,0.0,260.0,0.0,,0.0,,0.0,No,Yes,Legs,No,Car,Snowy,2021-10-06 13:44:59.819963,2022-05-22 13:44:59.819963,8.0,31.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+700.0,Rear end - Clt pushed into next vehicle,,0.0,0.0,0.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,80.0,No,Yes,Legs,No,Motorcycle,Sunny,2023-02-27 01:07:07.045409,2023-12-14 01:07:07.045409,1.0,59.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+675.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,175.0,No,Yes,Arms,Yes,Car,Snowy,2021-08-07 16:49:21.232246,2022-05-27 16:49:21.232246,1.0,45.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Male
+1695.0,Rear end,F. 6 months,,0.0,0.0,2415.0,,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,1.0,0.0,0.0,0.0,No,No,Legs,No,Car,Rainy,2021-05-08 20:53:54.886977,2022-03-02 20:53:54.886977,17.0,41.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+360.0,Rear end,B. 2 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Sunny,2020-12-10 08:05:05.341068,2021-06-21 08:05:05.341068,16.0,24.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+2140.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,1400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,,Car,Sunny,2022-05-07 04:35:40.268053,2023-01-19 04:35:40.268053,8.0,65.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+1510.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,120.0,No,Yes,Hips,,Motorcycle,Sunny,2022-01-04 12:38:44.624924,,,53.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Other
+1020.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,129.04,180.0,No,No,Multiple,Yes,Motorcycle,Sunny,2023-12-16 02:31:13.814762,2024-05-10 02:31:13.814762,1.0,56.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+3065.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,794.35,No,Yes,Arms,Yes,Truck,Sunny,2020-05-14 15:20:03.360672,2021-02-28 15:20:03.360672,1.0,32.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2022-04-27 06:16:29.477895,2023-01-09 06:16:29.477895,4.0,66.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Male
+2988.6,Rear end,G. 7 months,0.0,0.0,0.0,1890.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,33.6,0.0,460.0,Yes,Yes,Hips,Yes,Car,Rainy,2020-02-03 21:05:26.225245,2020-12-08 21:05:26.225245,11.0,20.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+1834.2,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,109.2,0.0,605.0,No,Yes,Multiple,No,Truck,Rainy,2021-04-28 01:33:02.556511,2022-01-31 01:33:02.556511,15.0,65.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Other
+1395.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,955.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2023-08-25 01:52:55.115023,2024-03-01 01:52:55.115023,13.0,19.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+520.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2021-06-09 02:54:16.491298,2021-12-04 02:54:16.491298,19.0,24.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Male
+307.76,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,47.76,0.0,0.0,0.0,0.0,0.0,260.0,,0.0,,0.0,0.0,,Yes,Arms,No,,Sunny,,2020-07-27 11:11:45.021004,1.0,74.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+303.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,51.6,0.0,No,Yes,Legs,Yes,Truck,Rainy,2022-08-03 09:26:01.992398,2022-10-28 09:26:01.992398,7.0,33.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+260.0,Other side collided with Clt's parked vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Sunny,2021-09-11 17:57:02.844568,2022-05-17 17:57:02.844568,3.0,38.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,,No,Yes,Legs,Yes,Truck,Snowy,2023-01-20 08:54:20.812162,2023-08-25 08:54:20.812162,19.0,26.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+1666.75,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,36.75,0.0,235.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2022-09-03 08:25:49.749949,2022-10-15 08:25:49.749949,8.0,29.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+599.95,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.95,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Sunny,2022-01-14 17:58:29.261852,2022-07-27 17:58:29.261852,19.0,46.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Other
+520.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-11-29 03:58:30.702140,2024-10-21 03:58:30.702140,18.0,41.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+495.0,Other side pulled on to roundabout,D. 4 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,,Yes,Hips,No,Motorcycle,Rainy,2021-04-08 04:54:40.976195,2021-09-18 04:54:40.976195,1.0,,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,12.96,465.0,No,Yes,Hips,Yes,Truck,Rainy,2023-09-29 10:01:10.574114,2024-07-01 10:01:10.574114,15.0,,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Male
+2279.0,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,264.0,0.0,0.0,0.0,625.0,Yes,Yes,Multiple,Yes,Motorcycle,Sunny,2022-03-13 06:49:37.075415,2023-03-12 06:49:37.075415,10.0,60.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Female
+890.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Arms,Yes,Car,Snowy,2020-07-04 03:57:38.851770,2020-11-11 03:57:38.851770,7.0,35.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Male
+1133.63,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.23,0.0,0.0,895.0,,0.0,0.0,0.0,238.0,No,Yes,Legs,No,Motorcycle,Rainy,2022-04-21 17:05:46.389277,2023-01-09 17:05:46.389277,11.0,71.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Female
+700.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,80.0,No,Yes,Hips,No,Motorcycle,Rainy,2022-03-31 23:25:43.268653,2022-09-24 23:25:43.268653,2.0,22.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Other
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Rainy,2023-07-24 12:51:59.663932,2024-04-14 12:51:59.663932,12.0,32.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+1032.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,192.0,No,No,Arms,Yes,Motorcycle,Sunny,2023-03-18 14:44:54.778955,2023-04-14 14:44:54.778955,1.0,76.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+727.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,300.0,No,Yes,Hips,Yes,Truck,Snowy,2022-03-10 22:45:06.301260,2022-06-03 22:45:06.301260,12.0,24.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+892.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,42.0,406.0,No,Yes,Multiple,No,Truck,Sunny,2021-07-04 05:42:47.313462,2022-01-16 05:42:47.313462,7.0,42.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+1135.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,350.0,No,No,Hips,Yes,Car,Rainy,2021-03-19 08:16:19.395879,,14.0,31.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Other
+844.54,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,,0.0,0.0,,0.0,,0.0,0.0,495.0,0.0,0.0,0.0,18.54,331.0,No,No,Hips,No,Car,Snowy,2020-06-30 08:50:18.843768,2021-02-28 08:50:18.843768,8.0,69.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Other
+963.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,495.0,0.0,0.0,0.0,0.0,468.0,No,No,,Yes,Car,Sunny,,2024-08-05 18:01:56.663332,10.0,57.0,4.0,,Concussion and bruised ribs.,No,Yes,Female
+849.5,Rear end,F. 6 months,,0.0,0.0,1038.0,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,142.0,No,Yes,Legs,Yes,Car,Rainy,2021-03-24 21:27:02.484496,2021-09-17 21:27:02.484496,2.0,53.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Other
+669.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,0.0,188.0,No,Yes,Multiple,No,Truck,Rainy,2021-11-13 12:58:19.899980,2022-03-23 12:58:19.899980,6.0,,3.0,,Fractured arm and leg.,No,Yes,Male
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2021-08-05 08:44:50.458091,2021-12-28 08:44:50.458091,13.0,61.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Male
+688.4300000000001,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,8.43,160.0,No,Yes,Hips,Yes,Car,Rainy,2021-08-27 13:27:42.812562,2021-11-18 13:27:42.812562,14.0,67.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+735.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,294.0,No,Yes,Multiple,No,Car,Rainy,2023-12-02 09:04:43.016603,2024-11-26 09:04:43.016603,8.0,41.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Other
+1165.0,Rear end,F. 6 months,0.0,0.0,0.0,1033.45,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,,Yes,Legs,No,Car,,2023-12-10 20:21:04.572914,2024-03-07 20:21:04.572914,19.0,32.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Other
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2021-11-21 17:14:07.609521,2021-12-11 17:14:07.609521,10.0,,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Male
+545.2,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,417.27,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.5,21.2,No,Yes,Arms,No,Car,Sunny,2022-04-10 21:44:54.058811,2022-11-26 21:44:54.058811,6.0,41.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Female
+982.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2022-06-06 06:33:46.485297,2022-10-10 06:33:46.485297,11.0,28.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Other
+495.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Sunny,2020-09-06 10:01:45.141028,2021-08-26 10:01:45.141028,18.0,61.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+1265.0,Other,I. 9 months,0.0,0.0,0.0,1237.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,370.0,No,Yes,Legs,Yes,Truck,Rainy,2022-03-07 17:38:53.986797,2022-04-27 17:38:53.986797,17.0,68.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+1054.0,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129.0,0.0,0.0,895.0,0.0,0.0,0.0,30.0,109.8,No,Yes,Multiple,Yes,Truck,Snowy,2020-09-24 05:36:09.793958,2020-12-21 05:36:09.793958,12.0,34.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Male
+1372.05,Rear end,F. 6 months,0.0,0.0,0.0,1103.0,0.0,0.0,0.0,30.25,0.0,0.0,0.0,520.0,0.0,0.0,0.0,1.8,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-12-13 04:25:35.347069,2024-05-31 04:25:35.347069,10.0,78.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Snowy,2020-02-08 06:13:53.926785,2020-04-11 06:13:53.926785,0.0,23.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+2286.96,Rear end - 3 car - Clt at front,J. 10 months,0.0,0.0,0.0,700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,20.16,0.0,246.8,No,No,Multiple,Yes,Car,Snowy,2020-11-21 22:29:32.994598,2021-02-18 22:29:32.994598,5.0,38.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Sunny,2022-11-15 08:46:51.442288,2023-05-23 08:46:51.442288,1.0,25.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Male
+695.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,345.0,No,,Multiple,No,Car,,2020-09-08 04:05:08.221644,2021-03-17 04:05:08.221644,12.0,32.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+1006.74,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,1.74,126.0,No,Yes,Legs,Yes,Car,Rainy,2020-03-26 13:45:17.103420,2020-06-23 13:45:17.103420,12.0,71.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,242.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2022-02-24 01:16:20.116023,2023-02-07 01:16:20.116023,18.0,69.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Male
+1270.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,750.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Rainy,2020-10-18 18:23:32.922584,2021-09-15 18:23:32.922584,8.0,49.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+992.2,Rear end,F. 6 months,0.0,0.0,0.0,490.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,7.2,0.0,No,No,Hips,Yes,Car,Sunny,2021-11-01 13:35:12.182436,2021-11-27 13:35:12.182436,18.0,75.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Male
+1626.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,310.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,518.0,No,No,Arms,Yes,Truck,Rainy,2022-12-12 05:38:45.345069,2023-06-06 05:38:45.345069,0.0,27.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+725.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,374.35,No,Yes,Hips,No,Motorcycle,Sunny,2020-03-24 12:41:20.176035,2021-03-23 12:41:20.176035,7.0,45.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+975.0,Rear end,F. 6 months,0.0,0.0,0.0,580.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Sunny,2020-05-11 03:13:17.199439,2021-01-30 03:13:17.199439,13.0,32.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Female
+910.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,48.6,375.0,No,Yes,Hips,No,Car,Rainy,2021-11-13 19:58:53.746749,2021-12-25 19:58:53.746749,15.0,29.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+495.0,Other side changed lanes on a roundabout colliding with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Sunny,2022-08-04 06:27:43.532706,2022-12-01 06:27:43.532706,3.0,60.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+795.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,650.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,300.0,No,No,Multiple,Yes,Truck,Sunny,2022-02-28 10:24:47.817563,2022-08-16 10:24:47.817563,17.0,35.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+261.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,1.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2022-06-29 01:17:46.533306,2022-10-15 01:17:46.533306,13.0,73.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+1834.2,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,109.2,0.0,605.0,No,Yes,,Yes,Car,Sunny,2023-08-27 23:58:33.582716,2024-01-21 23:58:33.582716,8.0,54.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+1173.8,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,28.8,290.0,No,Yes,Multiple,Yes,Truck,Snowy,2020-03-14 14:22:09.385877,2020-09-06 14:22:09.385877,14.0,61.0,,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Male
+994.8,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.8,150.0,No,No,Multiple,Yes,Car,Rainy,2021-02-18 10:20:28.565713,2021-08-26 10:20:28.565713,2.0,41.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Female
+762.75,Other,E. 5 months,0.0,0.0,0.0,20.0,0.0,222.75,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2021-11-13 05:57:46.053210,2022-04-22 05:57:46.053210,3.0,54.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+1592.8,Rear end,F. 6 months,0.0,0.0,550.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,70.8,0.0,575.0,No,Yes,Hips,No,Truck,Sunny,2020-12-26 16:36:40.760152,2021-10-24 16:36:40.760152,17.0,71.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+1998.0,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Legs,No,Car,Rainy,2020-10-18 18:23:32.922584,2021-10-01 18:23:32.922584,13.0,46.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2023-01-03 03:21:03.852770,2023-03-18 03:21:03.852770,14.0,27.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Male
+,Rear end,A. 1 month,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,,Rainy,2023-04-17 02:41:53.302660,,7.0,31.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Other
+836.85,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,959.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,56.85,No,Yes,Multiple,Yes,Motorcycle,Snowy,2023-07-12 06:28:18.099619,2023-07-30 06:28:18.099619,9.0,33.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+1274.2,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,798.0,No,No,Multiple,No,Truck,Rainy,2022-02-01 13:32:53.914782,2022-06-21 13:32:53.914782,11.0,54.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+840.0,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Sunny,2021-02-26 07:35:42.428485,2021-06-21 07:35:42.428485,8.0,28.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+1425.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,180.0,No,Yes,Multiple,No,Truck,Rainy,2021-09-25 18:24:07.489497,2022-08-19 18:24:07.489497,7.0,68.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Female
+1307.14,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.0,0.0,0.0,895.0,0.0,0.0,0.0,337.14,0.0,No,Yes,Hips,No,Car,Rainy,2022-05-03 02:27:46.413282,2022-12-14 02:27:46.413282,16.0,43.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+992.2,Rear end,F. 6 months,0.0,0.0,0.0,490.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,7.2,0.0,No,No,Multiple,No,Car,Snowy,2022-12-11 15:37:37.651530,2023-01-26 15:37:37.651530,8.0,57.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Female
+1348.25,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,508.25,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Sunny,2021-10-22 08:15:27.545509,2021-11-29 08:15:27.545509,12.0,36.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+870.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,462.0,No,No,Multiple,No,Car,Rainy,2021-07-22 01:17:11.966393,2022-02-13 01:17:11.966393,13.0,69.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+840.0,Other side collided with Clt's parked vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Snowy,2023-12-12 00:23:19.959992,2023-12-21 00:23:19.959992,4.0,71.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Other
+1054.28,Rear end,E. 5 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,520.0,,0.0,149.28,0.0,510.0,No,Yes,Multiple,Yes,Car,Rainy,2021-06-25 04:25:18.063612,2022-03-05 04:25:18.063612,8.0,,3.0,,Whiplash and minor bruises.,No,Yes,Female
+800.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,180.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,76.8,300.0,No,Yes,Hips,No,Truck,Sunny,2020-06-23 22:37:54.214842,2020-10-09 22:37:54.214842,15.0,47.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+520.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-11-28 06:56:49.161832,2024-03-05 06:56:49.161832,18.0,49.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Other
+493.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Hips,No,Motorcycle,Rainy,2023-04-22 15:52:36.391278,2024-01-22 15:52:36.391278,6.0,40.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+835.4,Other side pulled out of side road,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,285.0,0.0,0.0,520.0,0.0,,0.0,29.4,0.0,No,Yes,Hips,No,Car,Rainy,2022-09-20 20:59:40.556111,2022-11-30 20:59:40.556111,11.0,70.0,,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Male
+631.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,111.0,No,Yes,Legs,Yes,Truck,Rainy,2022-05-23 06:06:41.840368,2022-07-01 06:06:41.840368,1.0,29.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+545.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,245.3,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2023-10-17 05:35:35.227045,2024-08-10 05:35:35.227045,17.0,75.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Other
+1995.3,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,1260.0,0.0,0.0,0.0,0.0,696.6,0.0,0.0,260.0,0.0,0.0,0.0,38.7,0.0,No,Yes,Hips,Yes,Car,Snowy,2023-06-03 03:12:42.632526,2023-09-01 03:12:42.632526,17.0,30.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Other
+2215.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,1207.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Multiple,Yes,Truck,Snowy,2023-06-27 08:59:31.914382,2024-02-01 08:59:31.914382,15.0,38.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Female
+1975.0,Rear end,C. 3 months,0.0,,0.0,1610.0,0.0,0.0,0.0,0.0,0.0,0.0,,240.0,0.0,,0.0,0.0,125.0,No,No,Arms,Yes,Truck,Rainy,2022-04-03 00:29:40.196039,2022-07-19 00:29:40.196039,10.0,,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+950.0,Other side drove on wrong side of the road,D. 4 months,,0.0,0.0,523.25,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,455.0,No,Yes,Hips,No,Car,Sunny,2020-09-08 18:06:15.915183,2020-12-13 18:06:15.915183,1.0,46.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+1470.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2023-08-15 03:33:44.324864,2023-09-16 03:33:44.324864,13.0,46.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+427.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,18.0,325.0,No,No,Hips,Yes,Car,Sunny,2023-03-30 07:07:28.649729,2023-08-03 07:07:28.649729,3.0,67.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+804.0,,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,495.0,0.0,0.0,24.0,0.0,294.0,No,No,Multiple,Yes,Motorcycle,Sunny,2020-12-22 00:27:39.211842,2021-05-18 00:27:39.211842,6.0,44.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+815.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Arms,No,Car,Sunny,2023-01-13 08:40:48.489697,2023-10-20 08:40:48.489697,1.0,46.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2023-09-06 15:17:10.526105,2023-09-30 15:17:10.526105,13.0,32.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+708.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,235.0,No,Yes,Multiple,No,Motorcycle,Rainy,2023-08-19 12:42:12.026405,2024-03-15 12:42:12.026405,6.0,64.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Female
+1622.24,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,650.0,0.0,288.87,490.0,,0.0,0.0,0.0,,0.0,,0.0,102.24,50.0,No,Yes,Multiple,Yes,Truck,Snowy,2020-06-02 21:57:17.247449,2020-09-30 21:57:17.247449,8.0,29.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Snowy,2022-05-03 09:28:20.260052,2023-02-01 09:28:20.260052,7.0,75.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+890.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.5,75.0,No,No,Arms,No,Truck,Rainy,2022-07-24 18:07:25.049009,2022-12-11 18:07:25.049009,8.0,58.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+240.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Snowy,2020-12-05 08:55:29.945989,2021-09-28 08:55:29.945989,6.0,36.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Male
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2023-10-23 08:47:26.009201,2024-09-30 08:47:26.009201,18.0,29.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+912.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,392.0,No,Yes,Multiple,No,Car,Sunny,2022-11-06 21:30:29.885977,2023-01-27 21:30:29.885977,16.0,40.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-09-04 01:57:14.366873,2021-03-31 01:57:14.366873,12.0,22.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+1400.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,100.0,0.0,,53.9,256.0,,No,Legs,No,Car,,2021-09-10 06:54:13.610722,2021-10-13 06:54:13.610722,10.0,75.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Other
+995.0,Other side changed lanes on a roundabout colliding with clt's vehicle,D. 4 months,0.0,0.0,0.0,1444.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,182.0,No,No,Arms,No,Car,Sunny,2022-06-20 07:00:51.130226,2022-07-14 07:00:51.130226,17.0,43.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+1620.0,Rear end,F. 6 months,0.0,0.0,0.0,1950.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,No,Car,Snowy,2021-05-31 22:38:28.781756,2021-07-31 22:38:28.781756,16.0,70.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+4755.0,Other,O. 15 months,0.0,0.0,0.0,1102.85,0.0,0.0,60.0,0.0,0.0,0.0,0.0,2040.0,0.0,2320.0,0.0,0.0,0.0,No,No,Hips,No,Truck,Rainy,2022-08-16 19:51:58.943788,2023-06-23 19:51:58.943788,15.0,69.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Female
+1375.0,Rear end,F. 6 months,0.0,0.0,0.0,1972.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Snowy,2021-06-17 00:09:30.354070,2021-12-23 00:09:30.354070,9.0,27.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+652.24,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.24,126.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2022-08-28 12:14:32.814562,2022-11-20 12:14:32.814562,3.0,39.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+729.0,Rear end,E. 5 months,0.0,0.0,0.0,1680.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,133.0,Yes,Yes,Multiple,Yes,Car,Snowy,2020-05-09 23:11:01.812362,2020-12-20 23:11:01.812362,3.0,56.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Snowy,2020-10-26 08:38:12.938587,2021-04-12 08:38:12.938587,10.0,40.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+570.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,No,Motorcycle,Rainy,2021-06-01 05:39:02.628525,2021-12-04 05:39:02.628525,7.0,28.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+1220.0,Rear end,E. 5 months,0.0,0.0,0.0,1680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,85.0,No,Yes,Hips,No,Motorcycle,Rainy,2021-01-31 21:46:37.759551,2021-04-13 21:46:37.759551,8.0,45.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+1110.0,Other side drove on wrong side of the road,B. 2 months,0.0,0.0,0.0,1547.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2020-01-06 06:10:09.241848,2020-03-20 06:10:09.241848,15.0,48.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+1570.4,Rear end,E. 5 months,0.0,0.0,0.0,680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,5.4,565.0,No,Yes,Hips,No,Motorcycle,Sunny,2020-06-12 13:15:54.190838,2021-05-19 13:15:54.190838,9.0,25.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+600.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,105.0,No,No,Hips,Yes,Car,Snowy,2020-05-17 13:25:41.828365,2020-10-17 13:25:41.828365,8.0,70.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Female
+1025.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,505.0,No,Yes,Hips,Yes,Truck,Sunny,2020-01-08 21:15:13.862772,2020-04-13 21:15:13.862772,2.0,56.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Male
+538.5,Rear end,E. 5 months,0.0,0.0,600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,104.4,0.0,No,No,Hips,No,Motorcycle,Rainy,2020-06-12 06:15:20.344068,2020-08-04 06:15:20.344068,1.0,65.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+884.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,18.6,0.0,406.0,No,Yes,Legs,No,Motorcycle,Sunny,2022-02-14 09:57:43.172634,2022-08-07 09:57:43.172634,8.0,45.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2022-08-03 02:25:28.145629,2022-11-21 02:25:28.145629,12.0,33.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+1150.5,Other,G. 7 months,585.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,55.2,0.0,No,Yes,Legs,No,Car,Sunny,2023-08-22 17:48:24.340868,2024-07-03 17:48:24.340868,5.0,63.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+,Rear end,G. 7 months,0.0,0.0,0.0,1562.0,0.0,,0.0,0.0,0.0,0.0,0.0,895.0,173.0,0.0,0.0,0.0,0.0,Yes,Yes,Arms,,Motorcycle,Snowy,2020-10-02 16:52:31.350270,,3.0,,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Female
+1133.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,,,No,Yes,Legs,No,Car,Sunny,2023-02-27 01:07:07.045409,2023-11-07 01:07:07.045409,13.0,,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+1105.0,,I. 9 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,,0.0,0.0,0.0,371.0,No,Yes,Legs,Yes,Car,Rainy,2022-12-03 18:22:23.788757,2023-02-14 18:22:23.788757,10.0,48.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+975.0,Other side drove on wrong side of the road,E. 5 months,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Arms,Yes,Car,Rainy,2023-12-20 11:39:41.516303,2024-07-19 11:39:41.516303,1.0,58.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+913.6,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,179.0,0.0,0.0,,58.6,Yes,Yes,Arms,No,,Rainy,2022-06-13 13:47:52.654530,2023-01-11 13:47:52.654530,2.0,65.0,,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+1826.6,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1955.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,7.95,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2021-07-31 23:36:22.756551,2022-04-08 23:36:22.756551,4.0,33.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+1115.0,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,220.0,No,Yes,Legs,No,Motorcycle,Sunny,2022-03-04 05:32:07.825565,2022-08-19 05:32:07.825565,6.0,22.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Other
+481.2,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,52.0,0.0,0.0,0.0,238.0,Yes,Yes,Legs,No,Car,Snowy,2023-12-08 05:15:59.951990,2024-08-27 05:15:59.951990,10.0,52.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Other
+726.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,24.0,182.0,No,Yes,Arms,Yes,Car,,2020-08-26 00:39:45.117023,2021-07-23 00:39:45.117023,11.0,70.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Other
+4345.0,Other,X. 24 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4345.0,0.0,0.0,0.0,,0.0,No,Yes,Multiple,No,Truck,Rainy,2021-11-10 07:52:07.585517,2022-06-28 07:52:07.585517,10.0,42.0,3.0,Swerved to avoid another vehicle.,,No,No,Female
+1114.0,Other side pulled on to roundabout,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,219.0,No,Yes,Multiple,No,Truck,Snowy,2021-11-11 11:54:22.972594,2022-07-08 11:54:22.972594,18.0,30.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Female
+1157.2,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,7.2,350.0,No,Yes,Hips,Yes,Truck,Snowy,2020-10-19 15:25:14.462892,2021-07-21 15:25:14.462892,12.0,46.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+565.0,Other side turned across Clt's path,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,520.0,0.0,0.0,,0.0,45.0,No,Yes,Arms,No,Motorcycle,Rainy,,2021-08-16 08:29:51.718343,3.0,44.0,1.0,Swerved to avoid another vehicle.,,Yes,No,Female
+1701.22,Rear end,B. 2 months,0.0,0.0,0.0,1433.0,0.0,0.0,50.0,6.24,0.0,0.0,0.0,260.0,0.0,0.0,1.98,0.0,0.0,No,Yes,Hips,No,Truck,Rainy,2023-05-12 19:31:31.818363,2023-07-21 19:31:31.818363,13.0,57.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+1775.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,477.0,No,Yes,Multiple,No,Motorcycle,Snowy,2020-12-24 22:33:17.679535,2021-11-01 22:33:17.679535,11.0,34.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2022-08-23 06:04:23.572714,2023-02-13 06:04:23.572714,1.0,54.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+568.6,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,3.6,70.0,No,No,Arms,No,Motorcycle,Rainy,2022-01-08 14:46:38.479695,2022-12-10 14:46:38.479695,7.0,55.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Female
+240.0,Other side turned across Clt's path,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Sunny,2021-02-21 15:26:40.880176,2021-06-10 15:26:40.880176,18.0,46.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+240.0,Other side turned across Clt's path,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Snowy,2023-02-16 12:46:48.561712,2023-09-07 12:46:48.561712,12.0,75.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+1245.0,Other side reversed into clt's stationary vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Legs,No,Car,Sunny,2021-03-23 10:24:13.250650,2021-09-24 10:24:13.250650,0.0,78.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+240.0,Other,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Car,Sunny,2021-07-06 13:47:18.087617,2022-04-23 13:47:18.087617,4.0,76.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+1216.0,Rear end,F. 6 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,525.0,No,Yes,Multiple,No,Car,Snowy,2022-07-01 09:22:17.307461,2023-05-25 09:22:17.307461,10.0,51.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Other
+700.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,80.0,No,Yes,Multiple,Yes,Truck,Sunny,2021-02-19 00:21:36.259251,2021-05-22 00:21:36.259251,10.0,47.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Female
+698.47,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,203.47,0.0,,0.0,0.0,0.0,495.0,0.0,0.0,0.0,,,No,No,Multiple,Yes,,Rainy,2020-04-23 21:40:00.240048,2021-01-07 21:40:00.240048,12.0,48.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Other
+1388.0,,B. 2 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,,559.44,0.0,0.0,345.0,No,Yes,Legs,No,,,2022-04-03 00:29:40.196039,2023-02-19 00:29:40.196039,1.0,39.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,52.0,0.0,0.0,0.0,0.0,Yes,Yes,Legs,No,Truck,Snowy,2021-06-29 20:34:19.611922,2022-01-21 20:34:19.611922,18.0,63.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Male
+1390.0,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2022-05-14 11:49:46.437287,2022-07-05 11:49:46.437287,15.0,42.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+2603.46,Rear end,G. 7 months,0.0,0.0,0.0,1540.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,895.0,0.0,0.0,0.0,,135.0,No,,Multiple,,Car,Rainy,2020-12-15 00:14:06.889377,2021-11-29 00:14:06.889377,4.0,79.0,3.0,,Whiplash and minor bruises.,Yes,Yes,Other
+2170.0,Rear end,J. 10 months,0.0,0.0,0.0,1108.45,0.0,1600.0,790.0,,299.0,,0.0,1320.0,0.0,62.97,0.0,0.0,0.0,No,No,Legs,No,Car,Rainy,2022-01-30 19:29:30.834166,2022-07-30 19:29:30.834166,13.0,,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Male
+1181.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Arms,No,Car,Rainy,2020-09-07 07:03:26.681336,2021-07-07 07:03:26.681336,18.0,52.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+906.0,Rear end,F. 6 months,0.0,0.0,0.0,718.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,,,No,Multiple,No,Motorcycle,Sunny,2022-07-31 11:20:23.524704,2022-08-03 11:20:23.524704,4.0,,3.0,Swerved to avoid another vehicle.,,Yes,No,Other
+1700.0,Rear end,B. 2 months,0.0,0.0,0.0,1469.0,0.0,0.0,140.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2021-03-18 18:15:11.702340,2021-06-10 18:15:11.702340,8.0,67.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Rainy,2020-12-02 17:50:25.325065,2021-07-04 17:50:25.325065,11.0,61.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Other
+623.08,Rear end,,0.0,0.0,0.0,0.0,0.0,103.08,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Snowy,2020-09-02 21:54:58.979795,2020-10-06 21:54:58.979795,15.0,26.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+795.9,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.9,,No,Yes,Legs,Yes,Car,Rainy,2021-05-06 05:48:50.266053,2021-06-25 05:48:50.266053,,76.0,,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Other
+524.6,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Arms,No,Truck,Sunny,2020-03-26 20:45:50.950190,2021-01-09 20:45:50.950190,14.0,43.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+2712.17,Rear end,F. 6 months,0.0,0.0,0.0,1750.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,184.54,620.0,No,Yes,Arms,No,Truck,Rainy,2020-07-07 02:03:17.319463,2021-06-01 02:03:17.319463,16.0,44.0,,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+1627.0,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,925.0,No,Yes,Legs,No,Motorcycle,Sunny,2022-11-27 01:09:25.313062,2023-08-13 01:09:25.313062,14.0,44.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Female
+520.0,Rear end,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,,Truck,Rainy,2021-09-15 13:04:22.852570,2022-05-31 13:04:22.852570,2.0,,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Female
+495.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Snowy,2020-02-02 03:02:03.144628,2020-10-31 03:02:03.144628,16.0,47.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+3396.0,Rear end,L. 12 months,0.0,0.0,0.0,1960.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,506.0,No,Yes,Hips,Yes,Truck,Rainy,2020-06-19 06:28:52.666533,2020-12-18 06:28:52.666533,12.0,62.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+531.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,36.0,No,No,Arms,No,Truck,Snowy,2022-07-30 21:19:15.831166,2022-09-01 21:19:15.831166,8.0,76.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Female
+1200.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,425.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Snowy,2021-03-09 23:58:16.299259,2021-11-29 23:58:16.299259,12.0,63.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+884.5,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-11-21 13:43:50.686137,2024-09-29 13:43:50.686137,15.0,48.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+1390.0,Rear end,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Snowy,2021-04-26 07:29:39.475895,2021-06-05 07:29:39.475895,18.0,59.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Male
+1808.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,1070.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Multiple,No,Truck,Snowy,2021-11-26 09:23:09.157831,2022-09-30 09:23:09.157831,13.0,20.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+1215.0,Other,H. 8 months,0.0,0.0,0.0,523.25,0.0,195.75,0.0,0.0,45.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,320.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2020-01-31 15:59:13.910782,2020-08-28 15:59:13.910782,7.0,46.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+4280.0,Rear end - Clt pushed into next vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,4408.16,0.0,0.0,40.0,No,No,Legs,No,Motorcycle,Sunny,2022-11-03 16:24:17.571514,2023-08-02 16:24:17.571514,18.0,24.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+830.0,Rear end,F. 6 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Multiple,No,Motorcycle,Snowy,2021-05-09 17:55:36.427285,2021-09-22 17:55:36.427285,2.0,35.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Other
+895.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1610.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2021-05-21 03:17:36.451290,2021-08-16 03:17:36.451290,17.0,33.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+,Other side turned across Clt's path,,0.0,0.0,0.0,1112.05,0.0,0.0,,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,105.0,No,Yes,Hips,No,Car,Snowy,2020-04-21 06:34:55.619123,2020-06-20 06:34:55.619123,15.0,66.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+1090.0,Rear end,F. 6 months,0.0,0.0,0.0,1890.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2022-03-10 01:43:24.760952,2022-08-21 01:43:24.760952,13.0,74.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+1020.0,Rear end,A. 1 month,0.0,,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2023-06-26 04:57:16.527305,2023-06-29 04:57:16.527305,15.0,49.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Female
+1540.0,Rear end,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,175.0,No,Yes,Multiple,No,Car,Rainy,2021-01-19 08:22:22.348469,2021-02-03 08:22:22.348469,16.0,55.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+4776.969999999999,Rear end,F. 6 months,0.0,0.0,0.0,1085.0,0.0,3051.97,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,205.0,No,Yes,Arms,No,Truck,Snowy,2022-02-28 03:24:13.970794,2022-06-10 03:24:13.970794,19.0,42.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Snowy,2023-12-06 11:12:36.871374,2024-08-17 11:12:36.871374,10.0,61.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Female
+2359.0,Other side changed lanes on a roundabout colliding with clt's vehicle,H. 8 months,0.0,0.0,0.0,3450.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,19.0,No,No,Multiple,No,Motorcycle,Snowy,2023-04-04 20:18:11.738347,2023-11-15 20:18:11.738347,12.0,49.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+1490.0,Rear end,D. 4 months,0.0,0.0,0.0,970.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2023-11-04 01:09:59.879976,2024-06-01 01:09:59.879976,10.0,36.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Male
+579.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,84.0,No,Yes,Legs,Yes,Car,Snowy,2020-09-21 14:31:05.173034,2020-10-14 14:31:05.173034,3.0,20.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Female
+565.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,70.0,No,No,Legs,Yes,Car,Rainy,2020-07-12 08:13:26.561312,2021-03-04 08:13:26.561312,13.0,75.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+900.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,405.0,No,No,Legs,No,Truck,Snowy,2020-05-14 22:20:37.207441,2020-09-22 22:20:37.207441,4.0,77.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+1694.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,742.0,Yes,Yes,Legs,Yes,Truck,Sunny,2022-04-27 13:17:03.324664,2022-10-02 13:17:03.324664,3.0,52.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Female
+811.0,Rear end,B. 2 months,0.0,0.0,0.0,570.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,1.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Snowy,2023-09-28 20:00:02.880576,2024-03-19 20:00:02.880576,0.0,67.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+,Other side changed lanes and collided with clt's vehicle,J. 10 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,1320.0,,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Rainy,2020-10-02 02:51:23.656731,2020-10-19 02:51:23.656731,13.0,46.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-02-15 20:28:33.942788,2020-12-25 20:28:33.942788,6.0,28.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Male
+945.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,,No,,Snowy,2022-08-24 10:06:38.959791,2023-02-25 10:06:38.959791,9.0,23.0,,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+2540.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,1700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Rainy,2021-01-22 06:28:00.816163,2021-12-22 06:28:00.816163,1.0,36.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+1025.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,505.0,No,Yes,Multiple,Yes,Truck,Snowy,2022-03-04 12:32:41.672334,2022-09-04 12:32:41.672334,9.0,54.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+580.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,60.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2022-02-18 05:05:03.180636,2022-07-11 05:05:03.180636,2.0,62.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+531.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,36.0,No,No,Arms,No,Motorcycle,Snowy,2022-01-20 00:08:38.503700,2022-03-05 00:08:38.503700,7.0,44.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+681.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2022-09-17 15:53:28.241648,2022-09-29 15:53:28.241648,9.0,22.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+732.5,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,16.8,266.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2021-09-07 01:48:01.296259,2021-09-15 01:48:01.296259,7.0,43.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+1390.0,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2023-11-02 14:07:10.646129,2024-01-21 14:07:10.646129,13.0,52.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+805.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.0,0.0,0.0,520.0,0.0,0.0,0.0,,375.0,No,Yes,Legs,No,Truck,Sunny,,2021-04-30 23:04:58.859771,17.0,36.0,4.0,,,Yes,Yes,Female
+788.28,Rear end,E. 5 months,0.0,0.0,0.0,1820.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,43.2,0.0,400.0,No,No,Multiple,Yes,Truck,Rainy,2022-08-28 05:13:58.967793,2023-02-06 05:13:58.967793,8.0,34.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+1334.5,Rear end - Clt pushed into next vehicle,I. 9 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,83.2,0.0,Yes,Yes,Multiple,,Motorcycle,Snowy,2022-05-08 01:37:21.808361,2023-03-06 01:37:21.808361,8.0,71.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+2095.0,Other side drove on wrong side of the road,G. 7 months,0.0,0.0,0.0,2000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,102.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2021-12-26 04:20:41.528305,2022-07-30 04:20:41.528305,3.0,52.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+5118.09,Other side pulled out of side road,P. 16 months,0.0,0.0,0.0,1500.0,0.0,291.71,0.0,0.0,137.34,0.0,0.0,3100.0,0.0,0.0,23.1,0.0,705.0,No,Yes,Arms,Yes,Truck,Rainy,2023-05-23 14:52:24.148829,2024-01-26 14:52:24.148829,2.0,64.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Male
+1090.0,Rear end,F. 6 months,0.0,0.0,0.0,1890.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Sunny,2022-04-28 17:19:18.711742,2022-05-27 17:19:18.711742,13.0,66.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Female
+1322.4,Rear end,H. 8 months,0.0,0.0,0.0,1346.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,2.4,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2022-06-02 11:26:26.477295,2023-03-01 11:26:26.477295,13.0,30.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+,Rear end,H. 8 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,0.0,0.0,0.0,0.0,0.0,,Yes,Arms,No,Motorcycle,Rainy,,2021-06-18 13:55:39.307861,15.0,31.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Male
+243.9,Other,B. 2 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,3.9,0.0,No,No,,Yes,Truck,Sunny,,2021-06-21 10:08:22.660532,4.0,47.0,4.0,,Fractured arm and leg.,No,No,Female
+3198.26,Rear end,,0.0,0.0,0.0,1700.0,0.0,2746.26,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,,Rainy,2020-03-12 06:17:38.611722,2020-11-11 06:17:38.611722,,78.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+2911.39,,J. 10 months,0.0,0.0,0.0,1112.05,0.0,0.0,0.0,0.0,208.99,0.0,,1390.0,0.0,0.0,0.0,50.4,405.0,No,Yes,Hips,Yes,Car,Sunny,2021-11-16 18:04:32.214442,2021-12-16 18:04:32.214442,14.0,75.0,1.0,Lost control on a snowy road.,,No,No,Male
+1570.4,Rear end,E. 5 months,0.0,0.0,0.0,680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,5.4,565.0,No,Yes,Arms,No,Truck,Sunny,2020-09-10 05:09:05.149029,2021-01-05 05:09:05.149029,8.0,65.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+2767.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,1810.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,12.0,0.0,615.0,No,Yes,Legs,Yes,Truck,Sunny,2022-04-15 13:53:55.607121,2022-10-10 13:53:55.607121,6.0,74.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Female
+884.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,18.6,0.0,406.0,No,Yes,Hips,No,Motorcycle,Snowy,2020-05-19 21:30:12.602520,2021-02-04 21:30:12.602520,12.0,60.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+495.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Snowy,2021-12-20 01:08:50.746149,2022-08-12 01:08:50.746149,7.0,34.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+1818.94,Rear end,A. 1 month,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,7.8,0.0,801.14,No,No,Multiple,No,Motorcycle,Rainy,2021-07-19 03:11:33.498699,2021-12-07 03:11:33.498699,11.0,54.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,Yes,Truck,Sunny,2022-09-12 02:42:45.153030,2023-07-14 02:42:45.153030,3.0,70.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Male
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2022-06-01 07:24:11.090218,2023-05-12 07:24:11.090218,15.0,32.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Snowy,2022-07-21 06:00:38.887777,2022-09-09 06:00:38.887777,5.0,35.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+1771.6,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1750.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,21.6,0.0,No,Yes,Multiple,Yes,Car,Snowy,2020-01-26 09:49:04.668933,2020-10-22 09:49:04.668933,4.0,65.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+645.98,Other side pulled from parked position into the path of clt's vehicle,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,495.0,0.0,70.0,0.0,0.0,80.98,No,No,Legs,,Motorcycle,Snowy,2020-12-28 03:39:29.993998,2021-04-15 03:39:29.993998,,31.0,,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Other
+4280.0,Rear end - Clt pushed into next vehicle,A. 1 month,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,4408.16,0.0,0.0,40.0,No,,Multiple,Yes,Car,,2020-06-16 01:22:40.352070,2020-08-01 01:22:40.352070,13.0,31.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+520.0,Rear end,,0.0,0.0,,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,10.8,0.0,No,Yes,Arms,Yes,Truck,Rainy,2020-08-25 10:38:37.423484,2020-11-15 10:38:37.423484,8.0,62.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Female
+1818.94,Rear end,A. 1 month,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,7.8,0.0,801.14,No,No,Hips,No,Car,Sunny,2020-02-21 23:40:24.724944,2020-06-26 23:40:24.724944,17.0,50.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Other
+1570.0,Rear end,E. 5 months,0.0,0.0,0.0,1846.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,,No,Yes,Hips,Yes,Motorcycle,Rainy,2021-05-18 19:13:05.677135,2021-08-10 19:13:05.677135,5.0,55.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Sunny,2020-02-17 07:31:23.176635,2020-12-03 07:31:23.176635,14.0,72.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2022-02-10 00:49:15.471094,2022-04-22 00:49:15.471094,15.0,28.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,,Hips,Yes,Car,Sunny,2020-10-20 12:26:56.003200,2021-04-13 12:26:56.003200,7.0,28.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+1750.0,Other side pulled out of side road,K. 11 months,0.0,0.0,0.0,903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,22.5,0.0,350.0,No,Yes,Multiple,No,Motorcycle,Snowy,2021-11-16 18:04:32.214442,2022-09-28 18:04:32.214442,18.0,74.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Male
+1116.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,146.0,500.0,No,Yes,Multiple,Yes,Car,Rainy,2021-12-08 01:45:43.028605,2022-11-03 01:45:43.028605,4.0,65.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2022-03-15 14:54:07.849569,2023-02-15 14:54:07.849569,13.0,73.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Rainy,2023-06-09 06:24:33.414682,2024-05-28 06:24:33.414682,6.0,43.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+905.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,30.9,0.0,No,Yes,Legs,No,Truck,Snowy,2023-04-24 16:56:33.318663,2023-07-24 16:56:33.318663,3.0,20.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Rainy,2023-08-24 04:51:13.574714,2024-08-09 04:51:13.574714,0.0,42.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+1409.99,Rear end - Clt pushed into next vehicle,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,80.0,0.0,89.99,0.0,0.0,1320.0,0.0,,0.0,87.6,0.0,No,No,Multiple,Yes,Truck,Snowy,2022-12-28 14:10:20.764152,2023-09-03 14:10:20.764152,3.0,34.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+1330.0,Other side reversed into Clt's vehicle,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,10.0,0.0,No,No,Legs,No,Truck,Snowy,2023-08-08 03:20:12.002400,2023-12-18 03:20:12.002400,13.0,78.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+895.0,Rear end,F. 6 months,0.0,,0.0,1680.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,,,0.0,0.0,462.0,No,Yes,Hips,,Car,Snowy,2020-12-21 10:26:31.518303,2021-06-08 10:26:31.518303,15.0,39.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+4635.2,Rear end,R. 18 months,0.0,0.0,990.0,0.0,0.0,0.0,0.0,0.0,195.2,0.0,0.0,3100.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Hips,No,Truck,Rainy,2021-12-23 13:15:36.907381,2022-02-21 13:15:36.907381,6.0,46.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+520.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2020-09-28 07:44:03.648729,2021-08-31 07:44:03.648729,,63.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Male
+980.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2020-04-02 06:58:15.579115,2020-11-29 06:58:15.579115,9.0,43.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Male
+1300.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1725.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Hips,No,Motorcycle,Sunny,2021-03-14 16:07:17.847569,2021-09-20 16:07:17.847569,3.0,51.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+1531.76,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,580.0,,0.0,0.0,0.0,0.0,0.0,,895.0,0.0,0.0,0.0,10.01,46.75,No,Yes,Arms,Yes,Motorcycle,Rainy,2020-05-02 15:56:55.643128,2021-04-07 15:56:55.643128,11.0,,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+1768.0,Rear end,G. 7 months,0.0,0.0,0.0,1320.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,168.0,0.0,0.0,0.0,0.0,Yes,No,Arms,Yes,Car,Rainy,2023-06-26 18:58:24.220844,2024-04-02 18:58:24.220844,5.0,74.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Female
+726.9,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,89.4,238.0,No,Yes,Hips,No,Car,Rainy,2021-02-27 04:37:23.968793,2021-10-17 04:37:23.968793,12.0,26.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+865.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,370.0,No,No,Multiple,Yes,Truck,Rainy,2020-05-04 17:00:52.570514,2021-02-17 17:00:52.570514,0.0,57.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Other
+1710.0,,D. 4 months,0.0,,0.0,1112.0,0.0,0.0,0.0,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,0.0,235.0,No,,Arms,No,Truck,Snowy,2020-04-25 15:43:23.320664,,7.0,78.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Male
+240.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Snowy,2020-08-20 04:28:28.181636,2021-06-29 04:28:28.181636,15.0,28.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+2270.0,Rear end,J. 10 months,0.0,0.0,0.0,1400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Snowy,2020-01-31 22:59:47.757551,2020-02-15 22:59:47.757551,4.0,24.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+2786.98,Rear end,J. 10 months,0.0,0.0,0.0,989.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,112.98,345.0,No,Yes,Legs,Yes,Truck,Rainy,2023-03-28 13:04:05.569113,2023-05-08 13:04:05.569113,6.0,47.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Female
+,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,0.0,505.0,No,,Multiple,Yes,Car,Snowy,2020-01-29 07:54:43.136627,2020-08-24 07:54:43.136627,2.0,,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+776.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,,No,,Hips,No,Car,Snowy,2021-07-09 18:53:30.402080,2021-09-07 18:53:30.402080,1.0,19.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+2295.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2840.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2022-11-08 15:33:52.966593,2023-07-06 15:33:52.966593,1.0,47.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+920.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2022-08-22 02:02:08.185637,2022-11-26 02:02:08.185637,19.0,21.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+1520.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,1439.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-01-13 06:23:41.564312,2020-10-17 06:23:41.564312,9.0,75.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Male
+950.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,455.0,No,No,Hips,No,Motorcycle,Snowy,2021-04-05 13:49:36.355271,2021-09-12 13:49:36.355271,19.0,72.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+847.4,Other side pulled out of side road,E. 5 months,0.0,,0.0,325.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,2.4,0.0,No,,Arms,Yes,Car,,2023-05-08 17:23:37.963592,2024-02-14 17:23:37.963592,8.0,31.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2023-06-04 21:16:05.713142,2023-12-30 21:16:05.713142,17.0,30.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Female
+1044.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,33.84,805.95,No,No,Legs,Yes,Car,Sunny,2020-04-22 03:36:37.159431,2020-09-02 03:36:37.159431,5.0,71.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+2796.12,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1950.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Legs,No,Truck,Sunny,2023-12-06 04:12:03.024604,2024-03-12 04:12:03.024604,19.0,42.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+1550.25,Other side drove on wrong side of the road,E. 5 months,0.0,0.0,0.0,523.25,0.0,0.0,60.0,0.0,72.55,0.0,780.0,520.0,0.0,0.0,0.0,93.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2022-10-10 17:38:02.136427,2023-05-17 17:38:02.136427,5.0,30.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Female
+3331.76,Rear end,I. 9 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,42.12,575.0,Yes,Yes,Legs,No,Motorcycle,Snowy,2022-11-10 16:37:49.893978,2023-01-20 16:37:49.893978,9.0,30.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Female
+610.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,90.0,10.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Rainy,2022-08-03 16:26:35.839167,2023-05-04 16:26:35.839167,8.0,54.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Male
+2627.7,Rear end,H. 8 months,0.0,0.0,0.0,1820.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,693.7,No,Yes,Multiple,Yes,Car,Sunny,2021-05-10 07:56:44.120824,2022-04-26 07:56:44.120824,8.0,77.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+624.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,0.0,Yes,Yes,Arms,No,Motorcycle,Sunny,2021-09-15 06:03:49.005801,2022-01-27 06:03:49.005801,2.0,61.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+830.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,406.0,No,No,Multiple,Yes,Motorcycle,Rainy,2023-02-10 16:35:31.626325,2023-04-17 16:35:31.626325,11.0,23.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Other
+1381.8,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,895.0,0.0,0.0,0.0,37.8,442.0,No,Yes,Hips,No,Truck,Snowy,2022-01-10 15:50:35.407081,2022-05-17 15:50:35.407081,10.0,43.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2023-06-15 23:37:31.890378,2024-01-06 23:37:31.890378,13.0,71.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+840.0,Other,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Truck,Sunny,2021-11-29 14:29:21.472294,2022-09-23 14:29:21.472294,18.0,31.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2023-09-09 06:22:15.147029,2024-01-04 06:22:15.147029,9.0,25.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+,Rear end,M. 13 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,,Motorcycle,Rainy,2023-01-19 04:52:05.425085,2023-10-13 04:52:05.425085,18.0,41.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+1360.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,525.0,No,Yes,Hips,Yes,Truck,Sunny,2020-03-27 03:46:24.796959,2021-01-03 03:46:24.796959,4.0,39.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Female
+919.5,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,99.0,0.0,0.0,0.0,510.0,Yes,No,Multiple,No,Truck,Rainy,2020-04-30 14:52:58.715743,2020-09-26 14:52:58.715743,8.0,57.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+1843.0,Other side changed lanes and collided with clt's vehicle,D. 4 months,0.0,0.0,0.0,903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,420.0,No,Yes,Multiple,Yes,Truck,Sunny,2021-08-05 15:45:24.304860,2022-02-15 15:45:24.304860,0.0,56.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,895.0,0.0,0.0,0.0,0.0,460.0,No,Yes,Hips,Yes,Truck,Sunny,2020-01-01 21:01:41.540308,2020-06-17 21:01:41.540308,14.0,66.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2020-02-21 16:39:50.878175,2020-12-29 16:39:50.878175,3.0,38.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Other
+1252.85,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,336.95,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,45.9,462.0,No,No,Legs,No,Car,Snowy,2020-08-05 14:00:15.843168,2021-01-31 14:00:15.843168,6.0,60.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2023-06-25 14:56:08.833766,2023-11-20 14:56:08.833766,5.0,43.0,4.0,Rear-ended at a stoplight.,,Yes,Yes,Male
+1469.0,Rear end,H. 8 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,0.0,0.0,0.0,0.0,574.0,No,Yes,Legs,No,Truck,Rainy,2020-07-09 03:07:14.246849,2020-09-04 03:07:14.246849,14.0,27.0,2.0,,Fractured arm and leg.,No,No,Male
+1720.0,Other side drove on wrong side of the road,F. 6 months,0.0,0.0,0.0,2000.0,0.0,0.0,0.0,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,,Truck,Snowy,2023-02-09 19:33:50.086017,2023-02-14 19:33:50.086017,5.0,30.0,1.0,,Concussion and bruised ribs.,No,No,Male
+2771.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,2170.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Legs,Yes,Truck,Snowy,2022-08-13 07:45:12.782556,2022-08-27 07:45:12.782556,6.0,59.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Female
+260.0,Other side collided with Clt's parked vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,Yes,Car,Snowy,2021-12-25 21:20:07.681536,2022-10-01 21:20:07.681536,19.0,70.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+1855.03,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,903.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,47.03,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2020-03-25 09:43:01.716343,2021-02-12 09:43:01.716343,2.0,75.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+1625.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,880.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,225.0,No,Yes,Legs,No,Motorcycle,Sunny,2020-08-22 05:32:25.109021,2021-06-22 05:32:25.109021,12.0,31.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+1320.0,Other,L. 12 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2022-01-08 21:47:12.326465,2022-08-12 21:47:12.326465,1.0,,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Male
+1425.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,180.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2020-03-09 01:11:26.297259,2020-08-31 01:11:26.297259,2.0,24.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Male
+538.5,Rear end,E. 5 months,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,104.4,0.0,No,No,Hips,No,Car,,,2021-03-10 20:49:35.635127,12.0,56.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+1237.4,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,68.21,0.0,455.0,No,No,Hips,Yes,Truck,Sunny,2020-07-21 09:30:55.811162,2020-07-24 09:30:55.811162,8.0,75.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Male
+873.88,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,227.88,50.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,76.0,No,Yes,Arms,Yes,Truck,Sunny,2020-12-07 09:59:26.873374,2021-04-23 09:59:26.873374,18.0,48.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Female
+2566.0,Rear end,F. 6 months,0.0,0.0,0.0,1944.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,52.0,0.0,0.0,0.0,50.0,Yes,Yes,Hips,Yes,Truck,Snowy,2023-09-22 02:47:04.404880,2023-12-31 02:47:04.404880,17.0,67.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+737.3199999999999,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,22.32,355.0,No,No,Hips,Yes,Car,Sunny,2021-12-24 10:17:18.447689,2022-03-17 10:17:18.447689,4.0,33.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+927.56,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,7.56,455.0,No,Yes,Arms,No,Car,Snowy,2020-05-05 21:03:07.957591,2021-02-09 21:03:07.957591,9.0,25.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+1105.8,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,495.0,0.0,0.0,37.8,0.0,573.0,,No,Hips,No,,Sunny,2022-01-12 23:55:06.181236,2022-05-24 23:55:06.181236,,65.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+905.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,30.9,0.0,No,Yes,Hips,Yes,Car,Rainy,2020-10-13 19:13:57.527505,2020-10-14 19:13:57.527505,16.0,68.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+1055.13,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,10.81,510.32,Yes,Yes,Hips,No,Motorcycle,Rainy,2022-07-11 21:42:35.791158,2022-11-04 21:42:35.791158,2.0,32.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+1095.0,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,1771.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Hips,No,Car,Sunny,2022-06-08 00:37:09.565913,2022-12-27 00:37:09.565913,6.0,42.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+1143.0,Rear end,F. 6 months,0.0,0.0,0.0,483.0,0.0,0.0,140.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,2023-12-28 22:56:03.072614,2024-05-16 22:56:03.072614,8.0,64.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+240.0,Other,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,15.24,0.0,No,No,Hips,,Car,Rainy,,,4.0,55.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Other
+895.0,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2022-08-25 07:08:20.500100,2023-05-18 07:08:20.500100,3.0,58.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Other
+260.0,Other side reversed into clt's stationary vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2023-11-24 04:48:55.307061,2024-06-13 04:48:55.307061,2.0,32.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+735.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Multiple,No,Truck,Sunny,2023-06-15 02:35:50.350070,2023-11-14 02:35:50.350070,12.0,42.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Other
+1980.0,Rear end,E. 5 months,0.0,0.0,0.0,1537.55,0.0,,0.0,0.0,60.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,175.0,,Yes,Legs,No,Motorcycle,Sunny,2021-05-07 23:52:13.346669,2021-12-15 23:52:13.346669,,24.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Male
+1080.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,185.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2020-05-16 09:23:26.441288,2020-08-03 09:23:26.441288,6.0,43.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+1984.0,Other,L. 12 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,264.0,0.0,0.0,0.0,330.0,Yes,Yes,Arms,No,Car,Rainy,2022-02-03 00:35:43.148629,2022-08-22 00:35:43.148629,7.0,77.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Male
+1115.0,Rear end,G. 7 months,0.0,0.0,0.0,983.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Legs,Yes,Truck,Snowy,2021-01-27 19:38:43.904780,2021-10-04 19:38:43.904780,9.0,25.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Male
+2566.0,Rear end,F. 6 months,0.0,0.0,0.0,1944.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,52.0,0.0,0.0,0.0,50.0,Yes,Yes,Arms,Yes,Motorcycle,Sunny,2021-12-08 08:46:16.875375,2022-03-17 08:46:16.875375,0.0,35.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+1595.0,Other side drove on wrong side of the road,F. 6 months,0.0,0.0,0.0,1100.0,0.0,0.0,0.0,0.0,0.0,,0.0,495.0,0.0,0.0,0.0,,0.0,No,,Arms,No,,Rainy,2023-08-09 07:22:27.389477,2024-03-09 07:22:27.389477,19.0,38.0,4.0,Lost control on a snowy road.,,No,No,Female
+4776.969999999999,Rear end,F. 6 months,0.0,0.0,0.0,1085.0,0.0,3051.97,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,0.0,205.0,No,Yes,Hips,Yes,Motorcycle,Snowy,,2024-03-01 19:23:10.598119,0.0,33.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+1193.2,Other side overtook and hit Clt when pulling in,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,43.2,630.0,No,Yes,Legs,No,Motorcycle,Snowy,2020-10-22 06:30:19.083816,2021-04-30 06:30:19.083816,18.0,64.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+814.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Hips,Yes,Car,Sunny,2021-05-04 18:46:01.032206,2022-03-01 18:46:01.032206,1.0,20.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+1360.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,525.0,No,Yes,Legs,Yes,Car,Sunny,2022-12-15 17:45:31.506301,2023-02-05 17:45:31.506301,11.0,,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Female
+1330.0,Other side reversed into Clt's vehicle,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,10.0,0.0,No,No,Arms,No,Motorcycle,Rainy,2023-12-01 05:02:27.629525,2024-03-22 05:02:27.629525,12.0,30.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+1010.0,Rear end,D. 4 months,0.0,0.0,0.0,1200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Sunny,2023-04-02 12:13:40.964192,2023-08-15 12:13:40.964192,13.0,71.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+2831.53,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1851.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,774.53,No,Yes,Multiple,No,Motorcycle,Rainy,2021-07-06 13:47:18.087617,2021-10-26 13:47:18.087617,4.0,78.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+629.23,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,,0.0,,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2022-04-17 21:58:26.381276,2022-04-30 21:58:26.381276,2.0,49.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Snowy,2023-06-24 10:53:53.446689,2024-03-23 10:53:53.446689,16.0,29.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+1039.7,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,183.7,No,Yes,Multiple,Yes,Car,Snowy,2021-03-09 23:58:16.299259,2021-10-28 23:58:16.299259,0.0,48.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+812.7,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,488.5,30.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,34.2,0.0,No,Yes,Multiple,Yes,Car,Snowy,2022-09-02 04:23:34.362872,2022-10-16 04:23:34.362872,13.0,58.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+2345.0,Other,I. 9 months,0.0,0.0,0.0,2100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,No,Car,Sunny,2021-02-17 13:18:47.025405,2021-05-01 13:18:47.025405,5.0,19.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Male
+1179.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,284.0,Yes,Yes,Hips,Yes,Truck,Sunny,2023-11-19 12:39:53.758751,2024-08-06 12:39:53.758751,16.0,58.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Rainy,2022-04-11 04:45:27.905581,2022-11-28 04:45:27.905581,3.0,25.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Female
+731.0,Other side reversed into clt's stationary vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Hips,Yes,Truck,Rainy,2021-01-31 07:45:30.066013,2021-03-05 07:45:30.066013,5.0,76.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+2373.2200000000003,Rear end,F. 6 months,0.0,0.0,0.0,750.0,0.0,890.22,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,238.0,No,No,Multiple,No,Car,Rainy,2023-03-31 18:10:17.883576,2023-06-07 18:10:17.883576,0.0,42.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+705.0,Other side reversed into clt's stationary vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,294.0,No,No,Hips,Yes,Car,Rainy,2023-09-22 23:48:45.945189,2023-10-08 23:48:45.945189,8.0,22.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Female
+1905.07,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,455.67,0.0,0.0,0.0,0.0,0.0,895.0,173.0,21.6,0.0,76.49,355.0,Yes,Yes,Arms,Yes,Car,Rainy,2021-02-10 06:04:40.856171,2021-07-10 06:04:40.856171,3.0,62.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+1970.06,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,5.31,574.0,Yes,Yes,Arms,No,Truck,Snowy,2021-04-05 20:50:10.202040,2022-01-22 20:50:10.202040,8.0,19.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+940.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,630.0,No,Yes,Arms,Yes,Truck,Snowy,2022-12-30 22:14:51.538307,2023-04-11 22:14:51.538307,,59.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Female
+1843.0,Other side changed lanes and collided with clt's vehicle,D. 4 months,0.0,0.0,0.0,903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,420.0,No,Yes,Arms,No,Motorcycle,Snowy,2022-11-24 17:04:54.538907,2023-05-29 17:04:54.538907,12.0,75.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Female
+495.0,Other side changed lanes on a roundabout colliding with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Rainy,2022-01-01 00:31:58.463692,2022-01-26 00:31:58.463692,16.0,55.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+903.55,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,1092.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,10.8,354.35,No,Yes,Multiple,Yes,Motorcycle,Snowy,2022-07-05 04:29:37.315463,2022-09-15 04:29:37.315463,2.0,56.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Female
+988.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,895.0,,0.0,0.0,0.0,93.0,No,Yes,Multiple,No,Car,,2022-04-29 14:21:00.252050,2022-07-19 14:21:00.252050,5.0,,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+890.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,43.9,370.0,No,No,Multiple,No,Truck,Snowy,2022-02-17 01:02:47.793558,2022-04-19 01:02:47.793558,19.0,63.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Male
+790.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,270.0,No,Yes,Hips,Yes,Car,Snowy,2020-04-26 12:45:04.860972,2020-05-14 12:45:04.860972,14.0,65.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+240.0,Rear end,A. 1 month,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Sunny,2023-07-03 19:11:56.543308,2024-03-01 19:11:56.543308,13.0,55.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+895.0,,G. 7 months,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,,Rainy,2023-03-01 16:12:11.666333,2023-04-28 16:12:11.666333,12.0,39.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Female
+2324.0,Rear end,F. 6 months,0.0,0.0,0.0,1600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,350.0,Yes,Yes,Hips,Yes,Car,Rainy,2021-10-14 03:59:39.835967,2022-09-11 03:59:39.835967,8.0,57.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+800.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,15.0,350.0,No,Yes,Arms,Yes,Truck,Sunny,2021-03-25 11:28:10.178035,2021-05-21 11:28:10.178035,14.0,50.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Male
+795.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,345.0,No,Yes,Arms,Yes,Car,Snowy,2020-03-09 22:13:07.837567,2020-06-14 22:13:07.837567,13.0,69.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+1400.9,Other side pulled out of side road,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,8.4,10.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-12-05 00:09:47.637527,2024-07-07 00:09:47.637527,3.0,49.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+2212.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,2300.0,0.0,654.63,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,12.0,0.0,No,Yes,Legs,No,Truck,Snowy,2020-09-27 17:42:55.955191,2021-08-12 17:42:55.955191,10.0,64.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Male
+844.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,54.0,406.0,No,Yes,Multiple,No,Car,Rainy,2023-08-09 21:23:35.083016,2023-08-21 21:23:35.083016,1.0,34.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+994.68,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,4.68,125.0,No,Yes,Hips,Yes,Truck,Rainy,2020-05-02 08:56:21.796359,2020-05-13 08:56:21.796359,15.0,73.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+1142.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,362.7,238.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2023-04-19 10:46:24.076815,2023-09-29 10:46:24.076815,18.0,35.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Other
+260.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,2021-11-30 11:31:03.012602,2022-09-09 11:31:03.012602,15.0,73.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Female
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2020-07-11 18:12:18.867773,2021-02-13 18:12:18.867773,6.0,20.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Male
+1481.5,Other side drove on wrong side of the road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,89.5,0.0,42.0,0.0,455.0,Yes,Yes,Hips,No,Car,Sunny,2022-02-05 01:39:40.076015,2023-01-31 01:39:40.076015,10.0,73.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Other
+795.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-02-27 15:08:14.738947,2024-01-16 15:08:14.738947,11.0,23.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+1558.75,Other side pulled out of side road,J. 10 months,0.0,0.0,0.0,0.0,0.0,168.75,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2020-05-11 03:13:17.199439,2021-01-07 03:13:17.199439,3.0,66.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+790.0,,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,345.0,No,No,Multiple,No,Truck,Rainy,2020-04-20 16:33:47.925585,2021-03-31 16:33:47.925585,,72.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+2460.0,Rear end,G. 7 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,120.0,No,No,Legs,No,Car,Sunny,2020-12-31 01:45:08.461692,2021-02-14 01:45:08.461692,15.0,30.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+1500.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1810.0,0.0,0.0,60.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Snowy,2021-12-19 04:07:09.205841,2022-03-10 04:07:09.205841,6.0,72.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Female
+3224.0,Other,F. 6 months,1152.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,,0.0,Yes,Yes,Legs,,Car,Sunny,2022-05-25 14:11:12.614522,2023-02-04 14:11:12.614522,12.0,71.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+1257.6,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,967.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,30.6,0.0,No,Yes,Arms,Yes,Car,Snowy,2023-07-23 22:50:51.970394,2023-09-28 22:50:51.970394,4.0,48.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+1025.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,130.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2021-11-03 00:38:01.416283,2022-02-13 00:38:01.416283,0.0,34.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+890.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.5,75.0,No,No,Arms,No,Motorcycle,Sunny,2020-07-31 00:49:32.754550,2020-10-30 00:49:32.754550,4.0,38.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Female
+1324.24,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,36.54,462.0,No,Yes,Arms,No,Motorcycle,Snowy,2021-03-04 10:47:33.210642,2021-04-15 10:47:33.210642,13.0,33.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Female
+631.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,111.0,No,Yes,Hips,Yes,Car,Rainy,2022-03-07 17:38:53.986797,2022-12-08 17:38:53.986797,10.0,34.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Other
+5106.17,Other side drove on wrong side of the road,H. 8 months,0.0,0.0,0.0,2944.0,0.0,1416.82,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,129.24,32.67,968.0,No,Yes,Multiple,Yes,,Snowy,2022-07-09 13:38:05.017003,2023-05-09 13:38:05.017003,1.0,49.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Sunny,2022-10-25 01:05:40.628125,2023-07-26 01:05:40.628125,17.0,18.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Male
+3074.0,Rear end,H. 8 months,0.0,0.0,0.0,2137.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,50.0,Yes,Yes,Multiple,Yes,Truck,Sunny,2023-12-03 13:06:58.403680,2024-02-18 13:06:58.403680,14.0,65.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Sunny,2022-09-06 13:32:02.064412,2023-04-28 13:32:02.064412,13.0,55.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+5118.09,Other side pulled out of side road,P. 16 months,0.0,,0.0,1500.0,0.0,291.71,0.0,0.0,137.34,0.0,0.0,3100.0,0.0,0.0,23.1,0.0,705.0,No,Yes,Arms,No,Car,Sunny,2020-05-01 04:54:06.409281,2020-11-19 04:54:06.409281,,25.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+1613.2,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2020-06-23 22:37:54.214842,2021-01-30 22:37:54.214842,1.0,18.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Male
+640.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,120.0,No,Yes,Arms,No,Motorcycle,Snowy,2022-06-16 18:54:04.968993,2023-03-05 18:54:04.968993,18.0,19.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+5165.7,Rear end,T. 20 months,0.0,0.0,0.0,0.0,0.0,0.0,40.0,,0.0,0.0,0.0,4345.0,0.0,0.0,0.0,134.46,804.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-05-04 01:14:36.415283,2023-06-12 01:14:36.415283,7.0,64.0,3.0,,Fractured arm and leg.,Yes,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Sunny,2021-04-02 15:43:57.887577,2021-04-13 15:43:57.887577,16.0,54.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Male
+950.0,Other,D. 4 months,0.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Multiple,No,Motorcycle,Snowy,2020-11-15 12:17:08.365673,2021-03-07 12:17:08.365673,14.0,41.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Other
+2659.0,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Hips,Yes,Car,Sunny,2022-05-09 12:40:11.042208,2022-08-25 12:40:11.042208,19.0,44.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Other
+760.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,680.0,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,,No,Truck,,,2023-07-30 22:02:45.633126,13.0,37.0,4.0,,Sprained ankle and wrist.,Yes,No,Female
+1624.65,Other side drove on wrong side of the road,F. 6 months,0.0,0.0,0.0,1102.85,0.0,354.65,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2021-02-26 14:36:16.275255,2022-01-03 14:36:16.275255,2.0,64.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+1189.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,,0.0,,0.0,294.0,No,Yes,Arms,Yes,Truck,Rainy,2021-03-11 18:01:39.379875,2021-06-03 18:01:39.379875,16.0,79.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Male
+1575.0,Rear end,G. 7 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,,No,Yes,Hips,No,Motorcycle,Snowy,2022-02-19 02:06:44.720944,2022-04-18 02:06:44.720944,,38.0,,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Female
+645.98,Other side pulled from parked position into the path of clt's vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,70.0,0.0,0.0,80.98,No,No,Legs,Yes,Car,Snowy,2021-03-01 19:42:28.589717,2021-12-19 19:42:28.589717,12.0,59.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+1269.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Multiple,Yes,Car,Sunny,2020-12-18 19:21:26.897379,2021-01-03 19:21:26.897379,17.0,54.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+272.12,Other side reversed into Clt's vehicle,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.12,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Snowy,2023-12-12 00:23:19.959992,2024-11-02 00:23:19.959992,0.0,52.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Other
+520.0,Rear end - 3 car - Clt at front,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,,,Yes,Car,,2021-10-08 00:47:49.053810,2022-01-09 00:47:49.053810,6.0,,4.0,Rear-ended at a stoplight.,,No,No,Female
+1660.0,Rear end,C. 3 months,0.0,0.0,0.0,1400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2021-01-30 10:43:48.525705,2021-07-14 10:43:48.525705,4.0,70.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Female
+,Other,,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,162.0,70.0,No,Yes,Arms,Yes,Truck,Sunny,2020-03-02 21:59:35.515103,2020-10-03 21:59:35.515103,,32.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+520.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2023-02-11 06:36:39.319863,2023-07-05 06:36:39.319863,16.0,67.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Other
+597.19,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99,0.0,0.0,260.0,0.0,0.0,25.2,0.0,294.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2023-09-06 01:16:02.832566,2024-06-06 01:16:02.832566,9.0,63.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2022-05-15 08:51:27.977595,2022-09-30 08:51:27.977595,3.0,59.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+1120.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,,2022-11-01 18:46:35.599119,8.0,47.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Female
+705.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,,0.0,,0.0,238.0,No,Yes,Legs,Yes,Truck,Rainy,2022-06-07 10:36:01.872374,2023-04-05 10:36:01.872374,10.0,21.0,2.0,,Concussion and bruised ribs.,Yes,Yes,Male
+427.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,18.0,325.0,No,No,Legs,No,Car,Snowy,2022-06-05 02:31:31.098219,2023-01-01 02:31:31.098219,11.0,60.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Other
+520.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Hips,,Truck,Snowy,2021-05-20 20:17:02.604520,2021-06-08 20:17:02.604520,11.0,69.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Male
+380.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,140.0,No,Yes,Arms,Yes,Truck,Snowy,2022-06-18 19:58:01.896379,2023-04-08 19:58:01.896379,17.0,56.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Other
+290.0,Rear end,A. 1 month,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Car,Sunny,2021-01-05 21:56:25.397079,2021-10-25 21:56:25.397079,3.0,32.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Female
+1355.0,Rear end,H. 8 months,0.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,0.0,575.0,,Yes,Legs,Yes,Motorcycle,Rainy,2023-11-22 17:46:06.073214,2024-09-18 17:46:06.073214,8.0,40.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Male
+520.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,,No,Yes,Arms,No,Truck,Rainy,,2021-08-31 13:22:31.710342,7.0,58.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+1845.0,Rear end,G. 7 months,0.0,0.0,0.0,1105.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,19.2,425.0,No,Yes,Multiple,No,Car,Snowy,2020-11-11 17:09:48.357671,2021-03-21 17:09:48.357671,18.0,32.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Male
+895.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2022-10-28 06:11:52.942588,2022-12-11 06:11:52.942588,12.0,43.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+1310.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,550.0,0.0,0.0,120.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,406.0,No,No,Hips,Yes,Truck,Rainy,2020-12-02 03:49:17.631526,2021-11-20 03:49:17.631526,1.0,29.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,1230.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Motorcycle,Rainy,2021-05-17 22:11:24.136827,2021-08-08 22:11:24.136827,18.0,35.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Male
+977.02,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,57.02,462.0,No,Yes,Arms,No,Truck,Snowy,2020-07-28 02:43:54.286857,2020-11-29 02:43:54.286857,13.0,23.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Other
+2000.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,1725.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,191.7,6.0,No,Yes,Hips,No,Truck,Sunny,2023-05-11 08:28:42.584516,2023-06-07 08:28:42.584516,4.0,35.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+740.0,Other side turned across Clt's path,,0.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,182.0,No,Yes,Legs,No,Car,Snowy,2021-10-01 14:35:24.424884,2022-08-01 14:35:24.424884,9.0,74.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Female
+570.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,10.0,400.0,No,Yes,Multiple,Yes,Car,Rainy,2020-02-29 13:55:04.740948,2021-02-13 13:55:04.740948,16.0,67.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2023-01-23 06:59:59.279855,2023-01-30 06:59:59.279855,19.0,71.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+496.66,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,560.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,36.66,0.0,0.0,3.0,No,Yes,Legs,No,Truck,Snowy,2022-06-27 00:13:49.605921,2023-06-03 00:13:49.605921,15.0,41.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+2854.81,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,1200.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,14.46,800.35,No,No,Multiple,No,Truck,Rainy,2023-04-10 16:29:28.673734,2023-10-26 16:29:28.673734,16.0,55.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Male
+1298.9,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.3,0.0,0.0,895.0,0.0,0.0,0.0,39.6,474.6,No,Yes,Multiple,No,Truck,Snowy,2021-01-24 00:31:23.896779,2021-05-16 00:31:23.896779,0.0,45.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Other
+1665.0,Other,E. 5 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,162.0,70.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2021-08-21 03:15:18.183636,2021-11-18 03:15:18.183636,14.0,32.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+380.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,140.0,No,Yes,Hips,Yes,Truck,Snowy,2021-06-24 00:23:02.676535,2021-10-30 00:23:02.676535,16.0,36.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+982.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,,Multiple,,Car,Sunny,2023-11-15 03:31:26.057211,2024-07-02 03:31:26.057211,10.0,22.0,,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+1895.0,,H. 8 months,0.0,0.0,0.0,1261.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,No,Motorcycle,Rainy,2020-12-27 06:37:48.453690,2021-01-14 06:37:48.453690,4.0,21.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
+525.25,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,5.25,0.0,No,Yes,Multiple,,Car,Rainy,2021-08-12 08:58:22.780556,2022-05-28 08:58:22.780556,3.0,34.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+800.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,555.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2020-05-30 23:51:38.779755,2020-11-07 23:51:38.779755,8.0,70.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+345.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,182.0,No,No,Legs,No,Motorcycle,Rainy,2021-02-23 23:31:11.654330,2022-02-10 23:31:11.654330,15.0,27.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+1395.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,955.0,0.0,0.0,0.0,0.0,,,0.0,895.0,0.0,0.0,0.0,,0.0,No,Yes,Arms,No,Car,Sunny,,2024-01-14 08:24:57.899579,11.0,29.0,,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Female
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Snowy,2021-08-22 07:17:33.570714,2022-02-04 07:17:33.570714,17.0,22.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Female
+1110.0,Other side changed lanes and collided with clt's vehicle,B. 2 months,0.0,0.0,750.0,100.0,0.0,,0.0,0.0,0.0,0.0,0.0,260.0,0.0,,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-06-29 17:04:02.688537,2024-03-15 17:04:02.688537,2.0,24.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+610.5,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,298.5,0.0,0.0,260.0,52.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,Yes,Car,Sunny,2023-08-12 05:28:05.857171,2024-08-10 05:28:05.857171,14.0,61.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+1418.8,Rear end,K. 11 months,,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,28.8,0.0,No,,Hips,Yes,Truck,Snowy,2021-11-06 05:44:13.730746,2022-05-15 05:44:13.730746,17.0,40.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+690.0,,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,170.0,No,Yes,Legs,Yes,Truck,Sunny,2021-10-21 18:14:19.851970,2022-09-24 18:14:19.851970,11.0,19.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Female
+628.0,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,,,0.0,0.0,0.0,165.0,,0.0,260.0,0.0,0.0,0.0,10.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2022-07-08 16:36:23.476695,2023-03-31 16:36:23.476695,12.0,47.0,4.0,,Whiplash and minor bruises.,No,Yes,Female
+567.98,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,28.8,50.0,No,Yes,Multiple,No,Truck,Rainy,2020-08-16 02:20:34.326865,2021-06-03 02:20:34.326865,0.0,69.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+940.0,Other side pulled out of side road,D. 4 months,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,170.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2022-03-03 08:30:26.285257,2023-02-21 08:30:26.285257,3.0,66.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Female
+2578.4,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,1972.25,0.0,0.0,0.0,0.0,,,0.0,520.0,0.0,0.0,0.0,0.0,448.0,No,Yes,Hips,,Car,Snowy,2020-12-29 07:41:45.381076,2021-12-24 07:41:45.381076,7.0,62.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+1425.0,Other side reversed into Clt's vehicle,,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,,0.0,895.0,0.0,0.0,0.0,0.0,530.0,No,Yes,Arms,Yes,Truck,Snowy,2021-12-06 14:42:53.794758,2022-09-11 14:42:53.794758,18.0,54.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+1120.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,1530.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2020-10-11 18:10:00.600120,2021-05-16 18:10:00.600120,4.0,22.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Sunny,2022-10-16 13:49:19.071814,2023-09-02 13:49:19.071814,10.0,37.0,1.0,,Fractured arm and leg.,Yes,Yes,Male
+1113.7,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,18.7,0.0,0.0,0.0,495.0,0.0,0.0,0.0,100.0,0.0,No,No,Hips,No,Car,Rainy,2022-09-27 07:12:05.185037,2023-08-31 07:12:05.185037,16.0,43.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Female
+840.0,Rear end,A. 1 month,,0.0,0.0,1112.0,0.0,0.0,0.0,,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Car,Snowy,2020-05-01 11:54:40.256051,2020-11-24 11:54:40.256051,16.0,,,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Car,Sunny,2020-03-03 12:00:43.208641,2020-08-03 12:00:43.208641,1.0,61.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Female
+1029.0,Other side overtook and pulled in too soon,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Arms,No,Motorcycle,Sunny,2023-03-07 19:24:02.448489,2023-09-04 19:24:02.448489,0.0,56.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Sunny,2020-11-27 11:40:16.083216,2021-06-27 11:40:16.083216,3.0,23.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+1081.05,"Other side opened their door, hitting clt's vehicle",H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,47.62,299.35,No,No,Hips,No,Motorcycle,Rainy,2023-01-07 12:29:31.554310,2023-10-07 12:29:31.554310,8.0,46.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Male
+1309.0,Other side pulled on to roundabout,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,235.0,Yes,Yes,Hips,No,Motorcycle,Rainy,2021-04-07 00:52:25.589117,2021-10-27 00:52:25.589117,1.0,27.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+1445.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,,0.0,0.0,,1376.86,0.0,,895.0,0.0,0.0,0.0,0.0,630.0,No,Yes,Legs,No,Car,Snowy,2023-08-13 23:31:28.937787,2024-03-05 23:31:28.937787,2.0,68.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+1375.0,Other side pulled on to roundabout,D. 4 months,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,400.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2020-08-01 18:52:55.835167,2021-01-01 18:52:55.835167,5.0,33.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+2956.0,Rear end,G. 7 months,0.0,0.0,0.0,1900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,216.0,0.0,0.0,0.0,0.0,Yes,No,Arms,Yes,Car,Sunny,2022-03-12 23:49:03.228645,2022-08-29 23:49:03.228645,12.0,51.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Male
+753.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,284.0,No,Yes,Legs,Yes,,Rainy,2021-10-22 22:16:35.239047,2022-06-20 22:16:35.239047,14.0,48.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Male
+258.7,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,18.7,No,No,Hips,Yes,Truck,Snowy,2023-08-09 14:23:01.236247,2024-05-22 14:23:01.236247,10.0,53.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+2308.6,Rear end,N. 14 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2040.0,0.0,0.0,0.0,33.3,243.89,No,No,Multiple,Yes,Car,Snowy,2023-01-15 23:45:53.110622,2023-09-17 23:45:53.110622,9.0,58.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+3417.06,Rear end,,0.0,0.0,0.0,0.0,0.0,2394.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,475.0,No,Yes,Legs,No,,Sunny,2021-12-09 19:49:06.109221,2022-10-26 19:49:06.109221,2.0,75.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+2640.2,Other side pulled out of side road,N. 14 months,0.0,0.0,0.0,556.0,0.0,0.0,,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,10.2,366.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2020-03-08 11:10:18.603720,2020-05-27 11:10:18.603720,19.0,22.0,4.0,Lost control on a snowy road.,,Yes,Yes,Other
+922.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,0.0,,Yes,Legs,Yes,Truck,Sunny,,2024-03-11 20:21:04.572914,8.0,50.0,4.0,Rear-ended at a stoplight.,,No,Yes,Male
+669.14,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,94.14,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Arms,No,Motorcycle,Rainy,2023-06-25 07:55:34.986997,2023-11-21 07:55:34.986997,9.0,60.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+379.9,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,135.88,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,4.02,0.0,No,No,Hips,No,Car,Snowy,2020-04-27 09:46:46.401280,2020-05-27 09:46:46.401280,11.0,36.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Other
+965.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,15.0,455.0,No,No,Multiple,Yes,Motorcycle,Sunny,2023-11-21 20:44:24.532906,2024-03-23 20:44:24.532906,7.0,49.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+1070.0,Rear end - 3 car - Clt at front,C. 3 months,0.0,0.0,600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,210.0,No,Yes,Multiple,No,Motorcycle,Sunny,2020-01-19 16:36:06.193238,2020-12-10 16:36:06.193238,16.0,74.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+1255.7,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,5.7,455.0,No,No,Multiple,No,Car,Sunny,2021-10-15 08:01:55.223044,2021-11-13 08:01:55.223044,4.0,40.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Female
+1114.6,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Hips,No,Motorcycle,Snowy,2020-10-04 03:55:20.584116,2021-06-20 03:55:20.584116,7.0,20.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+820.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,400.0,No,No,Arms,No,Car,Sunny,2020-02-20 05:37:01.644328,2020-08-24 05:37:01.644328,17.0,18.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Male
+904.5,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,495.0,0.0,0.0,0.0,0.0,,No,No,Hips,Yes,Truck,Snowy,2022-02-20 06:09:00.108021,2022-05-06 06:09:00.108021,10.0,53.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+517.92,Other,C. 3 months,0.0,0.0,0.0,634.8,0.0,0.0,0.0,0.0,6.0,0.0,0.0,260.0,0.0,0.0,0.0,1.92,0.0,No,Yes,Multiple,No,Car,Rainy,2020-12-31 01:45:08.461692,2021-02-14 01:45:08.461692,9.0,58.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+821.64,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,,No,Yes,Hips,Yes,Car,Snowy,2022-06-09 04:39:24.952990,,,45.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+520.0,Other side drove on wrong side of the road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2023-03-15 16:39:16.311262,2023-10-11 16:39:16.311262,5.0,65.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Male
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Snowy,2020-07-05 00:59:20.392078,2021-03-01 00:59:20.392078,18.0,56.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+776.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,,350.0,No,Yes,Arms,No,Car,Snowy,,,16.0,22.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+1125.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,290.0,No,No,Legs,No,Truck,Sunny,2021-10-22 01:14:53.698739,2022-08-26 01:14:53.698739,9.0,30.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+788.8,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,19.8,406.0,No,Yes,Legs,Yes,Truck,Snowy,2021-05-09 17:55:36.427285,2021-11-17 17:55:36.427285,4.0,28.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+1175.0,Rear end,F. 6 months,0.0,0.0,0.0,680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Sunny,2023-11-16 14:34:15.291058,2024-02-27 14:34:15.291058,15.0,63.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+1395.0,Rear end,I. 9 months,0.0,0.0,0.0,2254.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Legs,No,Car,Rainy,2023-10-21 07:43:29.081816,2024-06-18 07:43:29.081816,11.0,39.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+868.7,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.25,0.0,0.0,495.0,0.0,0.0,0.0,0.0,474.45,No,No,Legs,No,Motorcycle,Rainy,2020-02-11 11:20:06.241248,2020-10-21 11:20:06.241248,4.0,66.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Other
+795.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,650.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,300.0,No,No,Hips,No,Car,Sunny,2023-08-30 22:04:12.050410,2024-04-06 22:04:12.050410,0.0,40.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+1340.29,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,73.8,534.48,No,Yes,Hips,No,Truck,Rainy,2021-03-02 09:43:36.283256,2022-02-01 09:43:36.283256,1.0,29.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Male
+739.99,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,76.23,300.0,No,Yes,Multiple,Yes,Car,Snowy,2023-02-09 05:32:42.392478,2023-09-14 05:32:42.392478,4.0,70.0,4.0,,Minor cuts and scrapes.,No,Yes,Other
+834.35,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.0,0.0,0.0,495.0,0.0,0.0,29.4,9.0,339.35,No,No,Legs,No,Car,Sunny,2020-03-26 06:44:43.256651,2020-10-14 06:44:43.256651,18.0,72.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Female
+1241.0,Rear end,F. 6 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,421.0,No,Yes,Arms,No,Truck,Sunny,2021-04-24 20:26:50.242048,2021-05-23 20:26:50.242048,14.0,70.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Female
+795.0,Rear end - 3 car - Clt at front,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,475.0,No,No,Hips,No,Truck,Sunny,2022-03-04 19:33:15.519103,2022-10-02 19:33:15.519103,0.0,38.0,,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Female
+1253.0,Rear end,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,91.62,518.0,No,Yes,Multiple,Yes,Car,Rainy,2020-09-01 10:52:09.745949,2021-02-02 10:52:09.745949,10.0,36.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+715.0,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5,0.0,0.0,520.0,0.0,0.0,0.0,69.0,225.0,No,Yes,Arms,No,Motorcycle,Rainy,2020-10-29 20:44:59.099819,2021-06-17 20:44:59.099819,17.0,22.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+923.05,Rear end,H. 8 months,612.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,0.0,9.9,78.05,No,Yes,Legs,Yes,Car,Snowy,2020-03-20 03:32:52.474494,2020-06-30 03:32:52.474494,2.0,41.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Male
+1074.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,Yes,Truck,Snowy,2021-07-25 20:24:31.974394,2022-06-05 20:24:31.974394,8.0,47.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Male
+1750.0,Other side pulled out of side road,K. 11 months,0.0,0.0,0.0,903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,22.5,0.0,350.0,No,Yes,Hips,No,Motorcycle,Sunny,2021-11-22 21:16:22.996599,2022-05-18 21:16:22.996599,3.0,25.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2020-08-23 02:34:06.649329,2021-02-20 02:34:06.649329,12.0,19.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Male
+1020.96,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,104.76,518.0,No,No,Hips,No,Truck,Rainy,2022-07-15 23:50:29.645929,2023-03-04 23:50:29.645929,8.0,76.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+260.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2020-09-14 14:17:32.850570,2020-09-26 14:17:32.850570,2.0,66.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Other
+1592.8,Rear end,F. 6 months,0.0,0.0,550.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,70.8,0.0,575.0,No,Yes,Arms,Yes,Truck,Rainy,2020-08-30 16:48:46.665333,2021-03-04 16:48:46.665333,15.0,51.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Other
+2495.0,Rear end - Clt pushed into next vehicle,,,0.0,0.0,2075.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,,0.0,0.0,No,,Legs,Yes,Truck,Snowy,2022-07-15 02:48:48.105621,2023-03-21 02:48:48.105621,7.0,76.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+1381.8,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,,0.0,895.0,,0.0,0.0,37.8,442.0,No,Yes,Legs,Yes,Truck,Rainy,2021-10-01 21:35:58.271654,,6.0,40.0,1.0,Side collision at an intersection.,,Yes,Yes,Other
+3726.57,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2000.0,0.0,285.0,0.0,0.0,30.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,1181.57,No,No,Multiple,Yes,Truck,Rainy,2021-08-18 19:10:47.409481,2021-12-31 19:10:47.409481,16.0,20.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Female
+3248.7,Other,G. 7 months,0.0,0.0,0.0,2096.0,0.0,0.0,0.0,18.7,239.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Snowy,2021-04-10 12:59:11.750350,2021-12-11 12:59:11.750350,15.0,73.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,,0.0,0.0,,,Arms,No,Truck,Snowy,2021-04-19 21:17:14.846969,2021-05-20 21:17:14.846969,17.0,69.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Rainy,2022-11-12 17:41:46.821364,2023-10-25 17:41:46.821364,15.0,75.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Female
+5764.3,Other side pulled out of side road,J. 10 months,0.0,0.0,0.0,3400.0,0.0,0.0,0.0,0.0,,0.0,0.0,1390.0,278.0,0.0,0.0,23.1,742.0,Yes,Yes,Legs,Yes,Truck,Sunny,2020-03-20 17:34:00.168033,2020-12-04 17:34:00.168033,,75.0,,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Female
+1895.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,1493.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2020-06-21 00:32:15.747149,2020-10-03 00:32:15.747149,1.0,41.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+1410.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,967.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,,Legs,No,Car,Rainy,2022-02-27 13:23:06.277255,2022-02-28 13:23:06.277255,19.0,79.0,3.0,Side collision at an intersection.,,Yes,Yes,Female
+,,J. 10 months,,0.0,0.0,1757.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,80.0,No,Yes,,Yes,Car,Snowy,2020-06-18 23:28:18.819763,2021-01-11 23:28:18.819763,3.0,35.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+520.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2022-11-27 01:09:25.313062,2023-04-11 01:09:25.313062,4.0,78.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,240.0,0.0,0.0,0.0,0.0,,No,No,Multiple,No,Car,Snowy,2021-08-04 04:42:35.071014,2022-05-02 04:42:35.071014,6.0,79.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+240.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Motorcycle,Snowy,2021-01-02 09:49:39.235847,2021-04-01 09:49:39.235847,14.0,64.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Male
+1005.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,510.0,No,No,Legs,Yes,Car,Snowy,2022-04-17 00:56:44.840968,2022-10-29 00:56:44.840968,16.0,54.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+2145.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2022-12-27 17:08:39.223844,2023-04-28 17:08:39.223844,9.0,71.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+1316.88,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,527.35,No,Yes,Arms,Yes,Truck,Sunny,2020-06-15 18:22:06.505301,2020-10-09 18:22:06.505301,19.0,66.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Sunny,2020-06-07 21:06:52.642528,2020-12-20 21:06:52.642528,8.0,48.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+2557.0,Rear end,D. 4 months,0.0,0.0,500.0,0.0,0.0,2143.27,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,310.0,No,Yes,Arms,No,Truck,Rainy,2023-05-18 01:41:41.060212,2023-06-23 01:41:41.060212,15.0,31.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+1770.0,Rear end - Clt pushed into next vehicle,I. 9 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Hips,No,Motorcycle,Sunny,2023-11-11 01:23:32.202440,2024-01-17 01:23:32.202440,2.0,18.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+1179.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,284.0,Yes,Yes,Arms,No,Motorcycle,Sunny,2023-08-10 18:25:16.623324,2023-12-21 18:25:16.623324,8.0,31.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+2548.27,Rear end,E. 5 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,123.27,0.0,0.0,520.0,0.0,0.0,0.0,0.0,295.0,No,Yes,Hips,No,Truck,Rainy,2020-07-05 00:59:20.392078,2021-04-12 00:59:20.392078,7.0,58.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+1388.0,Other side pulled out of side road,B. 2 months,0.0,0.0,0.0,940.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,559.44,0.0,0.0,345.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2020-01-12 16:22:33.870774,2020-01-23 16:22:33.870774,6.0,22.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+2576.4,Rear end,F. 6 months,0.0,0.0,0.0,1805.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,74.46,574.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2023-11-26 19:53:59.927985,2024-07-01 19:53:59.927985,16.0,48.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Other
+1487.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,27.0,620.0,No,No,Hips,Yes,Car,Sunny,2023-07-06 17:17:35.011002,2024-05-23 17:17:35.011002,4.0,48.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+1381.8,Other,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,,0.0,0.0,37.8,442.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2021-04-18 03:13:51.766353,2021-09-21 03:13:51.766353,6.0,47.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Other
+1410.0,Rear end,G. 7 months,0.0,0.0,0.0,1120.0,0.0,0.0,0.0,,0.0,0.0,,,0.0,,0.0,0.0,170.0,No,No,Hips,No,Car,Sunny,2022-12-08 10:31:25.337067,2023-08-05 10:31:25.337067,12.0,53.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Other
+910.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,4.2,455.0,No,Yes,Multiple,No,Truck,Snowy,2023-04-23 05:53:44.084816,2023-06-22 05:53:44.084816,17.0,79.0,4.0,Swerved to avoid another vehicle.,,Yes,No,Male
+1820.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,No,Yes,Hips,Yes,Car,Snowy,2023-04-20 14:48:39.463892,2023-09-05 14:48:39.463892,13.0,18.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+1457.0,Rear end - Clt pushed into next vehicle,B. 2 months,0.0,0.0,0.0,1983.75,0.0,0.0,,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,,125.0,No,Yes,Legs,No,Truck,Snowy,2021-01-14 09:12:46.953390,2021-03-05 09:12:46.953390,17.0,20.0,4.0,Lost control on a snowy road.,,Yes,Yes,Female
+2010.0,Rear end,H. 8 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,0.0,,0.0,0.0,115.0,No,Yes,Legs,Yes,,Snowy,2023-10-07 21:17:32.130426,2024-03-22 21:17:32.130426,2.0,78.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+1390.0,Other side reversed into Clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2020-02-16 10:29:41.636327,2020-07-30 10:29:41.636327,16.0,37.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Female
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,,0.0,0.0,No,No,Multiple,,Truck,Snowy,2021-07-24 02:21:08.893778,2022-06-08 02:21:08.893778,18.0,60.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Female
+290.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,,2021-11-25 13:16:28.757751,6.0,65.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Female
+1410.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,967.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,No,Car,Snowy,2021-12-15 08:59:49.197839,2022-03-17 08:59:49.197839,3.0,60.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Male
+975.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,518.0,No,Yes,Multiple,No,Truck,Snowy,2022-07-12 11:43:43.484696,2023-05-02 11:43:43.484696,14.0,38.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Rainy,2021-05-20 20:17:02.604520,2022-03-05 20:17:02.604520,7.0,47.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Other
+1133.63,Rear end,G. 7 months,0.0,0.0,0.0,,0.0,0.0,0.0,,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Legs,Yes,,Sunny,2020-06-18 09:27:11.126225,2020-09-01 09:27:11.126225,15.0,59.0,3.0,Rear-ended at a stoplight.,,No,Yes,Male
+1315.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,50.0,370.0,No,Yes,Multiple,No,Truck,Sunny,2020-03-04 23:03:32.442488,2020-04-18 23:03:32.442488,0.0,61.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+1340.29,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,73.8,534.48,No,Yes,Hips,No,Motorcycle,Snowy,2023-07-30 16:03:50.446089,2023-09-21 16:03:50.446089,15.0,47.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Snowy,2021-05-25 19:26:37.999599,2021-11-16 19:26:37.999599,1.0,22.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+1117.5,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Multiple,Yes,Car,Snowy,2021-03-05 07:49:14.750950,2021-08-13 07:49:14.750950,1.0,27.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+1597.0,Rear end,F. 6 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2023-06-18 00:41:28.817763,2023-08-24 00:41:28.817763,7.0,41.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+4346.83,Other,I. 9 months,0.0,0.0,0.0,1102.85,0.0,5894.9,0.0,0.0,111.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,825.0,No,Yes,Arms,No,Truck,Sunny,2021-02-11 03:06:22.396479,2022-02-07 03:06:22.396479,11.0,62.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+990.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,188.0,No,No,Legs,No,Truck,Snowy,2020-09-25 23:39:32.874574,2021-06-22 23:39:32.874574,10.0,78.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,447.52,,No,Yes,Arms,No,Motorcycle,,2022-03-20 21:04:17.091418,2022-07-22 21:04:17.091418,,68.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Female
+1209.1,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,74.1,615.0,No,Yes,Legs,No,Motorcycle,Rainy,2023-07-27 03:57:04.284856,2024-01-25 03:57:04.284856,18.0,56.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+545.2,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,417.27,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.5,21.2,No,Yes,Multiple,Yes,Car,Snowy,2023-08-29 11:01:22.816563,2024-02-27 11:01:22.816563,17.0,79.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+1750.0,Rear end,G. 7 months,0.0,0.0,0.0,1112.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,325.0,No,No,Legs,No,Motorcycle,Snowy,2022-09-29 22:17:09.805961,2022-11-04 22:17:09.805961,4.0,65.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Female
+2020.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Rainy,2022-11-12 03:40:39.127825,2023-06-12 03:40:39.127825,14.0,78.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Rainy,2020-11-22 12:30:40.688137,2021-04-05 12:30:40.688137,7.0,23.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Other
+2944.63,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,2790.0,0.0,2178.92,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,375.0,No,No,Multiple,Yes,Car,Sunny,2021-06-28 16:32:04.224844,2022-06-16 16:32:04.224844,5.0,27.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Male
+481.2,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,260.0,52.0,0.0,0.0,0.0,,Yes,,Multiple,Yes,,,2023-06-13 01:31:53.422684,2023-12-08 01:31:53.422684,11.0,76.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+1153.0,Other side reversed into clt's stationary vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Multiple,No,Motorcycle,Snowy,2020-07-30 10:48:25.061012,2021-01-12 10:48:25.061012,18.0,59.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+1785.2,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,,0.0,30.24,0.0,370.0,No,Yes,Multiple,No,Car,Sunny,2020-07-26 15:41:05.053010,2021-06-28 15:41:05.053010,11.0,75.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Male
+1275.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,480.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Arms,No,Motorcycle,Rainy,2021-06-17 00:09:30.354070,2022-05-12 00:09:30.354070,11.0,60.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Other
+820.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,300.0,No,Yes,Arms,No,Truck,Sunny,2023-02-20 14:54:42.416483,2024-01-13 14:54:42.416483,8.0,71.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+923.05,Rear end,H. 8 months,612.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,9.9,78.05,No,Yes,,No,Car,,2020-04-23 21:40:00.240048,2020-06-08 21:40:00.240048,9.0,27.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+2337.0,Rear end,H. 8 months,0.0,0.0,0.0,1880.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,26.4,290.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2020-11-08 12:03:36.043208,2021-04-13 12:03:36.043208,16.0,42.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+830.0,Rear end,F. 6 months,0.0,0.0,150.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2023-08-03 11:11:10.454090,2024-03-26 11:11:10.454090,17.0,31.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Other
+1000.0,Rear end,B. 2 months,0.0,0.0,0.0,1256.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Rainy,2022-03-18 12:59:46.317263,2023-01-28 12:59:46.317263,15.0,64.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Other
+852.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,520.0,0.0,0.0,27.0,0.0,305.0,No,Yes,Multiple,No,Truck,Snowy,2023-08-01 10:07:13.526705,2023-09-30 10:07:13.526705,3.0,56.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Male
+243.9,Other,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,3.9,0.0,No,No,Hips,Yes,Car,Snowy,2021-12-10 02:49:39.955991,2021-12-15 02:49:39.955991,,30.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+520.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2023-08-05 12:15:07.381476,2024-02-02 12:15:07.381476,2.0,28.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+890.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.5,75.0,No,No,Hips,Yes,Motorcycle,Snowy,2021-09-19 01:11:09.013802,2022-02-11 01:11:09.013802,15.0,56.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+317.5,Other side reversed into Clt's vehicle,A. 1 month,0.0,,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,,0.0,33.0,50.0,No,Yes,Legs,No,Truck,Sunny,,2023-09-20 05:35:00.660132,13.0,28.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2023-07-31 20:06:05.833166,2024-04-21 20:06:05.833166,8.0,63.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2022-03-15 07:53:34.002800,2022-10-24 07:53:34.002800,,66.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Male
+690.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,1960.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Multiple,No,Motorcycle,Rainy,2022-08-10 23:40:42.008401,2023-06-07 23:40:42.008401,3.0,33.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+1390.0,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2023-01-22 02:57:43.892778,2023-12-24 02:57:43.892778,1.0,50.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Other
+,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,2100.0,,0.0,0.0,0.0,0.0,0.0,,495.0,0.0,1.0,0.0,0.0,525.0,No,No,Legs,Yes,Car,Sunny,2022-09-24 16:07:00.564112,2023-05-19 16:07:00.564112,9.0,58.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Other
+884.5,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,21.0,455.0,No,Yes,Legs,Yes,Car,Rainy,2021-08-23 18:20:22.804560,2021-09-05 18:20:22.804560,10.0,58.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Male
+725.0,Rear end,D. 4 months,0.0,0.0,0.0,524.0,0.0,0.0,0.0,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,0.0,180.0,No,Yes,Arms,Yes,Truck,Sunny,2021-11-05 22:43:39.883976,2022-10-10 22:43:39.883976,6.0,77.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+1125.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,840.0,0.0,0.0,,0.0,285.0,No,No,Arms,,Truck,Sunny,2022-04-20 20:04:04.848969,2023-01-13 20:04:04.848969,,49.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Female
+2286.96,Rear end - 3 car - Clt at front,J. 10 months,0.0,0.0,0.0,700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,20.16,0.0,246.8,No,No,Hips,No,Car,Snowy,2022-11-29 16:14:29.933986,2023-08-22 16:14:29.933986,3.0,76.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Female
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,447.52,0.0,No,Yes,Legs,No,Car,Rainy,2022-01-31 23:31:46.221244,2022-02-16 23:31:46.221244,5.0,27.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Female
+2000.0,Other side pulled out of side road,H. 8 months,0.0,,0.0,1105.0,0.0,0.0,0.0,0.0,0.0,0.0,,895.0,0.0,0.0,0.0,,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2021-02-21 15:26:40.880176,2021-05-24 15:26:40.880176,1.0,68.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2021-07-12 16:59:08.869773,2022-03-17 16:59:08.869773,1.0,32.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+832.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Legs,No,Car,Sunny,2020-08-09 02:07:02.004400,2020-08-28 02:07:02.004400,15.0,33.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+2540.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,1700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Sunny,2021-09-15 06:03:49.005801,2022-09-10 06:03:49.005801,12.0,60.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+972.5,Other side collided with Clt's parked vehicle,G. 7 months,0.0,0.0,0.0,1050.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2021-07-12 09:58:35.023004,2021-10-23 09:58:35.023004,6.0,44.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+575.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,80.0,No,No,Arms,No,Truck,Snowy,2021-05-22 21:20:59.531906,2021-08-25 21:20:59.531906,4.0,73.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Female
+726.9,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,89.4,238.0,No,Yes,Hips,No,Truck,Snowy,2022-07-28 13:14:45.057011,2023-05-07 13:14:45.057011,16.0,74.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Male
+3726.57,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2000.0,0.0,285.0,0.0,0.0,30.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,1181.57,No,No,Multiple,Yes,Motorcycle,Snowy,2023-10-21 00:42:55.235047,2024-05-21 00:42:55.235047,12.0,66.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Male
+935.3,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,18.3,0.0,375.0,No,Yes,Hips,Yes,Car,Rainy,2020-11-27 04:39:42.236447,2021-01-03 04:39:42.236447,14.0,77.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Male
+575.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,80.0,No,No,Multiple,Yes,Truck,Sunny,2022-12-20 02:53:59.207841,2023-02-19 02:53:59.207841,2.0,79.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Other
+918.8,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6,0.0,0.0,495.0,0.0,0.0,43.2,0.0,462.0,No,No,Legs,Yes,Truck,Snowy,2020-08-11 03:10:58.931786,2021-05-29 03:10:58.931786,3.0,68.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Male
+1425.4,Rear end,E. 5 months,0.0,0.0,0.0,1050.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,5.4,0.0,No,Yes,Hips,No,Truck,Sunny,2022-03-06 20:37:12.446489,2023-03-03 20:37:12.446489,14.0,62.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+931.12,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.12,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2022-09-10 15:39:55.919183,2023-07-10 15:39:55.919183,17.0,49.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+2050.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,1880.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2022-10-18 07:52:42.152430,2023-06-19 07:52:42.152430,2.0,23.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Male
+600.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,105.0,No,No,Arms,No,Car,Sunny,2021-05-03 07:43:11.798359,2022-03-10 07:43:11.798359,6.0,64.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+1521.2,Rear end,E. 5 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,1.2,0.0,No,Yes,Hips,No,Car,Snowy,2022-09-21 11:00:48.249649,2023-08-31 11:00:48.249649,7.0,65.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Female
+1708.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,2194.0,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,0.0,88.0,No,Yes,Hips,Yes,Car,Snowy,2020-06-18 23:28:18.819763,2021-06-04 23:28:18.819763,10.0,53.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+753.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,29.4,284.0,No,Yes,Legs,No,Truck,Rainy,2023-10-23 22:48:33.702740,2023-10-29 22:48:33.702740,8.0,25.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Other
+935.32,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.4,No,Yes,Hips,Yes,Motorcycle,Sunny,2023-09-15 02:33:32.082416,2024-07-17 02:33:32.082416,19.0,42.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+272.9,Other side reversed into clt's stationary vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,15.6,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2021-06-15 20:07:14.966993,2021-11-27 20:07:14.966993,11.0,24.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Other
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Snowy,2020-12-12 02:08:28.421684,2020-12-25 02:08:28.421684,4.0,76.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Male
+895.0,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Snowy,2023-08-14 13:32:36.631326,2023-09-08 13:32:36.631326,0.0,34.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Other
+520.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2021-04-23 02:23:27.161432,2021-12-03 02:23:27.161432,13.0,65.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+808.4,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,41.4,455.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2021-09-28 16:29:45.957191,2022-01-29 16:29:45.957191,2.0,47.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Snowy,2020-02-24 21:46:03.192638,2020-07-02 21:46:03.192638,14.0,19.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+870.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,30.0,No,No,Arms,No,Truck,Sunny,2021-05-24 22:24:56.459291,2022-03-25 22:24:56.459291,9.0,34.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+260.0,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2023-01-22 09:58:17.739547,2023-05-24 09:58:17.739547,9.0,74.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Female
+1965.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2022-02-04 04:37:58.535707,2022-03-11 04:37:58.535707,2.0,21.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+1167.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,168.0,0.0,0.0,0.0,592.0,Yes,No,Multiple,Yes,Motorcycle,Snowy,2023-02-26 04:05:25.505101,2023-05-20 04:05:25.505101,5.0,43.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Male
+1830.0,Other,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,510.0,No,No,Hips,Yes,Truck,Sunny,2021-11-10 07:52:07.585517,2022-09-15 07:52:07.585517,4.0,31.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+1000.0,Other side changed lanes on a roundabout colliding with clt's vehicle,H. 8 months,0.0,0.0,0.0,,0.0,0.0,620.0,0.0,0.0,0.0,,895.0,179.0,0.0,0.0,,50.0,Yes,Yes,Multiple,Yes,Motorcycle,Sunny,2020-12-11 19:07:54.574914,,18.0,25.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2022-03-26 17:15:34.026805,2022-06-10 17:15:34.026805,13.0,22.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Female
+1375.0,Rear end,F. 6 months,0.0,0.0,0.0,1972.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Rainy,2022-05-10 09:41:52.582516,2022-08-22 09:41:52.582516,16.0,22.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+887.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,29.7,621.0,No,No,Hips,Yes,Motorcycle,Sunny,2021-12-31 03:30:16.923384,2022-08-20 03:30:16.923384,11.0,22.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+285.0,Rear end,A. 1 month,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,45.0,No,Yes,Legs,No,Car,Sunny,2023-12-15 12:30:06.121224,2024-10-13 12:30:06.121224,8.0,44.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+1700.0,Rear end,B. 2 months,0.0,0.0,0.0,1469.0,0.0,0.0,140.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2020-02-19 08:35:20.104020,2020-04-02 08:35:20.104020,2.0,22.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+520.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2023-12-09 09:18:15.339067,2024-03-11 09:18:15.339067,17.0,20.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Other
+895.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1610.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Rainy,2022-03-12 16:48:29.381876,2022-08-03 16:48:29.381876,3.0,55.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Female
+978.4,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,23.4,,518.0,,Yes,Hips,Yes,Truck,Sunny,2020-11-11 10:09:14.510902,2021-07-23 10:09:14.510902,13.0,47.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Female
+1390.0,Other side pulled out of side road,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2021-01-03 20:52:28.469693,2021-03-22 20:52:28.469693,5.0,18.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+,,J. 10 months,0.0,0.0,0.0,1600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,,Truck,Snowy,2023-11-21 13:43:50.686137,2024-08-10 13:43:50.686137,,25.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+895.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-07-24 12:51:59.663932,2023-10-02 12:51:59.663932,16.0,30.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Female
+870.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,462.0,No,No,Hips,Yes,Truck,Rainy,2021-10-18 13:08:07.537507,2022-03-16 13:08:07.537507,4.0,37.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+2094.0,Rear end,E. 5 months,0.0,0.0,0.0,1880.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,1.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Rainy,2023-02-15 08:44:33.174634,2023-12-04 08:44:33.174634,5.0,23.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+2640.2,Other side pulled out of side road,N. 14 months,0.0,0.0,0.0,556.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,10.2,366.0,No,Yes,Legs,No,Truck,Snowy,2021-01-21 23:27:26.969393,2021-08-23 23:27:26.969393,4.0,67.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+5165.7,Rear end,T. 20 months,0.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,4345.0,0.0,0.0,0.0,134.46,804.0,No,Yes,Arms,No,Truck,Snowy,2022-07-16 20:52:11.186237,2023-07-11 20:52:11.186237,18.0,67.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+260.0,Other side drove on wrong side of the road,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2023-02-05 03:24:48.537707,2023-12-12 03:24:48.537707,13.0,65.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+379.9,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,135.88,0.0,0.0,0.0,,0.0,240.0,0.0,0.0,0.0,4.02,0.0,No,No,Legs,No,Car,Sunny,,2022-02-13 08:11:42.860572,3.0,25.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+1330.0,Other side reversed into Clt's vehicle,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,10.0,0.0,No,,Multiple,No,Motorcycle,Sunny,2021-05-07 23:52:13.346669,2021-06-01 23:52:13.346669,4.0,47.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+1020.0,Rear end,E. 5 months,0.0,0.0,0.0,1103.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2022-05-21 19:03:52.606521,2023-04-09 19:03:52.606521,10.0,66.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+1142.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,362.7,238.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2021-08-29 07:31:05.893178,2021-12-16 07:31:05.893178,1.0,57.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+804.8,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,19.8,0.0,265.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2021-03-22 13:22:31.710342,2021-09-19 13:22:31.710342,1.0,32.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+3325.0,Other side pulled out of side road,F. 6 months,0.0,0.0,475.0,1950.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,254.2,0.0,565.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2021-03-02 16:44:10.130026,2021-11-08 16:44:10.130026,19.0,75.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+1145.0,,I. 9 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,,No,Yes,Arms,Yes,Motorcycle,Snowy,2021-02-13 11:10:53.170634,2021-09-04 11:10:53.170634,11.0,27.0,1.0,,Fractured arm and leg.,No,No,Male
+520.0,Other side reversed into clt's stationary vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,0.0,0.0,,Yes,Hips,No,Motorcycle,Rainy,2020-01-22 00:40:36.967393,2020-11-21 00:40:36.967393,15.0,50.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Male
+727.8,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.5,0.0,0.0,520.0,0.0,0.0,37.8,0.0,170.0,No,Yes,Legs,Yes,Truck,Snowy,2023-06-24 03:53:19.599919,2023-12-11 03:53:19.599919,16.0,26.0,2.0,Swerved to avoid another vehicle.,,No,No,Other
+914.0,Other side changed lanes and collided with clt's vehicle,,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Arms,No,Car,Snowy,2023-03-24 03:55:37.867573,2023-09-15 03:55:37.867573,3.0,66.0,3.0,,Fractured arm and leg.,No,Yes,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Sunny,2023-09-08 16:21:07.453490,2024-08-20 16:21:07.453490,13.0,69.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Truck,Sunny,2022-03-27 14:17:15.567113,2022-09-13 14:17:15.567113,6.0,74.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Female
+260.0,Other side reversed into clt's stationary vehicle,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,,Arms,No,Motorcycle,Rainy,2023-08-11 22:27:32.010402,,14.0,50.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+760.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,290.0,Yes,Yes,Hips,Yes,Car,Rainy,2021-12-29 02:26:19.995999,2022-05-12 02:26:19.995999,15.0,26.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+650.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Hips,Yes,Truck,Rainy,2023-12-23 16:45:53.830766,2024-04-28 16:45:53.830766,7.0,31.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+2251.98,Rear end,G. 7 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,206.98,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2023-05-20 16:46:45.681136,2023-07-05 16:46:45.681136,1.0,73.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Other
+915.43,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.43,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Snowy,2022-11-10 09:37:16.047209,2023-05-23 09:37:16.047209,18.0,49.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Female
+2095.0,Other side drove on wrong side of the road,,0.0,0.0,0.0,2000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,,,No,Yes,Legs,Yes,Car,Rainy,2020-01-10 08:18:03.096619,2021-01-06 08:18:03.096619,0.0,54.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Other
+728.0,Rear end,,0.0,0.0,0.0,0.0,0.0,173.0,0.0,0.0,60.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Snowy,2022-02-25 19:19:43.196639,,3.0,,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Other
+1789.35,Rear end,,0.0,0.0,0.0,1651.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,,0.0,0.0,10.65,18.7,No,Yes,Multiple,Yes,Motorcycle,Sunny,2023-07-01 04:06:51.922384,2024-04-22 04:06:51.922384,10.0,22.0,,,Concussion and bruised ribs.,Yes,No,Male
+1133.0,"Other side opened their door, hitting clt's vehicle",G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Arms,Yes,Car,Rainy,2023-11-16 00:33:07.597519,2024-01-13 00:33:07.597519,9.0,21.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2022-11-16 19:49:40.676135,2023-02-02 19:49:40.676135,17.0,77.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Sunny,2021-11-29 14:29:21.472294,2022-06-19 14:29:21.472294,0.0,65.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Male
+1000.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,10.0,0.0,462.0,No,Yes,Multiple,No,Motorcycle,Snowy,2023-04-15 22:39:37.915583,2024-01-29 22:39:37.915583,16.0,33.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Female
+890.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,43.9,370.0,No,No,Arms,No,Motorcycle,Rainy,2022-04-18 11:59:34.074814,2022-06-19 11:59:34.074814,15.0,27.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+3340.0,Rear end,R. 18 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3100.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Multiple,No,Truck,Snowy,2022-02-20 20:10:07.801560,2022-11-15 20:10:07.801560,11.0,48.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+,Rear end,G. 7 months,0.0,0.0,0.0,1008.45,0.0,77.01,0.0,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,0.0,0.0,,Yes,Legs,No,Motorcycle,Sunny,2021-02-13 04:10:19.323864,2021-06-19 04:10:19.323864,,,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Female
+3074.0,Rear end,H. 8 months,0.0,0.0,0.0,2137.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,50.0,Yes,Yes,Hips,,Truck,Rainy,,2020-10-14 14:40:52.810562,,31.0,3.0,,Sprained ankle and wrist.,No,No,Female
+1015.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2021-04-29 19:36:25.637127,2021-07-26 19:36:25.637127,16.0,30.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Female
+570.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,,0.0,,,0.0,0.0,520.0,,0.0,0.0,0.0,50.0,No,Yes,Legs,No,Car,Sunny,2023-08-25 08:53:28.961792,2024-07-24 08:53:28.961792,2.0,77.0,,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Female
+1390.0,Rear end,K. 11 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Rainy,2023-10-11 09:24:18.291658,2024-06-28 09:24:18.291658,17.0,21.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Other
+1906.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,1050.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Arms,No,Car,Rainy,2021-12-13 00:55:18.423684,2022-06-10 00:55:18.423684,14.0,63.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+260.0,,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,2022-05-21 05:02:44.912982,2022-07-29 05:02:44.912982,14.0,43.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+2659.0,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Multiple,Yes,Car,Snowy,2020-12-19 09:22:34.590918,2021-02-17 09:22:34.590918,15.0,41.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
+1246.0,Rear end,G. 7 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,266.0,No,No,Hips,No,Car,Snowy,2020-06-23 22:37:54.214842,2021-04-21 22:37:54.214842,19.0,73.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+495.0,Other side pulled on to roundabout,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2021-06-23 03:21:21.136227,2022-02-27 03:21:21.136227,0.0,26.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+1469.0,Rear end,H. 8 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,574.0,No,Yes,Multiple,Yes,Truck,Rainy,2021-06-25 18:26:25.757151,2021-12-11 18:26:25.757151,0.0,52.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+1221.8,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,22.8,344.0,No,Yes,Legs,No,Truck,,2021-07-05 02:44:28.853770,2022-03-31 02:44:28.853770,3.0,59.0,3.0,,Fractured arm and leg.,Yes,Yes,Male
+1265.45,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,58.45,412.0,No,Yes,Legs,Yes,Truck,Sunny,2020-07-17 07:23:01.956391,2021-07-16 07:23:01.956391,12.0,32.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+1301.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Hips,Yes,Car,Sunny,2022-08-07 18:34:29.693938,2022-11-27 18:34:29.693938,3.0,41.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Female
+524.25,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,4.25,No,Yes,Hips,Yes,Motorcycle,Sunny,2021-06-19 22:15:08.821764,2021-09-27 22:15:08.821764,7.0,48.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+840.0,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,,0.0,0.0,0.0,0.0,No,No,Multiple,No,Truck,Sunny,2023-03-22 23:53:22.480496,2023-10-23 23:53:22.480496,,36.0,,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+2170.0,Rear end,J. 10 months,,0.0,0.0,,0.0,1600.0,790.0,0.0,299.0,0.0,0.0,1320.0,0.0,62.97,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Rainy,2021-09-27 19:28:04.416883,2022-01-18 19:28:04.416883,7.0,19.0,2.0,,Minor cuts and scrapes.,No,No,Other
+1544.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,1112.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,85.0,9.0,0.0,620.0,No,Yes,Hips,No,Motorcycle,Snowy,2020-02-13 05:23:29.321864,2020-05-20 05:23:29.321864,13.0,19.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+616.76,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,351.2,0.0,0.0,260.0,52.0,0.0,0.0,5.56,0.0,Yes,Yes,Multiple,Yes,Car,Rainy,2021-03-12 15:03:20.920184,2022-01-13 15:03:20.920184,0.0,58.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+1675.0,Rear end,J. 10 months,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,,0.0,0.0,285.0,No,Yes,Hips,No,,Rainy,2023-12-05 21:11:29.177835,2024-04-01 21:11:29.177835,8.0,53.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+1301.0,Rear end,G. 7 months,0.0,0.0,0.0,1082.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,6.0,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,2021-05-24 08:23:48.765753,2021-06-29 08:23:48.765753,0.0,54.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+566.11,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.11,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Snowy,2021-04-25 17:28:31.782356,2022-03-28 17:28:31.782356,6.0,51.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+710.0,Rear end - 3 car - Clt at front,A. 1 month,0.0,0.0,0.0,450.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2022-05-24 17:09:31.074214,2023-05-18 17:09:31.074214,19.0,74.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Other
+795.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,650.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,300.0,,No,Legs,No,Truck,Snowy,2021-05-03 07:43:11.798359,2022-02-17 07:43:11.798359,12.0,56.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Female
+995.9,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,13.9,0.0,0.0,520.0,104.0,0.0,0.0,27.0,406.0,Yes,Yes,Legs,No,Truck,Rainy,2021-07-20 07:13:48.885777,2022-05-20 07:13:48.885777,14.0,36.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+1818.94,Rear end,A. 1 month,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,7.8,0.0,801.14,No,No,Multiple,No,Truck,Snowy,2020-07-10 21:10:37.327465,2021-07-05 21:10:37.327465,8.0,55.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+1920.0,Rear end,F. 6 months,0.0,0.0,0.0,2173.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Sunny,2022-12-06 23:28:36.103220,2023-11-18 23:28:36.103220,15.0,40.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+1720.0,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,1200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2020-11-03 12:54:00.648129,2021-03-07 12:54:00.648129,16.0,33.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+1411.25,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,25.5,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2023-04-03 23:16:30.198039,2023-05-13 23:16:30.198039,8.0,63.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+1170.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,761.94,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Rainy,2020-06-17 05:24:55.739147,2020-11-05 05:24:55.739147,5.0,61.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+1237.4,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,68.21,0.0,455.0,No,No,Arms,No,Car,Sunny,2022-06-22 22:05:55.751150,2022-07-18 22:05:55.751150,19.0,23.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+1285.0,,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,518.0,No,Yes,Legs,No,Truck,Snowy,2022-06-04 05:29:49.557911,2022-10-24 05:29:49.557911,11.0,75.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,2023-11-08 03:17:53.734746,2024-10-25 03:17:53.734746,15.0,76.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Other
+590.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,20.97,150.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2023-10-27 17:55:53.710742,2024-09-27 17:55:53.710742,14.0,43.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2023-11-13 16:28:36.823364,2024-01-09 16:28:36.823364,6.0,39.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+1735.0,Rear end,H. 8 months,0.0,0.0,0.0,959.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Rainy,2022-05-17 23:56:32.598519,2022-10-14 23:56:32.598519,9.0,62.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Female
+1390.0,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,,Yes,Hips,Yes,,,,2023-09-20 01:07:07.045409,3.0,64.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+1473.6,Rear end,E. 5 months,0.0,0.0,0.0,1960.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,227.6,126.0,No,Yes,Hips,Yes,Truck,Snowy,2021-08-20 06:13:36.643328,2021-11-04 06:13:36.643328,2.0,41.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+713.22,Other side reversed into clt's stationary vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,118.87,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,15.0,59.35,No,Yes,Multiple,No,Car,Snowy,2023-02-23 13:00:20.884176,2023-12-05 13:00:20.884176,17.0,63.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+795.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,475.0,No,No,Hips,Yes,Truck,Snowy,2022-05-10 23:43:00.276055,2022-12-06 23:43:00.276055,0.0,57.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+840.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Snowy,2021-04-20 04:17:48.693738,2022-01-03 04:17:48.693738,12.0,38.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Male
+,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,Yes,Motorcycle,Rainy,2021-03-10 13:59:23.992798,2021-11-24 13:59:23.992798,17.0,47.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2023-04-25 13:58:14.858971,2023-10-26 13:58:14.858971,7.0,69.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+240.0,Other side reversed into clt's stationary vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Car,Rainy,2023-05-11 01:28:08.737747,2024-04-03 01:28:08.737747,10.0,28.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Male
+1103.7,Rear end,E. 5 months,0.0,0.0,0.0,1400.0,0.0,1043.18,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,30.45,18.7,No,No,Legs,Yes,Motorcycle,Rainy,2023-07-27 10:57:38.131626,2023-08-07 10:57:38.131626,9.0,70.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+1455.58,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,1.08,574.0,Yes,Yes,Legs,No,Motorcycle,Sunny,2020-09-30 01:47:26.729345,2021-03-09 01:47:26.729345,3.0,26.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2022-11-06 14:29:56.039207,2023-07-24 14:29:56.039207,3.0,29.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Female
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2022-11-25 21:07:09.925985,2023-02-21 21:07:09.925985,3.0,43.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Other
+705.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,,No,No,Legs,Yes,Motorcycle,Rainy,2021-05-15 14:06:53.362672,2021-11-15 14:06:53.362672,11.0,55.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+2659.0,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Arms,No,Car,Snowy,2021-06-10 06:56:31.878375,2021-06-26 06:56:31.878375,7.0,68.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+2145.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2021-02-18 17:21:02.412482,2021-10-20 17:21:02.412482,12.0,20.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+290.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2022-11-14 18:45:43.748749,2023-02-08 18:45:43.748749,7.0,79.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+988.0,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,132.0,No,Yes,Hips,Yes,Truck,Sunny,2022-10-25 01:05:40.628125,2023-05-12 01:05:40.628125,2.0,50.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+1090.0,Rear end - Clt pushed into next vehicle,B. 2 months,0.0,0.0,0.0,967.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Rainy,2022-08-25 00:07:46.653330,2022-09-04 00:07:46.653330,11.0,32.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,2021-11-04 04:40:16.803360,2022-04-17 04:40:16.803360,17.0,64.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Other
+1150.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,300.0,No,Yes,Legs,No,Motorcycle,Sunny,2021-08-05 15:45:24.304860,2021-08-29 15:45:24.304860,14.0,22.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Other
+1707.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,1187.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Sunny,2021-07-28 11:29:36.595319,2021-09-30 11:29:36.595319,13.0,71.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Other
+3486.9700000000003,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,1992.0,0.0,313.6,300.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,123.37,238.0,No,Yes,Arms,Yes,Car,Sunny,2022-12-20 16:55:06.901380,2023-10-28 16:55:06.901380,8.0,41.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+517.92,Other,C. 3 months,0.0,0.0,0.0,634.8,0.0,0.0,0.0,0.0,6.0,0.0,0.0,260.0,0.0,0.0,0.0,1.92,0.0,No,Yes,,No,Truck,Sunny,2023-03-24 10:56:11.714342,2023-11-17 10:56:11.714342,4.0,28.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2023-08-02 21:10:02.760552,2024-07-12 21:10:02.760552,14.0,74.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+1820.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1950.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,9.6,182.0,No,Yes,Hips,No,Motorcycle,Snowy,,2024-07-17 17:46:06.073214,7.0,72.0,1.0,,Concussion and bruised ribs.,No,No,Female
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2022-10-06 22:30:42.128425,2022-10-28 22:30:42.128425,2.0,50.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Arms,No,Motorcycle,Sunny,2020-04-24 18:41:41.780356,2020-10-21 18:41:41.780356,11.0,40.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Female
+1125.0,Rear end,I. 9 months,0.0,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,285.0,No,No,Legs,No,Truck,Snowy,2023-10-27 10:55:19.863972,2024-08-28 10:55:19.863972,4.0,27.0,2.0,,Sprained ankle and wrist.,No,No,Other
+1152.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,375.0,No,No,Arms,No,Motorcycle,Sunny,2022-12-25 09:04:08.449689,2023-02-10 09:04:08.449689,8.0,74.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+1829.2,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,,0.0,0.0,51.84,574.0,No,Yes,,Yes,Truck,Snowy,,2024-04-02 20:02:21.148229,19.0,69.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,8.4,0.0,No,Yes,Legs,Yes,Truck,Sunny,2023-05-24 11:54:05.689137,2024-01-03 11:54:05.689137,2.0,60.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+1286.92,Other side collided with Clt's parked vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,16.92,455.0,No,Yes,Legs,No,Car,Rainy,2023-12-03 20:07:32.250450,2024-07-08 20:07:32.250450,7.0,45.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Other
+240.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Sunny,2020-01-08 21:15:13.862772,2020-09-01 21:15:13.862772,12.0,56.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Male
+495.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Sunny,2022-10-16 13:49:19.071814,2023-05-08 13:49:19.071814,7.0,74.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+685.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,188.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-05-29 11:03:41.084216,2024-05-02 11:03:41.084216,4.0,34.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+2212.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,2300.0,,654.63,0.0,0.0,0.0,,0.0,895.0,0.0,0.0,0.0,12.0,0.0,No,Yes,Legs,No,Motorcycle,Rainy,2020-12-08 14:01:42.260452,2020-12-27 14:01:42.260452,6.0,61.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+1707.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,1187.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2020-04-08 17:10:40.208041,2020-10-05 17:10:40.208041,4.0,43.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+2823.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,2648.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Rainy,2020-11-07 22:02:28.349669,2021-04-18 22:02:28.349669,8.0,42.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+1224.15,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,869.85,0.0,0.0,520.0,0.0,0.0,0.0,109.2,400.0,No,Yes,Hips,Yes,Truck,Rainy,2020-09-02 14:54:25.133026,2021-06-14 14:54:25.133026,4.0,53.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Other
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Snowy,2023-06-05 04:16:39.559911,2023-08-05 04:16:39.559911,7.0,29.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Male
+495.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Rainy,2023-10-18 02:37:16.767353,2024-01-11 02:37:16.767353,11.0,73.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2020-03-26 13:45:17.103420,2020-04-30 13:45:17.103420,3.0,20.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+520.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2021-06-26 08:27:33.450690,2021-07-01 08:27:33.450690,8.0,67.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+1470.0,Other side turned across Clt's path,I. 9 months,0.0,0.0,0.0,1112.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,105.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2021-01-21 02:25:45.429085,2021-04-07 02:25:45.429085,13.0,46.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Female
+1081.05,"Other side opened their door, hitting clt's vehicle",H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,47.62,299.35,No,No,Hips,Yes,Car,Snowy,2021-04-26 00:29:05.629125,2022-01-04 00:29:05.629125,18.0,61.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Male
+2645.0,,,0.0,0.0,0.0,1950.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,,0.0,,No,Yes,Hips,Yes,Motorcycle,Sunny,2023-12-01 12:03:01.476295,2023-12-08 12:03:01.476295,12.0,73.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Female
+895.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2022-11-23 06:02:05.305061,2023-05-11 06:02:05.305061,2.0,41.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Female
+520.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Rainy,2023-08-14 20:33:10.478095,2023-12-22 20:33:10.478095,3.0,36.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Other
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,,0.0,,No,No,Legs,,Truck,Rainy,2022-06-22 15:05:21.904380,2022-11-07 15:05:21.904380,0.0,30.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Female
+820.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,300.0,No,Yes,Arms,No,Car,Sunny,2022-10-16 13:49:19.071814,2023-10-09 13:49:19.071814,0.0,33.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+1115.5,Rear end,H. 8 months,0.0,0.0,0.0,555.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,3.0,50.0,No,Yes,Legs,No,Motorcycle,Rainy,2022-10-17 17:51:34.458891,2023-08-13 17:51:34.458891,10.0,57.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+2000.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,1725.0,,,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,,,No,Yes,Hips,Yes,,Rainy,2023-08-31 05:04:45.897179,2024-07-22 05:04:45.897179,15.0,44.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+1800.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,1280.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2023-01-15 02:44:11.570314,2023-04-16 02:44:11.570314,3.0,76.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+895.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,,0.0,,No,Yes,Multiple,No,,Snowy,2020-01-26 16:49:38.515703,2020-07-07 16:49:38.515703,6.0,23.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Female
+1135.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,350.0,No,Yes,Hips,Yes,Car,Snowy,2023-06-29 03:02:54.994999,2024-05-12 03:02:54.994999,11.0,59.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+1370.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,1182.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2021-07-25 06:23:24.280856,2022-04-04 06:23:24.280856,5.0,74.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Male
+2020.0,Rear end,E. 5 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Rainy,2020-09-19 13:27:08.245649,2021-04-08 13:27:08.245649,19.0,27.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2022-10-12 11:41:25.217043,2022-11-01 11:41:25.217043,8.0,78.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+1665.0,Other,E. 5 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,162.0,70.0,No,Yes,Legs,Yes,Car,Rainy,2021-05-24 08:23:48.765753,2022-01-08 08:23:48.765753,7.0,55.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+2771.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,2170.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Hips,No,Motorcycle,Snowy,2023-07-01 04:06:51.922384,2023-12-11 04:06:51.922384,13.0,25.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+682.0699999999999,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,162.07,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Rainy,2021-10-20 00:10:56.771354,2022-04-03 00:10:56.771354,14.0,35.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+2086.85,Rear end,G. 7 months,0.0,0.0,0.0,1700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,7.02,294.0,No,Yes,Multiple,No,Motorcycle,Rainy,2022-12-05 05:25:13.022604,2023-07-25 05:25:13.022604,4.0,49.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Female
+1620.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1100.0,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,0.0,No,Yes,,Yes,,Rainy,2022-05-14 11:49:46.437287,2023-04-07 11:49:46.437287,14.0,34.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Male
+1083.0,Rear end - 3 car - Clt at front,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,,0.0,0.0,0.0,188.0,No,,Hips,No,Car,Rainy,2021-04-21 22:21:11.774354,2021-12-15 22:21:11.774354,5.0,75.0,2.0,,Minor cuts and scrapes.,No,Yes,Female
+812.7,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,488.5,30.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,34.2,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2020-09-08 11:05:42.068413,2021-01-06 11:05:42.068413,0.0,59.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+1340.29,Rear end,G. 7 months,0.0,0.0,0.0,,0.0,,,0.0,0.0,,0.0,895.0,0.0,0.0,0.0,73.8,534.48,No,Yes,Legs,No,Car,Sunny,2023-10-04 23:11:53.662732,2024-09-19 23:11:53.662732,19.0,19.0,,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+1167.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,168.0,0.0,0.0,0.0,592.0,Yes,No,Arms,No,Car,Rainy,2020-10-22 20:31:26.777355,2021-02-06 20:31:26.777355,8.0,61.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+520.0,Other side changed lanes and collided with clt's vehicle,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Multiple,No,,Sunny,2022-08-21 12:01:00.492098,2023-04-28 12:01:00.492098,3.0,37.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+1167.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,168.0,0.0,0.0,0.0,592.0,Yes,No,Multiple,No,Car,Rainy,2021-03-15 20:09:33.234646,2022-02-14 20:09:33.234646,1.0,27.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2022-07-25 01:07:58.895779,2023-05-05 01:07:58.895779,5.0,26.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Female
+1281.0,Other,I. 9 months,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,46.08,0.0,0.0,895.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Arms,No,Motorcycle,Rainy,2023-11-03 18:09:26.033206,2024-05-19 18:09:26.033206,1.0,65.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+574.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2020-10-12 08:11:08.293658,2021-05-20 08:11:08.293658,2.0,56.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+1375.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,462.0,Yes,Yes,Arms,No,Truck,Rainy,2022-10-07 19:32:23.668733,2023-03-07 19:32:23.668733,6.0,58.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+2134.43,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,1972.25,0.0,0.0,0.0,0.0,11.55,0.0,0.0,895.0,179.0,0.0,0.0,38.88,510.0,Yes,Yes,Hips,No,Truck,Rainy,2021-06-14 16:04:59.579915,2022-03-27 16:04:59.579915,19.0,42.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Other
+1781.46,Rear end,F. 6 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,31.46,230.0,No,Yes,Hips,No,Truck,Snowy,2022-12-11 22:38:11.498299,2023-09-02 22:38:11.498299,16.0,42.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+1740.0,Other,J. 10 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2023-03-31 04:09:10.190038,2023-11-06 04:09:10.190038,8.0,41.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Male
+1508.8,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,,0.0,1390.0,0.0,0.0,0.0,0.0,118.8,No,Yes,Multiple,Yes,Car,Sunny,2022-02-08 06:45:52.390478,,,23.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+1707.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,1187.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Snowy,2023-12-02 09:04:43.016603,2024-10-12 09:04:43.016603,18.0,47.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+2895.0,Other side pulled out of side road,K. 11 months,0.0,0.0,0.0,3160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-11-07 06:16:12.194438,2024-04-11 06:16:12.194438,4.0,76.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+995.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,798.0,No,No,Legs,Yes,Truck,Rainy,2022-12-06 16:28:02.256451,2023-07-10 16:28:02.256451,5.0,27.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Other
+1720.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,500.0,700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2020-10-03 20:54:46.737347,2021-09-03 20:54:46.737347,17.0,56.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+1115.8,Rear end,G. 7 months,0.0,0.0,0.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,25.8,0.0,No,No,Arms,No,Motorcycle,Sunny,2020-05-18 03:26:49.521904,2021-05-12 03:26:49.521904,0.0,48.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+260.0,Other side drove on wrong side of the road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2020-06-14 14:19:51.118223,2020-10-06 14:19:51.118223,16.0,35.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+570.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Arms,Yes,Car,Sunny,2022-09-29 08:16:02.112422,2023-03-09 08:16:02.112422,13.0,60.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Female
+895.0,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2023-03-20 22:49:25.553110,2024-01-17 22:49:25.553110,14.0,50.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Female
+1000.0,Other,F. 6 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,625.0,No,Yes,Arms,No,Car,Rainy,2021-10-21 11:13:46.005201,2022-01-27 11:13:46.005201,4.0,78.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+531.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,,0.0,0.0,36.0,No,No,Legs,No,Motorcycle,Rainy,2022-07-07 05:33:34.242848,2022-12-11 05:33:34.242848,16.0,,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+495.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Rainy,2023-06-12 18:31:19.575915,2023-11-21 18:31:19.575915,10.0,73.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Female
+560.0,Other side pulled from parked position into the path of clt's vehicle,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,40.0,No,Yes,Arms,Yes,Car,Rainy,2023-12-29 19:57:44.612922,2024-02-09 19:57:44.612922,9.0,36.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Female
+1060.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Legs,No,Car,Snowy,2021-08-01 20:38:04.296859,2022-01-28 20:38:04.296859,16.0,40.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+1775.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,0.0,477.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2020-11-16 02:18:16.059211,2021-09-15 02:18:16.059211,,22.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Other
+1320.0,Rear end,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Rainy,2022-11-08 15:33:52.966593,2023-10-04 15:33:52.966593,4.0,77.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+836.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.0,400.0,No,Yes,Arms,Yes,Car,Snowy,2022-09-17 01:52:20.548109,2022-11-07 01:52:20.548109,15.0,43.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Female
+2125.0,Other side pulled out of side road,M. 13 months,0.0,0.0,0.0,1240.0,0.0,0.0,0.0,0.0,350.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2022-02-19 09:07:18.567713,2022-10-29 09:07:18.567713,6.0,46.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+895.0,Other side pulled on to roundabout,I. 9 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Snowy,,2023-11-15 20:16:45.321064,11.0,41.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Other
+2033.0,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,740.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Legs,No,Motorcycle,Sunny,2021-12-07 11:44:35.335067,2022-04-06 11:44:35.335067,7.0,23.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Female
+704.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,520.0,0.0,0.0,,0.0,290.0,No,Yes,Legs,No,Motorcycle,Sunny,2023-06-03 17:13:50.326065,,17.0,71.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Other
+2502.6,Other,A. 1 month,0.0,0.0,0.0,3450.0,0.0,552.58,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2022-09-04 19:28:38.983796,2023-02-13 19:28:38.983796,0.0,56.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Male
+2249.99,Rear end,,0.0,0.0,0.0,1780.0,,437.96,0.0,0.0,199.99,0.0,0.0,895.0,0.0,0.0,0.0,0.0,473.5,No,Yes,Arms,Yes,Motorcycle,Rainy,2020-07-15 13:19:38.875775,2020-12-11 13:19:38.875775,19.0,72.0,1.0,,Whiplash and minor bruises.,Yes,No,Female
+3100.0,Other,P. 16 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3100.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Hips,Yes,Truck,Rainy,2022-03-29 08:20:38.647729,2022-07-30 08:20:38.647729,11.0,21.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Other
+410.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,150.0,No,Yes,Hips,No,Car,Sunny,2021-11-22 21:16:22.996599,2022-04-12 21:16:22.996599,3.0,75.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+895.0,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-08-16 00:35:25.865173,2024-02-14 00:35:25.865173,11.0,65.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+1260.0,Rear end - Clt pushed into next vehicle,F. 6 months,,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Multiple,,Car,Rainy,2020-11-07 08:01:20.656131,,0.0,77.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Male
+620.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,125.0,No,No,Multiple,No,Truck,Sunny,2020-07-19 15:27:32.730546,2021-04-02 15:27:32.730546,0.0,,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+3224.0,Other,,,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,239.4,0.0,Yes,Yes,Legs,No,Car,Snowy,2023-12-26 07:50:58.451690,2024-11-15 07:50:58.451690,2.0,43.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Female
+994.68,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,4.68,,No,Yes,Multiple,No,Motorcycle,,,2020-09-21 20:38:21.580316,11.0,32.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+1070.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,516.28,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Hips,Yes,Truck,Rainy,2021-09-06 04:46:19.755951,2021-12-01 04:46:19.755951,12.0,30.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Other
+1895.0,Other,G. 7 months,0.0,0.0,0.0,3006.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Arms,No,Truck,Sunny,2020-05-02 08:56:21.796359,2020-07-12 08:56:21.796359,12.0,57.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Other
+1287.8,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,22.8,0.0,370.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2023-03-13 15:35:19.383876,2023-12-07 15:35:19.383876,8.0,39.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+1800.0,Rear end,F. 6 months,0.0,0.0,0.0,2200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,No,Motorcycle,Snowy,2022-01-28 11:25:00.060012,2022-07-27 11:25:00.060012,17.0,76.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Female
+740.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,1112.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2023-06-20 22:47:07.285457,2024-03-25 22:47:07.285457,0.0,30.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+1410.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,967.0,0.0,0.0,0.0,,0.0,0.0,,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,Yes,Car,Snowy,2021-09-12 07:58:10.538107,2022-02-08 07:58:10.538107,5.0,73.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Male
+260.0,Rear end - Clt pushed into next vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,,0.0,No,Yes,Multiple,No,Car,Snowy,2023-02-10 16:35:31.626325,2023-02-16 16:35:31.626325,4.0,56.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+1257.66,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,67.66,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,443.0,No,No,Multiple,No,Car,Snowy,2020-05-08 05:07:38.731746,2020-10-03 05:07:38.731746,3.0,34.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+640.6,Rear end - 3 car - Clt at front,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,182.0,No,No,Hips,No,Motorcycle,Rainy,2021-01-10 14:05:26.945389,2021-12-08 14:05:26.945389,5.0,53.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+1301.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2020-12-18 19:21:26.897379,2021-06-04 19:21:26.897379,2.0,56.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+6976.96,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6070.0,0.0,0.0,495.0,0.0,0.0,36.96,0.0,375.0,No,No,Hips,No,Car,Sunny,2020-11-10 20:08:06.817363,2020-11-19 20:08:06.817363,16.0,65.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+2140.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,1400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Truck,Rainy,2022-01-18 13:05:49.269853,2022-07-15 13:05:49.269853,10.0,42.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+1542.5,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,895.0,0.0,0.0,43.2,6.6,,No,Yes,Hips,Yes,Car,Snowy,2022-11-24 03:03:46.845369,2023-09-04 03:03:46.845369,3.0,51.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Male
+495.0,,D. 4 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,,No,No,Legs,No,Truck,Rainy,,2021-04-26 22:46:50.002000,,38.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+1320.0,Other,L. 12 months,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,,Sunny,2022-09-07 10:33:43.604720,2022-12-12 10:33:43.604720,0.0,42.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+4592.0,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,3912.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,518.0,Yes,Yes,Multiple,No,Motorcycle,Snowy,,2023-06-22 05:10:14.282856,3.0,42.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+895.0,Other side reversed into clt's stationary vehicle,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,Yes,Car,Rainy,2022-11-02 12:22:02.184436,,2.0,39.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+1044.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,33.84,805.95,No,No,Legs,Yes,Car,Rainy,2020-06-28 07:46:21.916383,2020-08-23 07:46:21.916383,9.0,40.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+532.25,Rear end,E. 5 months,0.0,0.0,0.0,99.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Hips,No,Motorcycle,Sunny,2022-06-17 22:56:20.356071,2023-01-10 22:56:20.356071,0.0,42.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Male
+520.0,Rear end - 3 car - Clt at front,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2022-03-06 06:36:04.752950,2022-06-19 06:36:04.752950,3.0,31.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Female
+1446.14,Rear end,G. 7 months,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,9.24,125.0,No,Yes,Arms,No,Motorcycle,Sunny,2022-10-16 06:48:45.225045,2022-11-20 06:48:45.225045,18.0,31.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2022-10-31 18:18:39.103820,2023-05-28 18:18:39.103820,0.0,43.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+1110.0,Other side drove on wrong side of the road,B. 2 months,0.0,0.0,0.0,1547.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2023-08-11 15:26:58.163632,2024-05-18 15:26:58.163632,15.0,57.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Other
+916.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,396.0,No,Yes,Hips,No,Car,Rainy,2021-07-08 21:51:48.861772,2022-06-28 21:51:48.861772,18.0,47.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2023-06-30 14:05:44.228845,2023-11-24 14:05:44.228845,19.0,43.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+620.94,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,73.11,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,60.33,0.0,No,Yes,Legs,Yes,Car,Sunny,2021-05-15 00:05:45.669133,2022-02-26 00:05:45.669133,17.0,55.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+620.94,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,73.11,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,60.33,0.0,No,Yes,Arms,Yes,Truck,Sunny,2021-11-11 04:53:49.125825,2022-01-31 04:53:49.125825,1.0,39.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+1622.24,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,650.0,0.0,288.87,490.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,102.24,50.0,No,Yes,Arms,Yes,Truck,Snowy,2022-11-22 23:01:31.458291,2023-01-11 23:01:31.458291,5.0,56.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+1044.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,33.84,805.95,,No,Arms,Yes,Car,Sunny,2020-12-14 17:13:33.042608,2021-03-11 17:13:33.042608,0.0,56.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+2118.8,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,,630.0,Yes,Yes,Multiple,,Car,Snowy,,,,51.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+710.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,345.0,No,No,Legs,Yes,Motorcycle,Sunny,2021-02-06 10:57:20.848169,2021-12-06 10:57:20.848169,4.0,42.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Female
+733.54,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,,No,Yes,Hips,,Truck,,2021-01-18 04:20:06.961392,2021-01-19 04:20:06.961392,1.0,53.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+1390.0,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,625.0,No,No,Legs,No,Truck,Rainy,2022-05-01 08:24:23.332666,2022-09-16 08:24:23.332666,0.0,30.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+620.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,125.0,No,No,Hips,No,Truck,Sunny,2020-08-06 18:02:31.230246,2020-12-20 18:02:31.230246,15.0,46.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+3065.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,794.35,No,Yes,Multiple,Yes,Car,Rainy,2020-03-28 14:49:14.030806,2021-03-25 14:49:14.030806,1.0,59.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Male
+2134.43,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,1972.25,0.0,0.0,0.0,0.0,11.55,0.0,0.0,895.0,179.0,0.0,0.0,38.88,510.0,Yes,Yes,Multiple,No,Motorcycle,Rainy,2023-10-03 05:08:30.582116,2024-03-05 05:08:30.582116,3.0,26.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Male
+887.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,495.0,0.0,0.0,0.0,29.7,621.0,No,No,Multiple,No,Car,Snowy,2023-03-08 23:26:17.835567,2023-08-17 23:26:17.835567,2.0,32.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Sunny,2023-09-12 11:28:27.461492,2023-10-01 11:28:27.461492,16.0,48.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,,0.0,0.0,0.0,,,Hips,No,Car,Sunny,2023-01-25 15:04:30.054010,,14.0,61.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+840.0,Other side pulled from parked position into the path of clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Sunny,2020-03-21 21:36:15.555111,2020-11-19 21:36:15.555111,9.0,44.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Female
+3554.0,Other side drove on wrong side of the road,J. 10 months,0.0,0.0,0.0,2217.0,0.0,0.0,0.0,0.0,147.0,0.0,0.0,,,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,,2023-10-21 14:44:02.928585,2024-02-27 14:44:02.928585,11.0,48.0,2.0,,Whiplash and minor bruises.,No,Yes,Other
+1454.3,Rear end - 3 car - Clt at front,A. 1 month,0.0,0.0,0.0,1112.05,0.0,0.0,300.0,0.0,422.95,0.0,0.0,240.0,48.0,0.0,0.0,187.8,3.95,Yes,No,Legs,Yes,Truck,Sunny,2022-01-17 02:03:00.036007,2022-07-12 02:03:00.036007,11.0,27.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Male
+1819.4,Rear end,E. 5 months,0.0,0.0,100.0,2230.0,0.0,0.0,870.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,11.4,0.0,235.0,No,Yes,Multiple,No,Truck,Snowy,2023-02-17 23:49:37.795559,2023-11-24 23:49:37.795559,19.0,68.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Other
+1170.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,761.94,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,0.0,No,Yes,Multiple,No,Truck,,2021-09-23 03:19:02.868573,2021-12-16 03:19:02.868573,6.0,,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+836.5,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,88.8,5.2,400.0,No,Yes,Legs,No,Motorcycle,Sunny,2023-09-27 08:57:13.646729,2024-05-06 08:57:13.646729,9.0,,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+1675.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,575.0,No,No,Hips,No,Car,Rainy,2021-02-09 16:03:33.162632,2021-12-31 16:03:33.162632,4.0,24.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Male
+,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-07-20 12:29:14.270854,2020-12-12 12:29:14.270854,19.0,77.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+1074.35,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,247.35,No,Yes,Arms,Yes,Car,Snowy,2023-10-14 00:29:22.912582,2024-01-28 00:29:22.912582,19.0,49.0,,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Other
+1400.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,100.0,0.0,0.0,53.9,256.0,Yes,No,Legs,Yes,Truck,Rainy,2022-10-09 20:36:20.596119,2023-08-30 20:36:20.596119,10.0,69.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Female
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2021-06-23 17:22:28.829765,2021-07-04 17:22:28.829765,1.0,28.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+1125.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.0,0.0,0.0,520.0,0.0,0.0,0.0,126.0,455.0,No,Yes,Hips,No,Car,Rainy,2023-12-07 08:14:18.411682,2024-05-21 08:14:18.411682,15.0,65.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Female
+895.0,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Snowy,2023-12-22 12:43:38.443688,2024-07-05 12:43:38.443688,11.0,62.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+4186.0,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,2796.0,0.0,0.0,0.0,,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,,Yes,Legs,Yes,Motorcycle,Rainy,2023-01-19 11:52:39.271854,2023-09-07 11:52:39.271854,15.0,45.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+795.0,Rear end,A. 1 month,0.0,0.0,0.0,555.0,,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Snowy,2020-10-01 05:49:42.116423,2021-02-25 05:49:42.116423,3.0,21.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+1165.0,Rear end,F. 6 months,0.0,0.0,0.0,1033.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2022-07-18 07:55:00.420084,2023-07-12 07:55:00.420084,1.0,65.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Other
+240.0,Other side pulled from parked position into the path of clt's vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Car,Snowy,2022-08-24 10:06:38.959791,2023-04-19 10:06:38.959791,9.0,62.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+2557.0,Rear end,D. 4 months,0.0,0.0,500.0,0.0,0.0,2143.27,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,310.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2021-08-21 17:16:25.877175,2021-09-03 17:16:25.877175,12.0,48.0,1.0,Swerved to avoid another vehicle.,,No,Yes,Female
+800.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,350.0,No,No,Legs,No,Motorcycle,Sunny,2021-05-24 22:24:56.459291,2021-12-29 22:24:56.459291,18.0,46.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Female
+1567.01,Other side overtook whilst clt was turning right,E. 5 months,0.0,0.0,0.0,1112.05,0.0,0.0,0.0,0.0,197.01,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2021-12-16 20:02:38.431686,2022-08-30 20:02:38.431686,14.0,50.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+520.0,Other side drove on wrong side of the road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,0.0,No,Yes,Hips,No,Car,Sunny,,2020-01-10 00:13:32.322464,0.0,71.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+2827.6,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,2116.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,3.6,350.0,Yes,Yes,Multiple,No,Truck,Sunny,2022-01-16 12:01:52.342468,2022-08-14 12:01:52.342468,16.0,21.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+845.0,Other side reversed into Clt's vehicle,D. 4 months,,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Rainy,2020-01-18 12:33:50.806161,2020-08-30 12:33:50.806161,19.0,76.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+1459.5,Other side pulled out of side road,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Legs,Yes,Truck,Rainy,2020-02-05 15:08:49.305861,2020-08-17 15:08:49.305861,3.0,64.0,,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+1181.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,,Yes,Car,Snowy,2021-09-05 21:45:45.909181,2022-03-20 21:45:45.909181,19.0,75.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+1138.8,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,1430.0,0.0,0.0,0.0,0.0,Yes,Yes,Hips,Yes,Truck,Snowy,2020-12-12 09:09:02.268453,2021-08-29 09:09:02.268453,8.0,43.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+880.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,60.0,406.0,No,No,Multiple,No,Truck,Snowy,2021-05-20 06:15:54.910982,2021-07-16 06:15:54.910982,5.0,70.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Other
+687.56,Rear end,E. 5 months,0.0,0.0,0.0,0.0,,214.23,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,,No,Yes,Multiple,No,Truck,Rainy,2023-09-17 10:38:02.856571,2024-01-08 10:38:02.856571,2.0,79.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Female
+1340.29,Rear end,G. 7 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,73.8,534.48,No,Yes,Multiple,Yes,Car,Snowy,2023-04-09 05:26:39.439887,2023-11-08 05:26:39.439887,1.0,48.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+740.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,182.0,No,Yes,Legs,Yes,,Snowy,2021-12-22 23:14:29.213842,2022-09-27 23:14:29.213842,17.0,48.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+2000.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,1725.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,191.7,6.0,No,Yes,Hips,No,Truck,Rainy,2022-05-15 22:52:35.671134,2023-01-14 22:52:35.671134,18.0,44.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+1675.0,Rear end,J. 10 months,0.0,0.0,450.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,285.0,No,Yes,Arms,Yes,Car,Snowy,2021-10-27 00:24:29.093818,2022-02-21 00:24:29.093818,6.0,42.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Female
+943.9,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,5.88,576.78,No,Yes,Legs,No,Motorcycle,Rainy,2023-04-08 15:25:31.746349,2023-07-04 15:25:31.746349,2.0,65.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Other
+1675.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,575.0,No,No,Multiple,Yes,Truck,Rainy,2022-05-15 15:52:01.824364,2023-02-02 15:52:01.824364,17.0,53.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+865.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,370.0,No,,Hips,No,Motorcycle,Sunny,2021-01-17 14:18:59.267853,2021-11-13 14:18:59.267853,19.0,66.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+260.0,Other side drove on wrong side of the road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Sunny,2020-02-14 23:26:52.402480,2020-06-06 23:26:52.402480,19.0,48.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Male
+815.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,783.65,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,409.35,No,No,Arms,No,Car,Rainy,2021-10-08 00:47:49.053810,2022-03-21 00:47:49.053810,18.0,60.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Other
+1012.5,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,,,,No,,Multiple,No,Motorcycle,Rainy,2022-08-08 01:35:03.540708,2022-08-12 01:35:03.540708,8.0,74.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Male
+1021.0,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Multiple,No,Motorcycle,Sunny,2021-01-03 13:51:54.622924,2021-05-01 13:51:54.622924,15.0,54.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Other
+715.0,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5,0.0,0.0,520.0,0.0,0.0,0.0,69.0,225.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2021-02-01 18:48:19.299859,2021-02-24 18:48:19.299859,5.0,75.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+1243.0,Rear end,C. 3 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,80.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2020-09-30 15:48:34.422884,2021-05-21 15:48:34.422884,11.0,62.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Female
+1167.0,Rear end,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,168.0,0.0,0.0,0.0,,Yes,No,Legs,Yes,Truck,Snowy,2020-05-29 05:48:15.699139,2020-08-27 05:48:15.699139,5.0,61.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Other
+748.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,228.0,No,Yes,Hips,No,Truck,Rainy,2020-02-24 07:44:55.499099,2020-11-05 07:44:55.499099,12.0,78.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+1540.0,Rear end,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,175.0,No,Yes,Arms,No,Motorcycle,Sunny,2021-06-22 20:20:47.289457,2021-09-22 20:20:47.289457,4.0,76.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+1875.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,1208.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Multiple,Yes,Truck,Snowy,2021-05-12 02:00:07.201440,2021-10-14 02:00:07.201440,12.0,40.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+2258.0,Rear end - 3 car - Clt at front,I. 9 months,0.0,0.0,0.0,2016.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,244.0,Yes,Yes,Hips,Yes,Motorcycle,Sunny,2020-04-23 21:40:00.240048,2021-02-24 21:40:00.240048,19.0,52.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Male
+1330.0,Other side reversed into Clt's vehicle,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,10.0,0.0,No,No,Legs,Yes,Motorcycle,Sunny,2020-07-10 00:08:55.787157,2020-11-02 00:08:55.787157,6.0,21.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+994.8,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.8,150.0,No,No,Arms,Yes,Car,Rainy,2023-06-01 09:09:19.551910,2023-12-25 09:09:19.551910,11.0,45.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2022-04-03 21:31:21.736347,2022-06-23 21:31:21.736347,3.0,59.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+845.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Legs,Yes,Truck,Sunny,2020-08-10 20:10:25.085017,2020-11-21 20:10:25.085017,4.0,58.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+1487.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,27.0,620.0,No,No,Arms,No,Motorcycle,Rainy,2022-09-19 23:57:59.015803,2022-12-08 23:57:59.015803,15.0,59.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Female
+,Rear end,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,314.35,,,Legs,Yes,Car,Rainy,2023-11-04 15:11:07.573514,2024-02-15 15:11:07.573514,3.0,30.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Female
+1714.0,Rear end,F. 6 months,0.0,0.0,0.0,740.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,630.0,No,Yes,Arms,Yes,Truck,Rainy,2022-08-12 03:42:57.395479,2023-04-09 03:42:57.395479,7.0,18.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Female
+520.0,,E. 5 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Snowy,2020-11-12 21:12:03.744748,2021-08-04 21:12:03.744748,15.0,29.0,1.0,,Concussion and bruised ribs.,No,Yes,Other
+895.0,Rear end,,0.0,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,,,Hips,No,Car,Snowy,2021-07-17 09:08:10.418083,2021-08-19 09:08:10.418083,7.0,60.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+942.5,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,76.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-07-02 01:08:33.462692,2023-08-06 01:08:33.462692,16.0,70.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,400.0,No,,Arms,No,Car,Snowy,2021-07-27 07:27:21.208241,2022-04-02 07:27:21.208241,13.0,57.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+620.94,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,73.11,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,60.33,0.0,No,Yes,Legs,No,Car,Snowy,2021-06-05 07:46:56.483296,2021-07-25 07:46:56.483296,11.0,43.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Male
+4755.0,Other,O. 15 months,0.0,0.0,0.0,1102.85,0.0,0.0,60.0,0.0,0.0,0.0,0.0,2040.0,0.0,2320.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Sunny,2021-10-26 03:22:47.553510,2022-08-02 03:22:47.553510,2.0,72.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+708.76,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,23.76,235.0,No,Yes,Hips,No,Car,Rainy,2022-02-23 11:15:12.422484,2022-10-23 11:15:12.422484,19.0,63.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Male
+1217.79,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.99,0.0,0.0,520.0,0.0,0.0,52.8,0.0,630.0,No,Yes,Multiple,No,Motorcycle,Rainy,2022-05-16 19:54:17.211442,2022-10-15 19:54:17.211442,1.0,63.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+2235.0,Rear end,O. 15 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,110.0,No,Yes,Legs,No,Motorcycle,Snowy,2023-08-28 06:59:07.429485,2024-01-22 06:59:07.429485,12.0,69.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Male
+769.5,Rear end,E. 5 months,0.0,0.0,0.0,1064.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,163.0,No,Yes,Arms,No,Motorcycle,Rainy,2020-07-27 19:43:20.440088,2020-09-04 19:43:20.440088,10.0,40.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2020-03-11 16:16:30.918183,2020-09-16 16:16:30.918183,11.0,66.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+2712.17,,F. 6 months,0.0,0.0,0.0,1750.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,184.54,620.0,No,Yes,Multiple,Yes,Truck,Rainy,2023-02-17 09:48:30.102020,2023-03-14 09:48:30.102020,17.0,39.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Male
+2767.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,1810.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,12.0,0.0,615.0,No,Yes,Arms,No,Motorcycle,Snowy,2021-03-20 19:19:08.629725,2021-11-19 19:19:08.629725,8.0,74.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Female
+895.0,Other side reversed into clt's stationary vehicle,H. 8 months,0.0,,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,Yes,,Snowy,2020-09-01 10:52:09.745949,2021-04-12 10:52:09.745949,6.0,68.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+606.0,Rear end,A. 1 month,0.0,0.0,0.0,220.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,,No,Yes,,,Motorcycle,,2022-08-28 12:14:32.814562,2023-04-15 12:14:32.814562,5.0,69.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+690.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,1960.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Hips,No,Motorcycle,Sunny,2022-05-12 10:45:49.509901,2022-10-12 10:45:49.509901,13.0,73.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Rainy,2021-01-27 19:38:43.904780,2021-11-11 19:38:43.904780,17.0,45.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Female
+496.66,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,560.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,36.66,0.0,0.0,3.0,No,Yes,Hips,No,Motorcycle,Sunny,2021-12-08 15:46:50.722144,2022-03-26 15:46:50.722144,13.0,70.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+644.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,495.0,99.0,0.0,0.0,0.0,50.0,Yes,No,,Yes,Truck,Snowy,2021-08-15 07:04:01.248249,2021-09-17 07:04:01.248249,4.0,70.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Other
+1118.9,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.9,0.0,0.0,520.0,0.0,0.0,0.0,22.44,574.0,No,Yes,Legs,Yes,Car,Sunny,2021-02-22 05:27:48.573714,2022-02-20 05:27:48.573714,19.0,34.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+1020.96,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,104.76,518.0,No,No,Legs,No,Motorcycle,Rainy,2020-03-10 19:14:49.377875,2020-06-29 19:14:49.377875,12.0,23.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Male
+1150.9,Rear end,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,21.9,234.0,No,Yes,Hips,Yes,Car,Rainy,2020-02-10 07:17:50.854170,2020-06-10 07:17:50.854170,0.0,31.0,1.0,,Fractured arm and leg.,Yes,No,Other
+2195.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,3273.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2022-07-21 13:01:12.734546,2022-08-06 13:01:12.734546,11.0,67.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Male
+830.0,Rear end,F. 6 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Hips,No,,Snowy,2020-05-02 08:56:21.796359,2020-12-15 08:56:21.796359,18.0,34.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+520.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2020-03-29 11:50:55.571114,2020-04-09 11:50:55.571114,9.0,55.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+3590.0,Other side pulled on to roundabout,L. 12 months,0.0,0.0,0.0,2200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Snowy,2021-09-23 10:19:36.715343,2022-04-14 10:19:36.715343,4.0,22.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Female
+800.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,180.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,76.8,300.0,No,Yes,Arms,No,Motorcycle,Sunny,2021-08-14 17:02:53.554710,2022-03-04 17:02:53.554710,19.0,30.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+2500.0,Rear end,J. 10 months,0.0,0.0,0.0,1410.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Rainy,2023-04-13 00:33:59.447889,2023-07-20 00:33:59.447889,5.0,65.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+2795.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2021-10-12 02:55:42.908581,2022-02-05 02:55:42.908581,11.0,70.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Female
+735.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Arms,No,Car,Rainy,2020-12-07 02:58:53.026605,2021-09-14 02:58:53.026605,2.0,26.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+265.0,Other side pulled out of side road,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,260.0,0.0,0.0,0.0,0.0,5.0,No,Yes,Hips,Yes,Truck,Rainy,2020-05-01 04:54:06.409281,2021-04-15 04:54:06.409281,13.0,61.0,1.0,,Concussion and bruised ribs.,No,No,Other
+,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,120.0,0.0,0.0,520.0,0.0,0.0,0.0,10.8,70.0,,Yes,Hips,No,Motorcycle,Rainy,2022-03-03 08:30:26.285257,2022-10-21 08:30:26.285257,3.0,59.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+788.28,Rear end,E. 5 months,0.0,0.0,0.0,1820.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,43.2,0.0,400.0,No,No,Legs,No,Truck,Sunny,2020-02-13 12:24:03.168633,2020-06-03 12:24:03.168633,16.0,43.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+260.0,Other side changed lanes and collided with clt's vehicle,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2021-12-14 18:58:41.504300,2022-12-01 18:58:41.504300,16.0,30.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Female
+1265.0,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,20.0,405.0,No,No,Legs,Yes,Car,Sunny,2020-09-01 17:52:43.592718,2020-09-13 17:52:43.592718,13.0,36.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Other
+1440.0,Rear end,H. 8 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,350.0,No,No,Legs,Yes,Truck,Rainy,2021-05-10 07:56:44.120824,2021-05-31 07:56:44.120824,14.0,65.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Female
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,1200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Sunny,2023-06-21 05:47:41.132226,2023-10-26 05:47:41.132226,6.0,34.0,1.0,Swerved to avoid another vehicle.,,Yes,No,Other
+2308.6,Rear end,N. 14 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2040.0,0.0,0.0,0.0,33.3,243.89,No,No,Arms,No,Truck,Sunny,2021-07-11 19:57:27.329465,2022-04-22 19:57:27.329465,3.0,33.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+520.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2021-02-19 00:21:36.259251,2021-06-20 00:21:36.259251,16.0,47.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+885.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,25.2,406.0,No,Yes,Multiple,No,Truck,Snowy,2023-12-23 16:45:53.830766,2024-04-25 16:45:53.830766,5.0,49.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+4840.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4000.0,520.0,0.0,0.0,0.0,0.0,320.0,No,Yes,Hips,Yes,Truck,Sunny,2022-05-26 11:12:54.154830,2022-06-28 11:12:54.154830,10.0,31.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+730.0,Rear end,E. 5 months,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,520.0,,0.0,0.0,0.0,290.0,No,Yes,Arms,No,Motorcycle,Sunny,,2021-07-09 12:24:37.735547,11.0,65.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+1059.5,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,49.5,0.0,0.0,0.0,515.0,Yes,No,Multiple,No,Motorcycle,Rainy,2023-03-24 10:56:11.714342,2023-06-09 10:56:11.714342,14.0,73.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+870.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Hips,No,Motorcycle,Sunny,2021-03-20 19:19:08.629725,2022-01-11 19:19:08.629725,11.0,32.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Female
+688.4300000000001,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,8.43,160.0,,Yes,Hips,Yes,,Sunny,2023-02-06 14:27:37.771554,2024-01-02 14:27:37.771554,10.0,29.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+2279.0,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,264.0,0.0,0.0,0.0,625.0,Yes,Yes,Hips,No,Car,Snowy,2020-06-10 05:11:23.416683,2020-08-12 05:11:23.416683,16.0,54.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Female
+1060.65,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,84.0,1034.98,No,Yes,Multiple,No,Truck,Rainy,2023-01-01 23:18:48.465693,2023-09-28 23:18:48.465693,7.0,28.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+240.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Snowy,2022-12-08 03:30:51.490298,2023-07-12 03:30:51.490298,11.0,22.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+2840.0,Other side pulled out of side road,I. 9 months,0.0,0.0,400.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Legs,No,Car,Snowy,2020-05-20 11:31:20.296059,2020-11-26 11:31:20.296059,8.0,73.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+616.59,Other,D. 4 months,0.0,0.0,0.0,120.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,1.59,0.0,No,No,Hips,No,Motorcycle,Snowy,2020-06-23 22:37:54.214842,2020-09-06 22:37:54.214842,10.0,73.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+555.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,60.0,No,No,Multiple,Yes,Truck,Sunny,2020-12-05 22:56:37.639527,2021-05-28 22:56:37.639527,2.0,28.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Female
+984.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,464.0,No,Yes,Multiple,No,Car,Snowy,2023-09-28 05:58:55.187037,2023-12-04 05:58:55.187037,6.0,51.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,No,Motorcycle,Snowy,2023-05-20 23:47:19.527905,2023-08-21 23:47:19.527905,2.0,36.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Female
+1358.3,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,15.6,32.7,625.0,No,Yes,Legs,No,Motorcycle,Rainy,2020-10-19 22:25:48.309661,2020-12-11 22:25:48.309661,15.0,43.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+861.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,168.0,0.0,0.0,25.2,0.0,Yes,No,Multiple,Yes,,Rainy,2021-08-01 20:38:04.296859,2021-11-03 20:38:04.296859,9.0,43.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Rainy,2021-04-22 05:21:45.621124,2021-08-13 05:21:45.621124,6.0,34.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+995.0,Other,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Rainy,,2023-01-09 07:10:38.767753,19.0,48.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Other
+910.86,,F. 6 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,40.86,461.0,No,Yes,Multiple,Yes,Car,Snowy,2020-07-19 08:26:58.883776,2021-03-26 08:26:58.883776,14.0,36.0,4.0,,Fractured arm and leg.,No,Yes,Other
+3428.0,Rear end,R. 18 months,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3005.0,0.0,0.0,0.0,523.2,322.0,No,No,Legs,Yes,Car,Rainy,2022-09-24 02:05:52.870574,2023-04-21 02:05:52.870574,9.0,61.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Female
+845.0,Other side reversed into Clt's vehicle,D. 4 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Sunny,2021-05-28 17:32:16.467293,2021-11-26 17:32:16.467293,11.0,37.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+260.0,Other,B. 2 months,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,,0.0,0.0,,Yes,Hips,No,Car,Snowy,2023-12-12 21:25:01.500300,,17.0,76.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Male
+852.2,Other side drove on wrong side of the road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,7.2,501.75,No,No,Legs,No,Motorcycle,Rainy,2021-12-25 07:18:59.987997,2022-10-02 07:18:59.987997,8.0,40.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,,Truck,Snowy,2021-01-25 11:34:13.130626,2021-06-29 11:34:13.130626,8.0,42.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+853.98,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.48,518.0,No,Yes,Multiple,Yes,Car,Rainy,2020-02-03 07:04:18.531706,2020-04-26 07:04:18.531706,3.0,45.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+908.55,Other side reversed into clt's stationary vehicle,E. 5 months,0.0,0.0,0.0,1033.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,25.31,125.0,No,Yes,Legs,No,Motorcycle,Snowy,2023-03-01 16:12:11.666333,2023-09-03 16:12:11.666333,4.0,54.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Female
+1039.0,Other side reversed into clt's stationary vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,183.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2020-06-14 21:20:24.964992,2021-05-29 21:20:24.964992,6.0,29.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Male
+2120.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2021-03-29 13:36:04.032806,2021-08-15 13:36:04.032806,6.0,65.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+1390.0,Rear end,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Hips,No,Car,Rainy,2022-02-24 08:16:53.962792,2022-04-20 08:16:53.962792,10.0,18.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Male
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Truck,Snowy,2023-09-02 13:09:16.671334,2023-09-21 13:09:16.671334,9.0,19.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2022-09-02 11:24:08.209641,2023-08-16 11:24:08.209641,10.0,27.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+1455.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,1182.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Sunny,2022-05-22 16:05:34.146829,2023-05-03 16:05:34.146829,17.0,51.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Female
+800.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,305.0,No,No,Arms,No,Truck,Snowy,2022-07-09 06:37:31.170234,2023-04-02 06:37:31.170234,11.0,49.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+1660.0,Rear end,C. 3 months,0.0,0.0,0.0,1400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2022-10-27 02:09:37.555511,2023-03-18 02:09:37.555511,15.0,42.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Other
+1390.0,Rear end - 3 car - Clt at front,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,250.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2022-05-30 13:20:48.009601,2023-04-11 13:20:48.009601,3.0,27.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Male
+1574.2,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,200.0,1112.0,0.0,0.0,0.0,0.0,80.0,0.0,0.0,520.0,0.0,0.0,79.2,0.0,545.0,No,Yes,Multiple,No,Truck,Snowy,2020-08-27 18:43:08.197639,2021-02-07 18:43:08.197639,16.0,72.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Female
+2790.0,Other side reversed into clt's stationary vehicle,J. 10 months,0.0,0.0,0.0,1400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2022-11-09 19:36:08.353670,2023-07-19 19:36:08.353670,16.0,67.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Other
+495.0,Other side pulled on to roundabout,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Snowy,2023-01-11 00:36:17.715543,2023-08-31 00:36:17.715543,4.0,18.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Female
+781.2,Rear end - 3 car - Clt at front,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,16.2,0.0,350.0,No,,Hips,No,Truck,Snowy,2021-04-14 15:07:05.605121,2022-02-05 15:07:05.605121,12.0,,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Other
+1465.0,Other side drove on wrong side of the road,H. 8 months,0.0,0.0,0.0,560.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,,0.0,0.0,,270.0,,Yes,Arms,Yes,Truck,Sunny,2020-06-12 06:15:20.344068,2021-06-10 06:15:20.344068,2.0,54.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Female
+1975.0,Rear end,C. 3 months,0.0,0.0,0.0,1610.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,125.0,No,No,Hips,No,Motorcycle,Rainy,2023-04-01 15:11:59.423884,2023-05-31 15:11:59.423884,16.0,29.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+1468.0,Other,H. 8 months,0.0,0.0,0.0,530.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,283.0,No,Yes,Multiple,No,Truck,Sunny,2023-07-19 06:41:50.422084,2023-08-10 06:41:50.422084,10.0,66.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+2045.0,Rear end,D. 4 months,0.0,0.0,0.0,1846.5,0.0,660.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,18.0,50.0,No,Yes,Legs,No,Motorcycle,Snowy,2020-06-27 10:44:40.376075,2020-10-31 10:44:40.376075,0.0,74.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Rainy,2021-09-23 17:20:10.562112,2022-01-04 17:20:10.562112,17.0,68.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+2988.6,Rear end,G. 7 months,0.0,0.0,0.0,1890.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,33.6,0.0,460.0,Yes,Yes,Arms,No,Truck,Rainy,2021-07-03 08:41:05.773154,2022-02-09 08:41:05.773154,16.0,35.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+1400.9,Other side pulled out of side road,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,8.4,10.0,No,Yes,Hips,No,Truck,Rainy,2023-05-02 14:11:47.181436,2023-08-20 14:11:47.181436,8.0,47.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2023-02-02 05:19:10.070014,2023-04-01 05:19:10.070014,19.0,30.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Other
+973.12,Rear end,H. 8 months,0.0,,0.0,0.0,0.0,75.12,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,0.0,3.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2022-12-18 22:51:43.820764,2023-02-21 22:51:43.820764,6.0,71.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+2134.43,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,1972.25,0.0,0.0,0.0,0.0,11.55,0.0,0.0,895.0,179.0,0.0,0.0,38.88,510.0,Yes,Yes,Arms,No,Motorcycle,,,2021-07-11 03:04:04.128825,,20.0,3.0,,Whiplash and minor bruises.,Yes,Yes,Other
+4755.0,Other,O. 15 months,0.0,0.0,0.0,1102.85,0.0,0.0,60.0,0.0,0.0,0.0,0.0,2040.0,0.0,,0.0,0.0,0.0,No,No,Multiple,No,Truck,Rainy,2021-05-29 07:33:24.160832,2021-11-03 07:33:24.160832,15.0,38.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Snowy,2021-05-09 03:54:28.733746,2021-07-24 03:54:28.733746,6.0,59.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+1255.23,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,360.23,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,57.49,No,Yes,Hips,No,Motorcycle,Sunny,2020-12-29 14:42:19.227845,2021-01-17 14:42:19.227845,12.0,31.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,0.0,0.0,No,Yes,Legs,No,Car,Sunny,2020-02-06 12:10:30.846169,2020-08-14 12:10:30.846169,12.0,57.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Female
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,2023-10-19 20:40:39.847969,2024-06-25 20:40:39.847969,14.0,27.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Female
+2120.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Rainy,2020-12-16 04:16:22.276455,2021-12-11 04:16:22.276455,16.0,19.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+774.0,Rear end,F. 6 months,0.0,0.0,0.0,1142.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,0.0,Yes,Yes,Arms,Yes,Motorcycle,Snowy,2022-03-02 18:29:18.591718,2023-02-28 18:29:18.591718,16.0,77.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Other
+937.27,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.67,0.0,0.0,0.0,495.0,0.0,0.0,0.0,25.8,462.0,No,No,Hips,No,Motorcycle,Snowy,2022-10-03 10:23:55.967193,2022-12-21 10:23:55.967193,18.0,62.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2020-10-16 03:18:28.301660,2021-01-08 03:18:28.301660,9.0,54.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+1390.0,Rear end - Clt pushed into next vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2022-06-14 03:49:00.348069,2022-12-03 03:49:00.348069,1.0,28.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+240.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Sunny,2023-12-17 20:34:36.895379,2024-07-16 20:34:36.895379,13.0,73.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Female
+3490.5,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,2440.0,0.0,0.0,0.0,0.0,378.0,0.0,0.0,895.0,0.0,0.0,50.4,0.0,1225.0,No,Yes,Multiple,No,Motorcycle,Rainy,2021-03-20 05:18:00.936187,2021-08-16 05:18:00.936187,2.0,18.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2023-10-12 20:27:07.525505,2023-10-22 20:27:07.525505,6.0,43.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+852.2,Other side drove on wrong side of the road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,7.2,501.75,No,No,Multiple,No,Car,Snowy,2021-12-30 13:29:09.229845,2022-01-29 13:29:09.229845,10.0,59.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+1039.7,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,183.7,No,Yes,Legs,No,Car,Rainy,2022-01-19 03:06:56.963392,2022-10-26 03:06:56.963392,16.0,79.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+1911.99,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,299.63,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,15.36,853.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2023-10-30 23:02:06.025205,2023-12-24 23:02:06.025205,14.0,76.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+1419.5,Rear end,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,99.5,No,No,Legs,No,Truck,Snowy,2022-01-28 11:25:00.060012,2023-01-23 11:25:00.060012,18.0,78.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+538.5,Rear end,E. 5 months,0.0,0.0,600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,104.4,0.0,No,No,Arms,Yes,Car,Rainy,2020-02-03 14:04:52.378475,2020-06-09 14:04:52.378475,10.0,77.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+1133.0,"Other side opened their door, hitting clt's vehicle",G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2020-10-28 02:41:36.019203,2021-04-26 02:41:36.019203,14.0,30.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Male
+1175.0,Rear end,F. 6 months,0.0,0.0,0.0,680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Motorcycle,Sunny,2020-12-28 10:40:03.840768,2021-08-17 10:40:03.840768,14.0,45.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+1344.44,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,24.44,0.0,425.0,No,Yes,Arms,No,Truck,Snowy,2021-05-23 18:22:41.072214,2021-08-24 18:22:41.072214,5.0,53.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Male
+937.27,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.67,0.0,0.0,0.0,495.0,0.0,0.0,0.0,25.8,462.0,No,No,Multiple,No,Truck,Snowy,2022-11-28 12:12:14.546909,2022-12-06 12:12:14.546909,14.0,38.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,,No,Yes,Hips,,,Sunny,2023-07-08 18:21:31.938387,2024-03-11 18:21:31.938387,8.0,79.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+2548.27,Rear end,E. 5 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,123.27,0.0,0.0,520.0,0.0,0.0,0.0,0.0,295.0,No,Yes,Hips,Yes,,Sunny,2023-04-09 12:27:13.286657,2024-03-05 12:27:13.286657,4.0,27.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+1871.2,Rear end,H. 8 months,0.0,0.0,,1082.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,46.2,0.0,410.0,,Yes,Hips,Yes,Car,Sunny,2021-07-30 19:34:07.369473,2022-02-11 19:34:07.369473,18.0,29.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+590.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,20.97,150.0,No,Yes,Legs,No,Motorcycle,Rainy,2023-05-06 16:19:41.036207,2023-10-16 16:19:41.036207,4.0,63.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+1145.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Arms,Yes,Car,Snowy,2023-07-09 22:23:47.325465,2023-08-18 22:23:47.325465,12.0,44.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Other
+1105.8,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,37.8,0.0,573.0,No,No,Multiple,Yes,Motorcycle,Sunny,2023-12-01 05:02:27.629525,2024-08-11 05:02:27.629525,17.0,20.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Male
+1647.5700000000002,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,633.57,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,390.0,Yes,Yes,Multiple,No,Car,Snowy,2020-02-17 14:31:57.023404,2020-05-12 14:31:57.023404,19.0,45.0,,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+1074.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Legs,Yes,Truck,Snowy,2022-08-24 17:07:12.806561,2023-05-23 17:07:12.806561,16.0,19.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Male
+1796.0,Other,G. 7 months,0.0,0.0,0.0,1771.0,0.0,0.0,0.0,0.0,200.0,0.0,0.0,840.0,0.0,0.0,0.0,56.0,0.0,No,No,Multiple,Yes,Truck,Snowy,2022-09-16 11:51:12.854570,2022-12-03 11:51:12.854570,14.0,45.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+2840.0,Other side pulled out of side road,I. 9 months,0.0,0.0,400.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Multiple,No,Motorcycle,Sunny,2020-10-17 14:21:17.535507,2021-05-18 14:21:17.535507,13.0,68.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,242.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2021-07-02 04:38:50.386077,2022-05-02 04:38:50.386077,15.0,48.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Female
+240.0,Rear end - 3 car - Clt at front,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Sunny,2021-06-16 10:08:22.660532,2022-02-26 10:08:22.660532,3.0,60.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Other
+1443.21,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,574.21,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,518.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2023-12-03 20:07:32.250450,2024-03-03 20:07:32.250450,16.0,38.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Female
+1360.0,Other side turned across Clt's path,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,465.0,No,Yes,Multiple,No,Truck,Sunny,2021-11-01 06:34:38.335667,2022-05-13 06:34:38.335667,19.0,24.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+1032.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,192.0,No,No,Hips,Yes,Motorcycle,Sunny,2022-08-11 06:41:15.855171,2023-04-21 06:41:15.855171,13.0,67.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Male
+1290.0,Rear end,F. 6 months,0.0,0.0,0.0,455.0,0.0,0.0,,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,35.28,454.35,No,Yes,Legs,Yes,Truck,Snowy,2021-01-28 16:40:25.445089,2021-11-02 16:40:25.445089,17.0,,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+864.0,Other,,0.0,0.0,0.0,1281.85,0.0,0.0,40.0,0.0,,0.0,0.0,,179.0,0.0,0.0,0.0,50.0,Yes,Yes,Arms,No,Car,Snowy,2021-06-10 13:57:05.725145,2021-10-31 13:57:05.725145,5.0,48.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+880.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,60.0,406.0,No,No,Multiple,No,Car,Sunny,2021-10-19 10:09:49.077815,2022-06-20 10:09:49.077815,7.0,31.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Female
+1150.9,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,21.9,234.0,No,Yes,Arms,No,Truck,Sunny,2022-04-26 23:15:55.631126,2022-11-24 23:15:55.631126,8.0,56.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+2640.2,Other side pulled out of side road,N. 14 months,0.0,0.0,0.0,556.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,10.2,366.0,No,Yes,Multiple,No,Truck,Sunny,2021-04-10 05:58:37.903580,2021-10-22 05:58:37.903580,0.0,71.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+495.0,Other side collided with Clt's parked vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Sunny,2020-05-06 04:03:41.804360,2021-01-31 04:03:41.804360,12.0,79.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+5165.7,Rear end,T. 20 months,0.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,4345.0,0.0,0.0,0.0,134.46,804.0,No,Yes,Legs,Yes,Truck,Rainy,2023-01-19 18:53:13.118623,2023-12-14 18:53:13.118623,2.0,56.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+1385.0,,G. 7 months,0.0,0.0,0.0,,0.0,0.0,180.0,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,0.0,,,Yes,Multiple,Yes,Car,Sunny,2023-12-07 01:13:44.564912,2023-12-26 01:13:44.564912,5.0,72.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Other
+935.32,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.4,No,Yes,Multiple,No,Motorcycle,Rainy,2020-11-08 12:03:36.043208,2020-12-18 12:03:36.043208,16.0,26.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Female
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Motorcycle,Snowy,2023-09-05 11:14:55.139027,2023-12-12 11:14:55.139027,7.0,40.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+2548.27,Rear end,E. 5 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,123.27,0.0,0.0,520.0,0.0,0.0,0.0,0.0,295.0,No,Yes,Multiple,Yes,Car,Rainy,2020-02-03 07:04:18.531706,2020-02-07 07:04:18.531706,5.0,79.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Female
+620.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Legs,No,Motorcycle,Snowy,2021-02-24 06:31:45.501100,2021-03-29 06:31:45.501100,15.0,29.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+2419.84,Other side drove on wrong side of the road,,0.0,0.0,0.0,1580.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,2.34,325.0,No,Yes,Legs,No,Car,Rainy,2021-06-06 18:49:45.717143,2022-04-01 18:49:45.717143,0.0,46.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Other
+1220.0,Rear end,E. 5 months,0.0,0.0,0.0,1680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,85.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2020-10-17 07:20:43.688737,2021-03-31 07:20:43.688737,9.0,55.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Other
+977.02,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,57.02,462.0,No,Yes,Legs,No,Truck,Sunny,2023-06-15 02:35:50.350070,2023-07-12 02:35:50.350070,17.0,75.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+1818.94,Rear end,A. 1 month,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,7.8,0.0,801.14,No,No,Multiple,Yes,Truck,Rainy,2023-10-13 17:28:49.065813,2024-04-03 17:28:49.065813,13.0,73.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Female
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2023-10-24 05:49:07.549509,2024-09-25 05:49:07.549509,4.0,56.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+1135.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,1740.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,350.0,No,No,Hips,No,Car,Snowy,2020-10-06 11:59:51.358271,2021-01-27 11:59:51.358271,16.0,39.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+2280.0,Rear end - Clt pushed into next vehicle,J. 10 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,246.0,No,Yes,Hips,Yes,Car,Snowy,2020-01-28 17:53:35.443088,2020-05-02 17:53:35.443088,13.0,21.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+1829.2,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,51.84,574.0,No,Yes,Multiple,No,Motorcycle,Rainy,2021-09-21 02:15:05.941188,2022-08-06 02:15:05.941188,17.0,65.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+2685.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,1972.25,,0.0,0.0,0.0,584.99,0.0,0.0,520.0,0.0,0.0,0.0,0.0,765.0,No,Yes,Arms,No,,Snowy,,2021-02-21 06:55:57.311462,3.0,24.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+730.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,290.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2022-12-11 22:38:11.498299,2023-04-24 22:38:11.498299,19.0,77.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Female
+1600.0,Rear end,D. 4 months,0.0,0.0,0.0,930.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,175.0,No,No,Legs,Yes,Car,Rainy,2021-05-11 18:59:33.354670,2021-09-12 18:59:33.354670,1.0,57.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2020-07-22 13:33:11.198239,2021-07-08 13:33:11.198239,6.0,25.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Male
+520.0,Other side changed lanes on a roundabout colliding with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Rainy,2020-01-10 01:17:29.249849,2020-11-28 01:17:29.249849,6.0,77.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Male
+1301.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2023-11-24 11:49:29.153830,2024-11-11 11:49:29.153830,6.0,77.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Truck,Rainy,2020-06-09 01:09:08.029605,2020-10-03 01:09:08.029605,12.0,69.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+895.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Snowy,2021-10-18 13:08:07.537507,2021-10-31 13:08:07.537507,18.0,75.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+895.0,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2021-07-06 20:47:51.934386,2022-05-22 20:47:51.934386,5.0,74.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Other
+1770.0,Rear end - Clt pushed into next vehicle,I. 9 months,0.0,0.0,0.0,1000.0,0.0,,0.0,0.0,20.0,,0.0,895.0,,0.0,0.0,0.0,565.0,No,Yes,Legs,No,Truck,Sunny,2022-04-07 16:38:41.744348,,19.0,52.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,,0.0,No,Yes,Hips,Yes,,Rainy,2021-05-12 09:00:41.048209,2021-12-06 09:00:41.048209,16.0,26.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Female
+2890.0,Rear end,K. 11 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2020-12-03 14:52:06.865373,2021-02-26 14:52:06.865373,17.0,68.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Other
+795.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,650.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,300.0,No,No,Legs,Yes,Car,Sunny,2020-04-10 04:13:29.441888,2020-12-14 04:13:29.441888,0.0,30.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Female
+950.0,Other side drove on wrong side of the road,D. 4 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Arms,Yes,Car,Sunny,2023-04-04 06:17:04.044808,2023-05-30 06:17:04.044808,12.0,56.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+520.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Snowy,2022-10-08 02:32:57.515503,2023-03-29 02:32:57.515503,18.0,37.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+1779.0,Rear end,K. 11 months,0.0,0.0,250.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,264.0,0.0,0.0,3.0,50.0,Yes,,Legs,Yes,Motorcycle,Rainy,2021-10-18 13:08:07.537507,2022-03-08 13:08:07.537507,15.0,38.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Other
+1500.0,Other,G. 7 months,0.0,0.0,0.0,1187.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Hips,Yes,Car,Sunny,2020-10-02 16:52:31.350270,2021-02-11 16:52:31.350270,9.0,78.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+800.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,555.45,0.0,0.0,0.0,0.0,,0.0,0.0,520.0,,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Snowy,2023-02-07 04:28:45.465093,2023-08-27 04:28:45.465093,,64.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Sunny,2021-08-21 17:16:25.877175,2022-06-06 17:16:25.877175,9.0,36.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+820.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,400.0,No,No,Hips,No,Motorcycle,Rainy,2022-08-17 09:53:06.637327,2023-06-22 09:53:06.637327,13.0,19.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+1560.76,Rear end,E. 5 months,0.0,0.0,400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,140.76,625.0,No,Yes,Arms,No,Motorcycle,,2022-04-13 19:50:32.526505,2023-04-05 19:50:32.526505,8.0,61.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+2548.27,Rear end,E. 5 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,123.27,0.0,0.0,520.0,0.0,0.0,0.0,0.0,295.0,No,Yes,Legs,No,Motorcycle,Sunny,2021-01-23 10:30:16.203240,2022-01-03 10:30:16.203240,10.0,57.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+2115.0,Rear end,H. 8 months,0.0,0.0,0.0,1851.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,150.0,No,No,Legs,Yes,Truck,Sunny,2021-08-07 23:49:55.079015,2022-02-02 23:49:55.079015,2.0,47.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,,0.0,,0.0,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,,0.0,0.0,No,Yes,Legs,No,Car,Sunny,2022-11-21 18:59:16.071214,2022-12-20 18:59:16.071214,7.0,40.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Male
+240.0,Other side pulled on to roundabout,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,,Arms,No,Car,,2021-06-05 21:48:04.176835,2022-04-08 21:48:04.176835,11.0,72.0,,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Car,Snowy,2021-10-17 23:06:59.843968,,2.0,57.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2022-12-08 10:31:25.337067,2023-01-13 10:31:25.337067,6.0,30.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+1835.0,Other,H. 8 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Hips,No,Truck,Snowy,2021-09-21 09:15:39.787957,2022-01-08 09:15:39.787957,13.0,50.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+2000.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,1105.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2022-10-13 01:42:32.910582,2023-08-25 01:42:32.910582,6.0,49.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2022-06-01 00:23:37.243448,2022-10-25 00:23:37.243448,6.0,45.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+808.0,Other,E. 5 months,0.0,0.0,0.0,115.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Multiple,Yes,Car,Sunny,2020-01-15 21:28:46.185237,2020-10-17 21:28:46.185237,13.0,41.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+1015.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,520.0,0.0,0.0,31.2,0.0,455.0,No,Yes,Hips,Yes,Truck,Rainy,2021-09-22 13:17:55.175035,2022-02-15 13:17:55.175035,11.0,59.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+1691.0,Other side drove on wrong side of the road,G. 7 months,0.0,,0.0,575.0,0.0,,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,455.0,No,Yes,Arms,No,Truck,Snowy,2023-07-06 03:16:27.317463,2023-12-21 03:16:27.317463,0.0,45.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+1058.55,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,210.0,,0.0,495.0,0.0,0.0,7.55,0.0,485.0,No,No,Hips,Yes,Car,Sunny,2022-12-02 07:19:34.554910,2023-08-16 07:19:34.554910,4.0,47.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Male
+,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,483.0,0.0,0.0,0.0,0.0,165.0,0.0,0.0,,0.0,,0.0,,,No,Yes,Arms,Yes,Car,Snowy,2023-02-17 09:48:30.102020,2023-11-19 09:48:30.102020,10.0,79.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Female
+560.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,70.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2021-09-08 19:51:24.376875,2021-12-04 19:51:24.376875,0.0,70.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Female
+2115.0,Rear end,H. 8 months,0.0,0.0,0.0,1851.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,150.0,No,No,Arms,No,Motorcycle,Rainy,2022-02-04 11:38:32.382476,2022-07-08 11:38:32.382476,12.0,73.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-08-24 18:52:21.268253,2024-06-04 18:52:21.268253,16.0,58.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Male
+1819.4,Rear end,E. 5 months,0.0,0.0,100.0,2230.0,0.0,0.0,870.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,11.4,0.0,235.0,No,Yes,Hips,Yes,Car,Rainy,2023-10-13 03:27:41.372274,2024-08-23 03:27:41.372274,2.0,46.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+1271.5,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,37.26,0.0,345.0,No,Yes,Multiple,Yes,Car,Snowy,2021-01-30 10:43:48.525705,2021-12-15 10:43:48.525705,9.0,51.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Female
+1850.0,Rear end,G. 7 months,0.0,0.0,0.0,680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Legs,No,Motorcycle,Snowy,2023-01-01 09:17:40.772154,2023-04-09 09:17:40.772154,18.0,68.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Other
+1491.0,Rear end,I. 9 months,0.0,0.0,0.0,483.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,113.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,Yes,Motorcycle,Snowy,2020-03-02 00:57:53.974794,2020-09-29 00:57:53.974794,6.0,39.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+2771.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,2170.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Hips,Yes,Truck,Snowy,2020-03-10 05:13:41.684336,2020-04-27 05:13:41.684336,19.0,42.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+1390.0,Rear end - Clt pushed into next vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2020-04-07 20:08:58.667733,2021-02-19 20:08:58.667733,2.0,31.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+2627.7,Rear end,H. 8 months,0.0,0.0,0.0,1820.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,693.7,No,Yes,Arms,Yes,Motorcycle,Snowy,2023-01-25 22:05:03.900780,2023-10-26 22:05:03.900780,11.0,27.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Other
+2108.99,Other side pulled out of side road,H. 8 months,,0.0,0.0,0.0,0.0,,0.0,0.0,419.0,0.0,0.0,895.0,,0.0,0.0,115.0,775.0,No,Yes,Legs,Yes,,Rainy,,2021-10-16 06:49:02.508501,9.0,27.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+570.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,260.0,0.0,0.0,0.0,10.0,400.0,No,,Hips,No,Truck,,2020-05-25 17:41:29.537907,2021-02-01 17:41:29.537907,11.0,25.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2021-04-01 18:42:16.347269,2022-01-09 18:42:16.347269,14.0,31.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+846.5,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,236.93,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,1.5,238.0,No,No,Hips,Yes,Truck,Snowy,2020-08-18 17:25:38.947789,2021-05-07 17:25:38.947789,5.0,62.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Female
+995.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,,0.0,No,No,Legs,No,Truck,,,2023-07-19 21:16:57.563512,18.0,55.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+525.25,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,5.25,0.0,No,Yes,Arms,Yes,Truck,Snowy,2022-06-30 19:21:09.613922,2022-07-31 19:21:09.613922,4.0,49.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Male
+1895.0,Other,,0.0,0.0,0.0,3006.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Hips,Yes,Car,,2020-11-27 11:40:16.083216,2021-03-12 11:40:16.083216,,70.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+3198.26,Rear end,E. 5 months,0.0,0.0,0.0,1700.0,0.0,2746.26,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,0.0,0.0,,Yes,Multiple,Yes,Car,Rainy,2023-02-25 21:04:51.658331,2024-02-10 21:04:51.658331,1.0,79.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+1508.8,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,118.8,No,Yes,Hips,No,Motorcycle,Snowy,2021-11-16 18:04:32.214442,2022-09-24 18:04:32.214442,18.0,62.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+1271.5,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,37.26,0.0,345.0,No,Yes,Hips,No,Truck,Rainy,2023-06-16 20:39:13.430686,2023-12-02 20:39:13.430686,18.0,49.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Male
+1095.0,Other side drove on wrong side of the road,G. 7 months,0.0,0.0,0.0,556.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Hips,Yes,Car,Rainy,2020-02-13 12:24:03.168633,2020-10-06 12:24:03.168633,3.0,20.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+937.27,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.67,0.0,0.0,0.0,495.0,0.0,0.0,0.0,25.8,462.0,No,No,Hips,Yes,Motorcycle,Sunny,2022-07-25 08:08:32.742548,2023-04-25 08:08:32.742548,19.0,77.0,3.0,Lost control on a snowy road.,,No,No,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2022-10-27 09:10:11.402280,2023-10-05 09:10:11.402280,4.0,37.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+520.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2021-04-19 07:16:07.153430,2021-12-05 07:16:07.153430,6.0,78.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+495.0,Rear end - 3 car - Clt at front,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Sunny,2022-01-21 18:12:01.584316,2022-02-13 18:12:01.584316,3.0,30.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Male
+,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,182.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,,2023-12-28 05:37:53.494698,10.0,72.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+640.0,Other side pulled out of side road,C. 3 months,0.0,0.0,0.0,1647.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Truck,Snowy,2023-05-31 19:08:11.858371,2024-03-07 19:08:11.858371,2.0,40.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Female
+1152.4,Rear end,G. 7 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,0.0,257.4,No,Yes,Legs,No,Motorcycle,Sunny,,2022-08-24 02:52:32.790558,,36.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+945.0,Other side pulled out of side road,G. 7 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,,No,Yes,Arms,Yes,Truck,Rainy,2021-09-07 15:49:08.989797,2022-04-05 15:49:08.989797,19.0,33.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Male
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Rainy,2023-02-26 18:06:33.198639,2023-11-06 18:06:33.198639,14.0,53.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Other
+2195.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,3273.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2023-12-06 04:12:03.024604,2024-04-17 04:12:03.024604,17.0,52.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Other
+1445.0,Rear end,H. 8 months,0.0,0.0,0.0,1903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Rainy,2021-10-22 22:16:35.239047,2022-07-23 22:16:35.239047,15.0,64.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+4840.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4000.0,520.0,0.0,0.0,0.0,0.0,320.0,No,Yes,Arms,Yes,Truck,Snowy,2021-04-15 19:09:20.992198,2021-07-30 19:09:20.992198,15.0,64.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Female
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,447.52,0.0,No,Yes,Hips,Yes,Truck,Rainy,2023-01-19 04:52:05.425085,2023-09-08 04:52:05.425085,9.0,67.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+285.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,45.0,No,Yes,Arms,Yes,Car,Rainy,2023-10-10 05:22:02.904580,2023-11-12 05:22:02.904580,0.0,71.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Male
+260.0,Other side collided with Clt's parked vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2020-06-17 12:25:29.585917,2020-09-04 12:25:29.585917,10.0,24.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+1390.0,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,625.0,No,No,Hips,No,Motorcycle,Rainy,2020-05-03 05:58:03.336667,2020-06-07 05:58:03.336667,16.0,69.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Other
+2831.53,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1851.5,0.0,,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,,No,Yes,Multiple,Yes,Car,Snowy,2022-03-17 22:58:38.623724,2022-07-05 22:58:38.623724,14.0,54.0,4.0,Swerved to avoid another vehicle.,,Yes,No,Female
+795.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,650.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,300.0,No,No,Hips,No,Car,Rainy,2020-12-24 22:33:17.679535,2021-11-10 22:33:17.679535,6.0,25.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+3516.0,Other side pulled out of side road,R. 18 months,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3005.0,0.0,0.0,0.0,0.0,511.0,No,No,Multiple,No,Car,Rainy,2022-07-16 13:51:37.339467,2022-09-17 13:51:37.339467,5.0,42.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+644.75,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,99.0,0.0,0.0,0.0,182.0,Yes,No,Hips,No,Motorcycle,Snowy,2020-08-07 22:04:46.617323,2021-07-01 22:04:46.617323,14.0,40.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+1024.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,1610.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,99.0,0.0,No,No,Legs,Yes,Motorcycle,Sunny,2023-11-15 03:31:26.057211,2024-09-07 03:31:26.057211,14.0,27.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+723.0,Other side reversed into Clt's vehicle,B. 2 months,,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,,,No,Yes,Hips,No,Motorcycle,Snowy,2020-07-19 15:27:32.730546,2021-01-13 15:27:32.730546,6.0,47.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Male
+770.0,Other side changed lanes on a roundabout colliding with clt's vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,300.0,No,No,Legs,Yes,Car,Sunny,2020-07-29 20:47:17.367473,2021-07-28 20:47:17.367473,2.0,50.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+916.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2020-08-05 21:00:49.689937,2021-03-25 21:00:49.689937,13.0,28.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+1320.0,,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,,0.0,0.0,0.0,,,Hips,Yes,Truck,Sunny,2023-06-20 15:46:33.438687,2023-10-02 15:46:33.438687,8.0,79.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Sunny,2022-03-03 01:29:52.438487,2022-12-22 01:29:52.438487,2.0,52.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+1215.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,375.0,No,No,Multiple,Yes,Motorcycle,Sunny,2020-07-25 11:38:49.665933,2020-08-29 11:38:49.665933,5.0,44.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+1883.1,Rear end,H. 8 months,0.0,0.0,0.0,903.0,0.0,0.0,0.0,0.0,32.34,0.0,0.0,895.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Arms,Yes,Car,Rainy,2020-05-06 18:04:49.497899,2020-11-16 18:04:49.497899,19.0,70.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Sunny,2023-11-25 01:50:36.847369,2024-05-17 01:50:36.847369,8.0,20.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Female
+1549.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,29.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,,Yes,Legs,No,Truck,Sunny,2020-05-21 01:32:27.989597,2020-08-31 01:32:27.989597,0.0,64.0,,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Other
+1515.0,Other side overtook and hit Clt when pulling in,J. 10 months,0.0,0.0,0.0,25.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Hips,No,Car,Rainy,2022-10-24 11:04:32.934586,2023-09-13 11:04:32.934586,8.0,66.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+1570.4,Rear end,E. 5 months,0.0,0.0,0.0,680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,5.4,565.0,No,Yes,Multiple,No,Car,Snowy,2021-03-23 17:24:47.097419,2022-01-10 17:24:47.097419,11.0,67.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Other
+1437.5,Other side reversed into clt's stationary vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Hips,Yes,Truck,Snowy,2020-02-19 08:35:20.104020,2020-05-14 08:35:20.104020,3.0,25.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Female
+1208.14,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,688.14,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2020-10-24 21:35:23.704740,2021-05-13 21:35:23.704740,15.0,72.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+595.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,90.0,No,Yes,Legs,Yes,Truck,Rainy,2023-12-20 18:40:15.363072,2024-06-10 18:40:15.363072,4.0,30.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+1516.2,Rear end,F. 6 months,0.0,0.0,0.0,1444.4,0.0,0.0,250.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,1.2,238.0,No,Yes,Multiple,Yes,Truck,Rainy,2020-09-04 08:57:48.213642,2020-10-03 08:57:48.213642,16.0,59.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Snowy,2020-07-21 23:32:03.504700,2021-05-14 23:32:03.504700,16.0,20.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+,,F. 6 months,0.0,0.0,0.0,500.0,0.0,0.0,90.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,10.5,126.0,Yes,Yes,Arms,Yes,Car,Sunny,2022-09-04 05:27:31.290258,2022-10-30 05:27:31.290258,5.0,37.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Female
+1995.3,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,1260.0,0.0,0.0,0.0,0.0,696.6,0.0,0.0,260.0,0.0,0.0,0.0,38.7,0.0,No,Yes,Legs,No,Car,Snowy,2023-03-18 00:43:47.085417,2023-04-03 00:43:47.085417,14.0,63.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Male
+1025.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,505.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2020-01-10 01:17:29.249849,2020-05-29 01:17:29.249849,0.0,62.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Female
+988.0,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,132.0,No,Yes,Legs,No,Truck,Sunny,2020-02-21 09:39:17.031406,2020-04-27 09:39:17.031406,12.0,52.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+1105.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,610.0,No,No,Legs,Yes,Car,Sunny,2022-05-15 15:52:01.824364,2022-10-09 15:52:01.824364,15.0,30.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Male
+1421.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,747.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,50.0,Yes,Yes,Legs,,Motorcycle,Rainy,,2022-02-13 19:51:24.376875,1.0,37.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+520.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2023-02-08 22:32:08.545709,2023-04-18 22:32:08.545709,18.0,41.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+1430.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,959.0,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Snowy,2021-03-14 16:07:17.847569,2021-04-06 16:07:17.847569,1.0,74.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+945.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2021-11-07 02:45:55.271054,2022-05-16 02:45:55.271054,11.0,72.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+3610.94,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,2189.82,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,46.12,0.0,480.0,No,Yes,Hips,No,Truck,Rainy,2022-02-11 04:51:30.858171,2022-10-17 04:51:30.858171,11.0,26.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Female
+2890.0,Rear end,K. 11 months,0.0,0.0,0.0,1500.0,0.0,,0.0,0.0,0.0,0.0,0.0,1390.0,,0.0,0.0,0.0,0.0,No,,Multiple,Yes,Motorcycle,Rainy,2020-01-19 23:36:40.040008,2020-11-23 23:36:40.040008,,47.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+1399.1,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,684.1,No,Yes,Legs,No,Truck,Rainy,2023-05-19 19:45:04.140828,2023-10-11 19:45:04.140828,11.0,42.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+895.0,Rear end,,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,,495.0,0.0,0.0,,0.0,400.0,No,No,Arms,No,Truck,Sunny,2021-07-17 02:07:36.571314,2022-05-18 02:07:36.571314,10.0,33.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+735.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Multiple,No,Car,Rainy,2020-06-19 13:29:26.513302,2020-12-13 13:29:26.513302,1.0,72.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Female
+2168.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,370.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2021-05-25 12:26:04.152830,2021-12-06 12:26:04.152830,0.0,72.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+3445.0,Rear end - Clt pushed into next vehicle,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,1022.0,No,Yes,Multiple,Yes,Truck,Sunny,2021-10-05 16:43:18.279655,2021-10-18 16:43:18.279655,3.0,25.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Female
+4415.0,Rear end,H. 8 months,0.0,0.0,0.0,3000.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.8,575.0,No,No,Multiple,Yes,Truck,Rainy,2022-11-26 04:07:43.772754,2023-11-25 04:07:43.772754,8.0,61.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Male
+879.0,Other,E. 5 months,0.0,0.0,0.0,1186.8,0.0,0.0,0.0,0.0,0.0,0.0,259.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2021-07-06 13:47:18.087617,2021-12-19 13:47:18.087617,6.0,75.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Male
+1020.0,Rear end,E. 5 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2021-12-10 09:50:13.802760,2022-05-09 09:50:13.802760,,45.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+1220.35,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,120.0,742.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2022-06-22 08:04:48.057611,2023-05-29 08:04:48.057611,19.0,29.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Female
+1965.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Snowy,2020-10-11 04:08:52.906581,2020-11-25 04:08:52.906581,13.0,68.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2023-03-21 05:49:59.399879,2023-09-11 05:49:59.399879,0.0,41.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+2575.0,Rear end,M. 13 months,0.0,0.0,0.0,959.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2022-02-10 14:50:23.164632,2022-07-27 14:50:23.164632,4.0,66.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+1469.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,,895.0,0.0,0.0,0.0,0.0,,No,Yes,Hips,No,Motorcycle,,2021-02-25 03:33:27.041408,2021-09-10 03:33:27.041408,12.0,46.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Female
+4201.530000000001,Rear end,,0.0,0.0,0.0,1725.0,0.0,0.0,0.0,0.0,1035.0,0.0,0.0,1320.0,0.0,0.0,0.0,146.52,955.0,No,,Multiple,No,Motorcycle,Snowy,2023-06-18 07:42:02.664532,2024-01-10 07:42:02.664532,5.0,32.0,,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+780.0,Other side turned across Clt's path,B. 2 months,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2021-03-07 08:53:11.678335,2021-05-28 08:53:11.678335,16.0,71.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+2695.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,3200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2020-08-12 21:14:22.012402,2020-10-19 21:14:22.012402,14.0,35.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+580.0,Other,F. 6 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,60.0,No,Yes,Multiple,No,Truck,Snowy,2020-03-30 01:52:03.264652,2020-07-05 01:52:03.264652,6.0,24.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Female
+1341.0,Rear end - 3 car - Clt at front,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,197.0,0.0,0.0,0.0,396.0,Yes,Yes,Arms,Yes,Car,Rainy,2020-01-01 07:00:33.846769,2020-06-16 07:00:33.846769,7.0,30.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+520.0,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Snowy,2020-03-19 20:32:18.627725,2020-06-04 20:32:18.627725,1.0,36.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+260.0,Rear end,B. 2 months,,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,,Sunny,2023-08-11 22:27:32.010402,2024-04-04 22:27:32.010402,17.0,65.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+1430.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,110.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Car,Snowy,2022-07-27 16:13:03.516703,2023-02-08 16:13:03.516703,6.0,60.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+7608.58,,H. 8 months,0.0,0.0,,1120.05,0.0,5543.58,60.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-09-09 01:06:49.761952,2021-06-27 01:06:49.761952,19.0,75.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Female
+834.5,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,99.0,0.0,0.0,0.0,406.0,Yes,No,Hips,No,Truck,Snowy,2022-03-10 22:45:06.301260,2022-07-24 22:45:06.301260,15.0,22.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Male
+920.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,425.0,No,No,Hips,No,Truck,Snowy,2022-05-01 01:23:49.485897,2023-03-05 01:23:49.485897,18.0,43.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Other
+2733.0,,G. 7 months,0.0,0.0,0.0,2978.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,0.0,508.0,No,Yes,Multiple,Yes,Truck,Sunny,2020-01-31 22:59:47.757551,2020-11-22 22:59:47.757551,8.0,19.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+807.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,4.35,455.0,No,No,Arms,No,Motorcycle,Sunny,2022-07-14 05:47:06.565313,2022-08-19 05:47:06.565313,11.0,50.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+,,,0.0,0.0,,0.0,0.0,0.0,110.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Sunny,2023-09-18 07:39:44.396879,2024-05-23 07:39:44.396879,13.0,65.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+1487.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,27.0,620.0,No,No,Arms,Yes,Motorcycle,Snowy,2022-01-29 01:26:07.753550,2022-10-10 01:26:07.753550,6.0,54.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+240.0,Other side reversed into clt's stationary vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Sunny,2021-10-14 18:00:47.529505,2022-05-16 18:00:47.529505,1.0,42.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+1720.0,Other side drove on wrong side of the road,F. 6 months,0.0,0.0,0.0,2000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Rainy,2022-03-28 11:18:57.107421,2022-12-05 11:18:57.107421,16.0,42.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+982.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2021-03-17 07:12:22.468493,2021-05-26 07:12:22.468493,10.0,56.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+728.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,173.0,0.0,0.0,60.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Snowy,2020-01-06 06:10:09.241848,2020-08-27 06:10:09.241848,17.0,47.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Other
+690.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,4.5,235.0,No,Yes,Hips,No,Car,Rainy,2020-09-07 14:04:00.528105,2021-08-02 14:04:00.528105,11.0,58.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Female
+1320.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Snowy,2021-02-17 13:18:47.025405,2021-03-05 13:18:47.025405,2.0,21.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+520.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Rainy,2022-06-04 12:30:23.404680,2022-11-25 12:30:23.404680,13.0,36.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+1615.0,Other,H. 8 months,0.0,0.0,0.0,110.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,665.0,No,No,Hips,No,Motorcycle,Snowy,2023-08-08 17:21:19.695939,2024-02-11 17:21:19.695939,14.0,44.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+925.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,60.6,400.0,No,No,Arms,Yes,,Snowy,2021-02-20 11:24:25.493098,2021-12-11 11:24:25.493098,18.0,69.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Male
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2022-01-09 04:47:46.173234,2022-08-22 04:47:46.173234,9.0,64.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+729.0,Rear end,E. 5 months,0.0,0.0,0.0,1680.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,133.0,Yes,Yes,Legs,No,Car,Sunny,2023-10-10 05:22:02.904580,2024-07-10 05:22:02.904580,8.0,56.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+320.0,Other side reversed into Clt's vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1692.54,0.0,0.0,240.0,0.0,0.0,0.0,0.0,180.0,No,No,Arms,No,Truck,Rainy,2023-10-19 13:40:06.001200,2023-10-31 13:40:06.001200,9.0,41.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+1430.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,959.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2023-11-21 06:43:16.839367,2024-09-26 06:43:16.839367,19.0,67.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+240.0,Other side changed lanes on a roundabout colliding with clt's vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Car,Rainy,2023-03-25 07:57:53.254650,2023-10-30 07:57:53.254650,3.0,54.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+1984.0,Other,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,264.0,0.0,0.0,0.0,330.0,Yes,Yes,Legs,No,Truck,Rainy,2023-04-16 05:40:11.762352,2023-04-17 05:40:11.762352,18.0,70.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+260.0,Other side drove on wrong side of the road,B. 2 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Rainy,,2022-02-01 13:58:32.142428,9.0,78.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Other
+260.0,Other,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2021-12-17 03:03:12.278455,2022-09-20 03:03:12.278455,16.0,42.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Male
+1495.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,2020.0,0.0,0.0,60.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Legs,No,Car,Snowy,2022-04-11 04:45:27.905581,2022-08-18 04:45:27.905581,11.0,,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+1020.0,Rear end,F. 6 months,0.0,0.0,450.0,,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,No,Motorcycle,Sunny,2022-07-24 04:06:17.355471,2022-10-25 04:06:17.355471,0.0,78.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Male
+570.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2021-06-14 09:04:25.733146,2021-07-23 09:04:25.733146,10.0,48.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+1355.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,460.0,No,Yes,Legs,No,Truck,Rainy,2021-06-03 20:44:07.249449,2022-04-15 20:44:07.249449,,62.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Female
+1742.0,Rear end,L. 12 months,0.0,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,182.0,No,Yes,Multiple,No,Truck,Sunny,2023-04-13 07:34:33.294658,2023-09-19 07:34:33.294658,0.0,52.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+1996.65,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1810.0,0.0,,,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,10.05,574.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2020-07-24 14:37:08.125625,2021-01-26 14:37:08.125625,0.0,45.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Female
+1410.0,Rear end,G. 7 months,0.0,0.0,0.0,1120.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,170.0,No,No,Hips,Yes,Truck,Rainy,2021-01-26 15:36:28.517703,2022-01-14 15:36:28.517703,15.0,55.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Other
+3060.0,Other side pulled from parked position into the path of clt's vehicle,G. 7 months,0.0,0.0,0.0,2230.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,575.0,No,Yes,Arms,No,Car,Snowy,2022-10-08 02:32:57.515503,2023-06-21 02:32:57.515503,6.0,75.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Male
+1695.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Arms,No,Truck,Snowy,2022-11-14 11:45:09.901980,2023-07-11 11:45:09.901980,9.0,61.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+1027.7,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,2.7,238.0,Yes,Yes,Multiple,Yes,Truck,Sunny,2020-12-04 11:53:48.405681,2021-03-18 11:53:48.405681,15.0,70.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Other
+520.0,Other side changed lanes on a roundabout colliding with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,,,Snowy,2023-09-13 01:29:35.155031,2023-10-12 01:29:35.155031,0.0,67.0,,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Male
+1820.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2022-12-23 00:59:37.675535,2023-03-22 00:59:37.675535,8.0,67.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Other
+1105.8,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,37.8,0.0,573.0,No,No,Legs,Yes,Truck,Sunny,2022-10-01 02:19:25.193038,2022-11-21 02:19:25.193038,5.0,21.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+1620.0,Rear end,E. 5 months,0.0,0.0,0.0,2090.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Rainy,2022-11-05 17:28:14.498899,2023-11-04 17:28:14.498899,14.0,45.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+865.0,Rear end,D. 4 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,370.0,No,No,Multiple,Yes,Car,Sunny,,2022-11-13 02:58:35.743148,3.0,69.0,,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+2345.0,Other,I. 9 months,0.0,0.0,0.0,2100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,Yes,Truck,Sunny,2021-05-15 21:07:27.209441,2022-03-25 21:07:27.209441,14.0,48.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+2280.0,Rear end - Clt pushed into next vehicle,J. 10 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,246.0,No,Yes,Multiple,Yes,Car,Sunny,2021-10-17 02:05:18.303660,2021-11-22 02:05:18.303660,9.0,40.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Female
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Rainy,2021-05-29 00:32:50.314062,2022-03-09 00:32:50.314062,15.0,31.0,3.0,Side collision at an intersection.,,Yes,Yes,Male
+2174.0,Rear end,G. 7 months,0.0,0.0,0.0,1562.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,173.0,0.0,0.0,0.0,0.0,Yes,Yes,Legs,No,Car,Rainy,2023-03-16 06:40:24.004800,2023-06-25 06:40:24.004800,12.0,45.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Female
+1819.4,Rear end,E. 5 months,0.0,0.0,100.0,2230.0,0.0,,870.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,11.4,0.0,235.0,No,Yes,Arms,Yes,Car,Rainy,2021-06-08 12:53:08.797759,2021-09-23 12:53:08.797759,18.0,31.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+994.82,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,59.82,440.0,No,No,Multiple,No,Motorcycle,Rainy,2022-02-20 06:09:00.108021,2023-01-31 06:09:00.108021,19.0,18.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+1142.3,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,32.3,325.0,No,Yes,Multiple,No,Car,Sunny,2022-08-03 02:25:28.145629,2023-05-21 02:25:28.145629,3.0,60.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Female
+350.0,Rear end - Clt pushed into next vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,220.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Snowy,2020-01-13 13:24:15.411082,2020-12-27 13:24:15.411082,19.0,49.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+950.5,Other side drove on wrong side of the road,F. 6 months,0.0,0.0,0.0,500.0,0.0,0.0,90.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,10.5,126.0,Yes,Yes,Multiple,No,Car,Sunny,2020-05-22 12:35:17.223444,2020-09-04 12:35:17.223444,15.0,71.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+1051.5,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,13.5,518.0,No,Yes,Multiple,No,Truck,Rainy,2023-06-02 20:12:08.785757,2024-01-09 20:12:08.785757,10.0,76.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+992.2,Rear end,F. 6 months,0.0,0.0,0.0,490.0,,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,7.2,0.0,No,,Multiple,Yes,Car,Snowy,2022-07-08 09:35:49.629925,2022-09-22 09:35:49.629925,14.0,78.0,,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+994.68,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,4.68,125.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2023-10-11 09:24:18.291658,2024-05-25 09:24:18.291658,10.0,58.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,0.0,No,,Arms,Yes,Car,Snowy,2020-10-06 04:59:17.511502,2020-12-29 04:59:17.511502,10.0,35.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+1324.2,Other side changed lanes on a roundabout colliding with clt's vehicle,I. 9 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.2,0.0,No,No,Hips,Yes,Car,Rainy,2021-09-09 09:52:32.070414,2021-11-24 09:52:32.070414,2.0,77.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Female
+2777.5,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,2685.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,333.0,No,No,Arms,No,Motorcycle,Snowy,2020-11-21 15:28:59.147829,2021-07-28 15:28:59.147829,16.0,22.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Other
+1516.99,Other,H. 8 months,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,94.99,0.0,0.0,895.0,0.0,151.0,0.0,0.0,126.0,No,Yes,Legs,Yes,Car,Snowy,2021-06-04 03:44:41.096219,2022-02-14 03:44:41.096219,4.0,59.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Rainy,2022-04-05 08:34:10.970194,2022-05-25 08:34:10.970194,12.0,32.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Other
+260.0,Other,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,2020-07-08 20:06:40.400080,2021-06-29 20:06:40.400080,9.0,76.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+1371.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,574.0,Yes,Yes,Hips,Yes,Car,Sunny,,2022-01-27 21:38:16.539307,4.0,59.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Other
+685.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,850.0,0.0,0.0,0.0,,520.0,0.0,0.0,,,238.0,No,Yes,Multiple,Yes,Car,Snowy,2020-04-09 07:11:47.901580,2020-09-14 07:11:47.901580,11.0,33.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+757.0,Other side changed lanes on a roundabout colliding with clt's vehicle,E. 5 months,0.0,0.0,0.0,260.0,0.0,,0.0,0.0,0.0,,,495.0,0.0,0.0,0.0,2.0,0.0,No,,Legs,Yes,Motorcycle,Sunny,2022-05-11 13:44:07.969593,2023-04-04 13:44:07.969593,7.0,53.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Male
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2022-09-12 16:43:52.846569,2023-05-03 16:43:52.846569,11.0,53.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,,2022-03-02 01:59:15.351070,15.0,57.0,3.0,Hit a deer on the highway.,,No,Yes,Female
+1592.8,Rear end,F. 6 months,0.0,0.0,550.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,70.8,0.0,575.0,No,Yes,Arms,No,Truck,Rainy,2022-03-14 03:51:18.615723,2022-10-23 03:51:18.615723,1.0,47.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+1395.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,955.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Rainy,2021-09-18 04:09:27.473494,2022-01-17 04:09:27.473494,2.0,55.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+460.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,200.0,No,Yes,Hips,No,Car,Sunny,2021-01-30 10:43:48.525705,2021-12-06 10:43:48.525705,,40.0,2.0,,Sprained ankle and wrist.,Yes,No,Male
+1720.0,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,1200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Rainy,2022-08-14 18:48:02.016403,2023-07-07 18:48:02.016403,16.0,28.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+1694.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,742.0,Yes,Yes,Arms,,Car,Rainy,2020-05-10 20:12:43.352670,2021-04-16 20:12:43.352670,1.0,77.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+520.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2023-05-03 11:13:28.721744,2024-04-25 11:13:28.721744,11.0,42.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+3020.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4600.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2023-12-28 15:55:29.225845,2024-04-13 15:55:29.225845,16.0,62.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+1070.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,375.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2023-09-18 07:39:44.396879,2024-05-16 07:39:44.396879,5.0,68.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+640.6,Rear end - 3 car - Clt at front,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,182.0,No,No,Legs,Yes,Car,Sunny,2020-08-20 18:29:35.875175,2020-09-17 18:29:35.875175,16.0,60.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+1573.81,Rear end,F. 6 months,0.0,0.0,0.0,1112.05,0.0,128.21,0.0,0.0,50.0,0.0,0.0,520.0,,0.0,,,468.99,No,Yes,Hips,No,Motorcycle,Sunny,2022-10-18 00:52:08.305661,2023-04-28 00:52:08.305661,1.0,19.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+520.0,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Rainy,2023-12-05 00:09:47.637527,2024-08-10 00:09:47.637527,7.0,52.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Other
+240.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,,0.0,,0.0,,No,Hips,Yes,Car,Rainy,2021-09-29 06:30:53.650730,2022-09-28 06:30:53.650730,13.0,64.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Female
+760.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,290.0,Yes,Yes,Hips,No,Truck,Sunny,2022-08-29 09:16:14.354870,2023-03-30 09:16:14.354870,5.0,41.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+650.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Arms,No,Truck,Snowy,2020-07-07 09:03:51.166233,2020-07-28 09:03:51.166233,8.0,30.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+1189.0,Other,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,405.0,No,Yes,Legs,Yes,Car,Sunny,2020-07-28 23:45:35.827165,2020-12-30 23:45:35.827165,0.0,74.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Female
+847.5,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Hips,Yes,Car,Snowy,2021-03-20 12:18:34.782956,2021-04-16 12:18:34.782956,4.0,59.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Other
+628.0,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,483.0,0.0,0.0,0.0,0.0,165.0,0.0,0.0,260.0,0.0,0.0,0.0,10.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2020-11-08 05:03:02.196439,2021-01-24 05:03:02.196439,6.0,54.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+1825.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,1187.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Arms,Yes,Car,Rainy,2023-10-17 05:35:35.227045,2024-08-18 05:35:35.227045,8.0,73.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+590.0,,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,20.97,150.0,,Yes,Legs,No,Car,Sunny,2023-11-28 06:56:49.161832,2024-01-24 06:56:49.161832,13.0,47.0,3.0,,Minor cuts and scrapes.,Yes,Yes,Female
+2170.0,Rear end,J. 10 months,0.0,0.0,0.0,,0.0,1600.0,790.0,0.0,,0.0,0.0,1320.0,0.0,62.97,0.0,0.0,0.0,No,No,Hips,No,Car,Rainy,,2024-01-24 01:56:39.799960,8.0,28.0,,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,,0.0,No,No,Arms,Yes,Truck,Snowy,2022-06-17 01:54:38.815763,2022-11-29 01:54:38.815763,3.0,,3.0,,Whiplash and minor bruises.,Yes,No,Female
+449.25,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,189.25,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2023-01-16 20:47:34.650930,2023-03-21 20:47:34.650930,19.0,77.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+1152.4,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,257.4,No,Yes,Multiple,Yes,Motorcycle,Sunny,2022-09-08 14:35:58.991798,2022-10-26 14:35:58.991798,14.0,63.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Male
+723.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,19.2,345.0,No,Yes,Arms,No,Car,Snowy,2021-09-21 16:16:13.634726,2022-02-18 16:16:13.634726,3.0,45.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Female
+805.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.0,0.0,0.0,520.0,,0.0,0.0,12.6,375.0,,Yes,,Yes,Truck,Sunny,2023-08-23 07:49:32.034406,2024-01-28 07:49:32.034406,2.0,46.0,4.0,Rear-ended at a stoplight.,,Yes,Yes,Female
+2645.0,Rear end,G. 7 months,0.0,0.0,0.0,1950.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,465.0,No,Yes,Legs,No,Car,Sunny,2021-11-06 12:44:47.577515,2022-04-11 12:44:47.577515,13.0,74.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+2603.46,Rear end,G. 7 months,0.0,0.0,0.0,1540.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,895.0,0.0,0.0,0.0,17.46,135.0,No,Yes,Legs,Yes,Truck,Snowy,2022-10-20 15:57:12.926585,2023-03-20 15:57:12.926585,8.0,69.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+1110.0,Other side pulled out of side road,B. 2 months,0.0,0.0,0.0,1117.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2023-04-23 19:54:51.778355,2023-12-04 19:54:51.778355,18.0,32.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Other
+1425.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,180.0,No,Yes,Hips,Yes,Truck,Snowy,2020-07-03 13:56:31.158231,2021-03-20 13:56:31.158231,5.0,62.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+890.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,43.9,370.0,No,No,Hips,No,Truck,Snowy,2021-10-04 05:40:29.045809,2022-06-17 05:40:29.045809,2.0,75.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Other
+1597.0,Rear end,F. 6 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2022-06-13 13:47:52.654530,2022-08-13 13:47:52.654530,17.0,20.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Female
+1670.0,Rear end,G. 7 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,270.0,No,No,Legs,No,Car,Snowy,2022-04-29 21:21:34.098819,2023-04-16 21:21:34.098819,15.0,26.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+1220.0,Rear end,F. 6 months,0.0,0.0,0.0,900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,10.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2020-06-30 15:50:52.690538,2021-03-17 15:50:52.690538,,25.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Other
+1121.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,226.0,No,Yes,Hips,No,Motorcycle,Rainy,2020-04-15 03:23:04.836967,2021-03-02 03:23:04.836967,1.0,64.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+1895.0,Other,G. 7 months,0.0,0.0,0.0,2105.0,0.0,0.0,0.0,0.0,198.66,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,No,Truck,Sunny,2021-11-22 07:15:15.303060,2022-05-03 07:15:15.303060,1.0,72.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+931.12,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.12,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2020-03-02 00:57:53.974794,2021-02-14 00:57:53.974794,9.0,50.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2022-10-09 13:35:46.749349,2022-11-09 13:35:46.749349,14.0,51.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Female
+994.8,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.8,150.0,No,No,Multiple,No,Truck,Sunny,2020-09-28 14:44:37.495499,2020-12-08 14:44:37.495499,2.0,26.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Female
+970.0,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,76.0,No,Yes,Legs,No,Truck,Snowy,2023-08-31 19:05:53.590718,2023-09-02 19:05:53.590718,7.0,70.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+260.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2023-02-25 14:04:17.811562,2023-04-16 14:04:17.811562,17.0,34.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+652.24,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.24,126.0,No,Yes,Legs,No,Car,Sunny,2023-10-03 12:09:04.428885,2024-02-15 12:09:04.428885,10.0,58.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Male
+1860.0,Other side turned across Clt's path,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,30.0,0.0,574.0,No,Yes,Multiple,Yes,Truck,Sunny,2023-11-23 00:46:39.919984,2024-04-17 00:46:39.919984,6.0,18.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Other
+1135.0,,G. 7 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,,0.0,0.0,0.0,240.0,No,Yes,Arms,Yes,Car,Rainy,2020-09-13 03:14:43.616723,2021-03-11 03:14:43.616723,18.0,57.0,1.0,Hit a deer on the highway.,,No,Yes,Male
+926.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Arms,Yes,Truck,Rainy,2023-11-01 10:04:55.259051,2024-07-22 10:04:55.259051,6.0,22.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Rainy,2021-12-30 20:29:43.076615,2022-11-06 20:29:43.076615,1.0,47.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Other
+1885.56,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,40.56,1005.0,No,Yes,Multiple,No,Car,Sunny,2022-01-06 20:43:15.399079,2022-07-29 20:43:15.399079,5.0,28.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Male
+913.6,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,58.6,Yes,Yes,Multiple,Yes,Motorcycle,Sunny,2023-06-24 17:54:27.293458,2024-04-18 17:54:27.293458,4.0,45.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+520.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Rainy,2020-04-24 04:40:34.086817,2020-10-28 04:40:34.086817,13.0,55.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Male
+1850.23,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,350.0,1725.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,600.23,0.0,0.0,190.0,No,Yes,Legs,No,Motorcycle,Rainy,2023-02-13 14:41:10.094018,2023-03-15 14:41:10.094018,17.0,34.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+1118.32,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,13.32,400.0,No,No,Hips,,Motorcycle,Rainy,2021-11-08 20:49:18.351670,2022-01-06 20:49:18.351670,3.0,67.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+524.25,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,4.25,No,Yes,,Yes,Truck,,2023-12-13 18:26:43.040608,2023-12-22 18:26:43.040608,3.0,40.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Other
+975.0,Rear end,,0.0,0.0,0.0,580.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,,Multiple,Yes,Truck,Rainy,2023-03-08 16:25:43.988797,2024-01-26 16:25:43.988797,12.0,35.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+460.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,200.0,No,Yes,Hips,Yes,Car,Snowy,2020-02-10 07:17:50.854170,2020-07-26 07:17:50.854170,0.0,54.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+1787.5,Other side reversed into Clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,525.0,No,Yes,Multiple,No,Truck,Rainy,2020-01-30 18:57:32.370474,2021-01-01 18:57:32.370474,19.0,44.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Female
+2337.0,Rear end,,0.0,0.0,0.0,1880.0,0.0,0.0,0.0,0.0,0.0,0.0,,895.0,0.0,0.0,0.0,26.4,290.0,No,Yes,Multiple,No,Motorcycle,Snowy,2020-05-21 01:32:27.989597,2021-02-24 01:32:27.989597,4.0,42.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Female
+629.23,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,289.2,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2023-06-15 09:36:24.196839,2023-12-23 09:36:24.196839,2.0,22.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Other
+1297.0,Other side changed lanes and collided with clt's vehicle,D. 4 months,0.0,0.0,0.0,555.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Hips,No,Truck,Sunny,2023-04-04 13:17:37.891578,2023-12-02 13:17:37.891578,18.0,77.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+260.0,Other,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,260.0,0.0,0.0,,0.0,0.0,,Yes,Multiple,No,Motorcycle,Snowy,2021-06-23 17:22:28.829765,2022-03-28 17:22:28.829765,12.0,,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Female
+,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,149.28,0.0,510.0,No,,Arms,No,Car,Rainy,2021-07-04 05:42:47.313462,2021-12-05 05:42:47.313462,6.0,44.0,1.0,,Fractured arm and leg.,Yes,No,Other
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2022-07-25 01:07:58.895779,2023-01-01 01:07:58.895779,9.0,30.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Female
+1510.0,Rear end - Clt pushed into next vehicle,J. 10 months,0.0,0.0,0.0,1063.0,0.0,0.0,0.0,0.0,130.84,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,120.0,No,Yes,Legs,Yes,Car,Rainy,2021-09-23 03:19:02.868573,2022-06-15 03:19:02.868573,2.0,71.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+840.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Rainy,2021-03-03 13:45:51.670334,2021-10-24 13:45:51.670334,1.0,24.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+260.0,Other side drove on wrong side of the road,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2020-07-06 19:02:43.472694,2021-06-17 19:02:43.472694,6.0,43.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Male
+260.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,,No,Yes,Hips,No,Car,Sunny,2022-09-30 12:18:17.499499,2023-04-17 12:18:17.499499,8.0,31.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Female
+767.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Hips,Yes,Truck,Sunny,2023-08-22 17:48:24.340868,2023-09-24 17:48:24.340868,11.0,44.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+355.0,Rear end,A. 1 month,,0.0,0.0,788.0,0.0,0.0,30.0,,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,,Legs,No,Car,Snowy,2020-06-27 03:44:06.529305,2020-09-24 03:44:06.529305,9.0,75.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+1270.0,Other side pulled from parked position into the path of clt's vehicle,G. 7 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,,,0.0,No,Yes,Hips,,Truck,Rainy,2023-06-10 10:26:48.801760,2023-09-13 10:26:48.801760,18.0,76.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Male
+520.0,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2021-03-26 15:30:25.565113,2021-11-02 15:30:25.565113,12.0,25.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Female
+1417.04,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,413.0,0.0,0.0,520.0,0.0,0.0,0.0,14.04,574.0,No,Yes,Legs,No,Motorcycle,Sunny,2022-10-30 14:16:23.716743,2023-01-07 14:16:23.716743,9.0,48.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+895.0,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2021-03-04 03:46:59.363872,2021-12-23 03:46:59.363872,4.0,52.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Female
+937.27,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.67,0.0,0.0,0.0,495.0,0.0,0.0,0.0,25.8,462.0,No,No,Multiple,Yes,Car,Snowy,2020-09-24 12:36:43.640728,2021-05-19 12:36:43.640728,14.0,44.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+895.0,Other,H. 8 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2020-12-10 22:06:13.034606,2021-05-19 22:06:13.034606,2.0,21.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Female
+760.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,290.0,Yes,Yes,Multiple,No,Motorcycle,Rainy,2021-09-18 18:10:35.167033,2022-08-04 18:10:35.167033,7.0,59.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+1084.16,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,44.16,525.0,No,Yes,Legs,Yes,Truck,Snowy,2021-10-25 13:21:39.859971,2022-09-18 13:21:39.859971,5.0,21.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Female
+884.5,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,21.0,455.0,No,Yes,Legs,No,Truck,Sunny,2020-09-05 13:00:03.600720,2021-06-08 13:00:03.600720,18.0,35.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Female
+790.7,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.0,0.0,0.0,520.0,0.0,0.0,0.0,59.4,235.0,No,Yes,Legs,No,Motorcycle,Rainy,2023-08-17 18:38:48.945789,2024-06-02 18:38:48.945789,16.0,40.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+1530.2,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,10.2,0.0,,No,Yes,Hips,Yes,Motorcycle,,2020-07-28 23:45:35.827165,2020-09-08 23:45:35.827165,9.0,49.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+1012.5,Rear end - 3 car - Clt at front,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,117.5,No,Yes,Multiple,No,Car,Snowy,2023-09-28 20:00:02.880576,2023-12-03 20:00:02.880576,0.0,29.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+1446.14,Rear end,G. 7 months,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,9.24,125.0,No,Yes,Multiple,Yes,Car,Snowy,2021-08-11 04:56:07.393478,2021-09-01 04:56:07.393478,12.0,69.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+1804.35,,F. 6 months,0.0,0.0,0.0,2305.0,0.0,0.0,0.0,0.0,30.46,0.0,,495.0,0.0,0.0,0.0,16.2,9.35,,No,Legs,,Motorcycle,Sunny,2022-10-11 00:38:35.983196,2023-09-11 00:38:35.983196,9.0,37.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+4415.0,Rear end,H. 8 months,0.0,0.0,0.0,3000.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.8,575.0,No,No,Legs,No,Truck,Rainy,2022-11-29 16:14:29.933986,2023-02-07 16:14:29.933986,11.0,64.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Male
+240.0,Rear end,A. 1 month,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,,No,,Yes,Motorcycle,Rainy,2023-02-04 06:23:06.997399,2023-10-23 06:23:06.997399,1.0,62.0,2.0,Lost control on a snowy road.,,Yes,No,Male
+1817.0,Other,H. 8 months,0.0,0.0,0.0,1546.0,0.0,0.0,1050.0,0.0,,0.0,0.0,895.0,0.0,0.0,36.0,0.0,275.0,No,Yes,Hips,No,,Rainy,2020-01-19 09:35:32.346469,2020-09-21 09:35:32.346469,9.0,,,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+950.0,Other side drove on wrong side of the road,D. 4 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Hips,No,Truck,Sunny,2023-11-21 06:43:16.839367,2024-10-09 06:43:16.839367,0.0,25.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+2827.6,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,2116.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,3.6,350.0,Yes,Yes,Multiple,No,Truck,Rainy,2020-06-12 06:15:20.344068,2021-02-02 06:15:20.344068,0.0,71.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Female
+495.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Rainy,2021-05-21 03:17:36.451290,2022-02-17 03:17:36.451290,19.0,39.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+495.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Rainy,2020-07-14 09:17:23.488697,2020-10-21 09:17:23.488697,14.0,44.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+1253.0,Rear end,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,91.62,518.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-02-11 06:36:39.319863,2024-01-06 06:36:39.319863,0.0,58.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Female
+3055.0,Rear end,F. 6 months,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,60.0,,0.0,0.0,0.0,Yes,Yes,Multiple,No,Motorcycle,Sunny,2021-03-26 08:29:51.718343,2021-04-30 08:29:51.718343,,69.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+690.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,170.0,No,Yes,Arms,No,Car,Snowy,2021-01-06 04:56:59.243848,2021-12-11 04:56:59.243848,6.0,58.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Male
+2036.44,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,2325.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,18.45,7.99,No,Yes,Arms,No,Truck,Snowy,2021-12-06 07:42:19.947989,2022-05-26 07:42:19.947989,15.0,34.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Female
+895.0,Other side pulled on to roundabout,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2022-03-26 03:14:26.333266,2022-07-14 03:14:26.333266,15.0,76.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Male
+695.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,175.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-10-08 11:18:39.823964,2024-07-29 11:18:39.823964,12.0,74.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+995.0,Other,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2022-06-10 22:42:48.033606,2022-06-20 22:42:48.033606,9.0,49.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+904.5,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,455.0,No,No,Hips,No,Truck,Sunny,2021-12-18 21:06:35.359071,2022-07-08 21:06:35.359071,17.0,50.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Female
+495.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Rainy,2022-06-14 03:49:00.348069,2023-02-26 03:49:00.348069,8.0,48.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Male
+1465.0,Other side drove on wrong side of the road,H. 8 months,0.0,0.0,0.0,560.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,270.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2020-12-05 15:56:03.792758,2021-08-24 15:56:03.792758,11.0,72.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+960.0,Other side turned across Clt's path,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,895.0,,0.0,0.0,0.0,65.0,No,Yes,Arms,Yes,Truck,Rainy,2023-08-24 11:51:47.421484,2024-02-21 11:51:47.421484,12.0,23.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+985.0,Other,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,90.0,No,Yes,Legs,No,Car,Rainy,2022-03-13 20:50:44.768953,2022-05-18 20:50:44.768953,10.0,56.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Other
+745.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,294.0,No,No,Multiple,Yes,Car,Snowy,2021-07-22 22:18:53.506701,2022-05-12 22:18:53.506701,14.0,26.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Female
+1515.0,Other side overtook and hit Clt when pulling in,J. 10 months,0.0,0.0,0.0,25.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,No,Truck,Rainy,2020-01-18 05:33:16.959391,2020-06-27 05:33:16.959391,9.0,59.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+1682.0,Other side pulled out of side road,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,455.0,Yes,Yes,Multiple,Yes,Truck,Sunny,2022-06-24 23:09:52.678535,2022-08-30 23:09:52.678535,9.0,49.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Female
+2645.0,Rear end,G. 7 months,0.0,0.0,0.0,1950.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,465.0,No,Yes,Legs,No,Motorcycle,Snowy,2020-04-06 23:07:17.127425,2020-07-15 23:07:17.127425,8.0,53.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+4280.0,Rear end - Clt pushed into next vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,4408.16,,0.0,40.0,No,No,Arms,No,Truck,Sunny,2023-05-03 04:12:54.874974,2023-07-19 04:12:54.874974,2.0,33.0,2.0,Lost control on a snowy road.,,Yes,No,Male
+704.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,20.16,0.0,290.0,No,Yes,Legs,No,Motorcycle,Snowy,2020-02-25 04:46:37.039407,2020-03-31 04:46:37.039407,15.0,29.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Other
+988.0,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,132.0,No,Yes,Multiple,Yes,Car,Sunny,2022-11-05 17:28:14.498899,2022-12-20 17:28:14.498899,11.0,58.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+2858.9700000000003,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,1600.0,0.0,213.97,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2020-03-27 03:46:24.796959,2020-08-24 03:46:24.796959,16.0,20.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Other
+660.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,140.0,No,Yes,Legs,Yes,Car,Sunny,2022-01-14 03:57:21.568313,2022-03-23 03:57:21.568313,14.0,75.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+496.66,Other side pulled out of side road,,0.0,0.0,0.0,560.05,0.0,0.0,0.0,0.0,0.0,0.0,,260.0,0.0,36.66,0.0,0.0,3.0,No,Yes,Arms,No,Truck,Sunny,2020-02-21 09:39:17.031406,2020-11-01 09:39:17.031406,2.0,44.0,2.0,,Whiplash and minor bruises.,Yes,No,Male
+1237.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,0.0,0.0,520.0,0.0,0.0,0.0,63.0,630.0,No,Yes,Legs,No,Car,Rainy,2020-08-21 08:30:43.568713,2020-09-07 08:30:43.568713,4.0,44.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+520.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2020-08-23 02:34:06.649329,2021-05-11 02:34:06.649329,12.0,26.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+4421.0,Rear end,Q. 17 months,0.0,0.0,0.0,0.0,0.0,0.0,170.0,0.0,0.0,0.0,0.0,3100.0,0.0,1.0,0.0,0.0,1150.0,No,Yes,Legs,No,Car,Snowy,2021-05-23 18:22:41.072214,2021-12-22 18:22:41.072214,5.0,78.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+899.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,4.0,No,Yes,Multiple,No,Car,Rainy,2020-03-03 12:00:43.208641,2021-01-10 12:00:43.208641,8.0,34.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Sunny,2021-07-02 18:39:58.079615,2022-03-15 18:39:58.079615,18.0,63.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+895.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2022-02-27 13:23:06.277255,2022-10-01 13:23:06.277255,6.0,22.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2020-06-23 01:36:12.674534,2021-06-09 01:36:12.674534,12.0,43.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+1360.0,Other side turned across Clt's path,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,895.0,0.0,0.0,0.0,0.0,465.0,No,Yes,Legs,Yes,Car,Sunny,2021-05-16 11:08:34.902980,2022-02-26 11:08:34.902980,4.0,,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Male
+1914.0,Rear end,H. 8 months,0.0,0.0,0.0,2105.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,524.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2021-01-30 17:44:22.372474,2021-02-06 17:44:22.372474,15.0,18.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+1491.0,,I. 9 months,0.0,0.0,0.0,483.0,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,113.0,0.0,0.0,0.0,0.0,Yes,Yes,Arms,Yes,Truck,Snowy,2023-05-18 08:42:14.906981,2023-12-03 08:42:14.906981,3.0,18.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+1301.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Multiple,Yes,Truck,Sunny,2021-01-12 08:08:50.026005,2021-04-13 08:08:50.026005,4.0,52.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Male
+1394.21,Rear end,F. 6 months,0.0,0.0,0.0,1113.0,0.0,1060.56,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2022-01-28 18:25:33.906781,2022-06-24 18:25:33.906781,19.0,26.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+890.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,43.9,370.0,No,No,Multiple,No,Truck,Sunny,2022-09-30 19:18:51.346269,2023-02-27 19:18:51.346269,18.0,40.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+1605.55,Rear end,H. 8 months,0.0,0.0,0.0,1320.0,0.0,210.55,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2023-10-08 18:19:13.670734,2023-11-29 18:19:13.670734,5.0,55.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+908.55,Other side reversed into clt's stationary vehicle,E. 5 months,0.0,0.0,0.0,1033.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,25.31,125.0,No,Yes,Legs,Yes,Car,Snowy,2020-02-11 04:19:32.394478,2020-10-11 04:19:32.394478,3.0,58.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+840.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,455.0,No,No,Multiple,Yes,Car,Sunny,2022-07-28 06:14:11.210242,2023-03-04 06:14:11.210242,0.0,21.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+2271.26,Rear end,E. 5 months,0.0,0.0,0.0,1000.0,0.0,68.31,0.0,0.0,528.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,566.0,No,Yes,Legs,No,Car,Rainy,2022-04-09 03:41:30.978195,2022-04-15 03:41:30.978195,16.0,69.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Other
+2570.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,3500.0,0.0,0.0,0.0,0.0,187.88,0.0,0.0,520.0,,0.0,0.0,544.45,0.0,Yes,Yes,Multiple,No,Motorcycle,Sunny,,2023-10-08 12:48:14.978995,8.0,36.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,,0.0,0.0,No,Yes,Hips,No,,Snowy,2022-10-23 00:01:43.700740,2023-10-09 00:01:43.700740,15.0,54.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Rainy,2022-03-14 03:51:18.615723,2022-05-19 03:51:18.615723,1.0,22.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+1511.0,Other side turned across Clt's path,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.0,0.0,0.0,1390.0,0.0,0.0,0.0,49.2,0.0,No,Yes,Hips,Yes,Car,Snowy,2021-05-15 14:06:53.362672,2021-05-25 14:06:53.362672,10.0,45.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Female
+2295.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2840.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2020-11-27 11:40:16.083216,2021-06-17 11:40:16.083216,4.0,63.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+895.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1610.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2022-12-22 17:59:03.828765,2023-09-30 17:59:03.828765,12.0,59.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Male
+1175.6,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,298.64,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,36.96,455.0,No,Yes,Multiple,No,Car,Sunny,2021-07-11 12:56:53.482696,2022-02-10 12:56:53.482696,19.0,72.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Female
+859.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,455.0,No,No,Arms,No,Motorcycle,Rainy,2021-10-18 06:07:33.690738,2021-12-25 06:07:33.690738,16.0,,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+1127.4,Rear end - Clt pushed into next vehicle,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,529.0,0.0,0.0,240.0,0.0,0.0,0.0,8.4,350.0,No,,,No,Car,Rainy,2023-08-11 22:27:32.010402,2024-04-14 22:27:32.010402,,40.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+895.0,Other side changed lanes on a roundabout colliding with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Rainy,2023-04-13 00:33:59.447889,2024-04-01 00:33:59.447889,11.0,55.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Male
+905.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,30.9,0.0,No,Yes,Arms,No,Truck,Rainy,2021-03-28 02:33:14.798959,2022-02-18 02:33:14.798959,5.0,69.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+937.27,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.67,0.0,0.0,0.0,495.0,0.0,0.0,0.0,25.8,462.0,No,No,Multiple,No,Truck,Sunny,2022-02-09 17:48:41.624324,2022-03-31 17:48:41.624324,19.0,40.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+260.0,Other,A. 1 month,0.0,0.0,0.0,523.0,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Sunny,2023-10-23 22:48:33.702740,2023-11-09 22:48:33.702740,12.0,63.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+2127.0,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,232.0,No,Yes,Arms,No,Motorcycle,Sunny,2023-08-10 11:24:42.776555,2023-08-21 11:24:42.776555,17.0,35.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Female
+955.7,Rear end - Clt pushed into next vehicle,I. 9 months,0.0,0.0,0.0,1725.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,68.7,No,Yes,Hips,No,Truck,Rainy,2022-04-06 19:37:00.204040,2023-02-09 19:37:00.204040,14.0,46.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+720.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,24.0,221.7,No,Yes,Legs,No,Truck,Rainy,2020-10-20 19:27:29.849969,2021-08-22 19:27:29.849969,14.0,45.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Other
+520.0,Other side drove on wrong side of the road,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,520.0,,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Sunny,2022-07-29 17:17:00.444088,2022-11-30 17:17:00.444088,7.0,26.0,3.0,,Concussion and bruised ribs.,No,No,Male
+1735.0,Rear end,H. 8 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,,2022-06-13 06:47:18.807761,,18.0,56.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Other
+2125.0,Other side turned across Clt's path,O. 15 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2125.0,0.0,0.0,,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2023-08-13 23:31:28.937787,2024-04-13 23:31:28.937787,13.0,67.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,,0.0,No,Yes,Multiple,,Car,Snowy,,2023-04-24 08:41:40.340068,6.0,27.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2023-07-17 12:38:27.341468,2024-06-13 12:38:27.341468,13.0,19.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+2153.46,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,2875.0,0.0,238.46,10.0,18.7,,0.0,0.0,895.0,0.0,0.0,0.0,14.51,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2021-11-08 06:48:10.658131,2022-10-20 06:48:10.658131,4.0,30.0,1.0,,Concussion and bruised ribs.,No,Yes,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2022-10-30 14:16:23.716743,2022-11-28 14:16:23.716743,14.0,55.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,76.0,No,Yes,Hips,No,Truck,Rainy,2021-11-22 00:14:41.456291,2022-11-15 00:14:41.456291,14.0,44.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+1114.6,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Arms,No,Motorcycle,Sunny,2020-06-02 14:56:43.400680,2021-05-25 14:56:43.400680,3.0,72.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Female
+1715.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,1445.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2022-03-30 19:23:27.881576,2023-01-09 19:23:27.881576,0.0,58.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+1459.33,Rear end,D. 4 months,0.0,0.0,0.0,750.0,0.0,204.98,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,59.35,No,No,Multiple,No,Car,Sunny,2020-12-15 00:14:06.889377,2021-02-12 00:14:06.889377,16.0,37.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+720.0,Other side turned across Clt's path,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,460.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2021-05-26 23:28:53.386677,2021-10-16 23:28:53.386677,19.0,57.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+260.0,Other,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Sunny,2021-05-03 07:43:11.798359,2022-03-25 07:43:11.798359,0.0,79.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Male
+260.0,Rear end,C. 3 months,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2021-08-15 07:04:01.248249,2022-08-02 07:04:01.248249,15.0,27.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+922.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,27.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2021-04-28 01:33:02.556511,2022-02-22 01:33:02.556511,12.0,33.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Female
+495.0,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Sunny,2023-08-21 13:46:08.953790,2024-04-03 13:46:08.953790,17.0,32.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+495.0,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Sunny,2023-11-14 20:30:52.210442,2024-04-26 20:30:52.210442,9.0,30.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Female
+1286.92,Other side collided with Clt's parked vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,16.92,455.0,No,Yes,Legs,No,Motorcycle,Sunny,2023-03-26 04:59:34.794958,2023-06-18 04:59:34.794958,17.0,67.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+1120.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,1530.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2020-09-04 08:57:48.213642,2021-07-14 08:57:48.213642,16.0,55.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+895.0,Other side reversed into clt's stationary vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2020-09-10 05:09:05.149029,2021-01-05 05:09:05.149029,8.0,37.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+1495.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,2230.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2020-08-13 18:16:03.552710,2021-06-29 18:16:03.552710,13.0,41.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+789.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,294.0,No,No,Hips,Yes,Truck,Rainy,2020-06-07 07:05:44.948989,2020-12-28 07:05:44.948989,12.0,58.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+2195.0,Rear end - 3 car - Clt at front,G. 7 months,0.0,0.0,0.0,2030.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-07-14 00:31:41.180236,2024-07-03 00:31:41.180236,19.0,67.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+918.8,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6,0.0,0.0,495.0,0.0,0.0,43.2,0.0,462.0,No,No,Legs,Yes,Car,Sunny,2020-08-17 06:22:49.713942,2021-06-07 06:22:49.713942,19.0,24.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Male
+380.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,260.0,0.0,0.0,,,140.0,No,,Multiple,No,Car,Rainy,2022-08-23 06:04:23.572714,2023-01-15 06:04:23.572714,13.0,40.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Other
+2125.0,Other side pulled out of side road,M. 13 months,0.0,0.0,0.0,1240.0,0.0,0.0,0.0,0.0,350.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Sunny,2023-09-15 16:34:39.775955,2023-10-12 16:34:39.775955,10.0,41.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Other
+901.4,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,32.88,0.0,510.0,No,Yes,Multiple,No,Car,Sunny,2022-04-22 00:06:20.236047,2022-05-09 00:06:20.236047,12.0,46.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+682.0699999999999,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,162.07,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2020-05-10 20:12:43.352670,2020-07-12 20:12:43.352670,16.0,22.0,2.0,Side collision at an intersection.,,Yes,No,Male
+345.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,85.0,No,Yes,Legs,No,Motorcycle,Snowy,2022-08-24 17:07:12.806561,2023-05-18 17:07:12.806561,2.0,60.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+2576.4,Rear end,F. 6 months,0.0,0.0,0.0,1805.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,74.46,574.0,No,Yes,Legs,Yes,Truck,Rainy,2023-09-01 02:06:27.437487,2023-11-04 02:06:27.437487,0.0,62.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+640.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,120.0,No,Yes,Legs,No,Truck,Rainy,2021-07-10 08:54:38.095619,2021-08-18 08:54:38.095619,4.0,52.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+1021.0,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Hips,,Truck,Snowy,2023-08-24 11:51:47.421484,2024-01-01 11:51:47.421484,12.0,18.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+830.0,Rear end,F. 6 months,0.0,0.0,150.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Arms,No,Car,Snowy,2023-07-11 16:27:10.406081,2023-11-03 16:27:10.406081,4.0,53.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+1217.0,Rear end,F. 6 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,169.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,525.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2022-08-07 11:33:55.847169,2022-09-21 11:33:55.847169,4.0,68.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Other
+520.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2020-04-22 03:36:37.159431,2020-11-24 03:36:37.159431,11.0,35.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+2570.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,3500.0,0.0,0.0,0.0,0.0,187.88,0.0,0.0,520.0,104.0,0.0,0.0,544.45,0.0,Yes,Yes,Hips,Yes,Motorcycle,Rainy,2020-03-26 20:45:50.950190,2020-06-22 20:45:50.950190,1.0,23.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Male
+1515.0,Other side overtook and hit Clt when pulling in,J. 10 months,0.0,0.0,0.0,25.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Hips,No,Truck,Rainy,2020-12-27 13:38:22.300460,2021-11-28 13:38:22.300460,15.0,40.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+977.02,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,57.02,462.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2023-11-19 12:39:53.758751,2024-05-14 12:39:53.758751,16.0,27.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+1191.5,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,895.0,89.5,0.0,0.0,0.0,207.0,Yes,Yes,Multiple,No,Car,Rainy,2022-04-02 10:28:32.502500,2022-12-23 10:28:32.502500,4.0,24.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Female
+3427.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Multiple,Yes,Car,Sunny,2020-11-16 16:19:23.752750,2021-03-01 16:19:23.752750,11.0,61.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+345.0,Rear end,,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,85.0,No,Yes,Arms,Yes,Motorcycle,Snowy,,2022-04-21 07:19:51.838367,14.0,25.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
+745.0,Rear end,E. 5 months,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Sunny,2021-10-01 07:34:50.578115,2022-07-29 07:34:50.578115,5.0,30.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+279.99,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,19.99,0.0,0.0,260.0,0.0,0.0,0.0,0.0,90.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2022-03-18 12:59:46.317263,2022-09-05 12:59:46.317263,12.0,47.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Male
+570.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Hips,No,Car,Snowy,2020-12-22 21:29:20.752150,2021-04-09 21:29:20.752150,10.0,35.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2022-08-04 20:28:51.226245,2023-07-25 20:28:51.226245,16.0,31.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Rainy,2023-02-12 17:39:28.553710,2023-07-23 17:39:28.553710,8.0,28.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Male
+1195.0,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,0.0,0.0,0.0,173.0,0.0,0.0,0.0,0.0,340.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Multiple,No,Motorcycle,Rainy,,2024-03-25 13:38:39.583916,15.0,77.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+895.0,Other side changed lanes on a roundabout colliding with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2020-04-29 17:51:17.175435,2020-06-08 17:51:17.175435,16.0,59.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2022-05-25 21:11:46.461292,2022-06-20 21:11:46.461292,19.0,78.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2022-05-10 02:41:18.735747,2022-08-01 02:41:18.735747,17.0,55.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+1804.35,Rear end,F. 6 months,0.0,0.0,0.0,2305.0,0.0,0.0,0.0,0.0,30.46,0.0,0.0,495.0,0.0,0.0,0.0,16.2,9.35,No,No,Multiple,No,Motorcycle,Snowy,2023-10-29 18:59:50.638127,2024-04-19 18:59:50.638127,12.0,30.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+495.0,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Sunny,2020-09-13 03:14:43.616723,2021-03-05 03:14:43.616723,10.0,71.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+2659.0,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Hips,No,Car,Rainy,2020-08-17 13:23:23.560712,2021-05-26 13:23:23.560712,12.0,59.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Other
+1885.56,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,40.56,1005.0,No,Yes,Arms,Yes,Truck,Rainy,2021-09-07 22:49:42.836567,2021-11-16 22:49:42.836567,12.0,61.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Other
+988.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,895.0,,,0.0,0.0,93.0,No,Yes,Hips,,Motorcycle,Sunny,2021-08-03 00:40:19.683936,2022-06-22 00:40:19.683936,11.0,50.0,3.0,,Whiplash and minor bruises.,No,No,Other
+1015.2,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,,520.0,0.0,0.0,31.2,0.0,455.0,No,Yes,Arms,Yes,Car,Snowy,2020-09-13 10:15:17.463492,2020-09-19 10:15:17.463492,13.0,67.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+1125.23,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,131.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,99.23,No,Yes,Legs,No,Truck,Sunny,2021-04-14 08:06:31.758351,2022-01-23 08:06:31.758351,12.0,30.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Male
+1624.65,Other side drove on wrong side of the road,F. 6 months,0.0,0.0,0.0,,0.0,354.65,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Sunny,2021-12-02 19:35:33.786757,2022-06-15 19:35:33.786757,8.0,42.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+1020.96,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,104.76,518.0,No,No,Hips,No,Motorcycle,Sunny,2020-01-21 10:39:29.273854,2020-02-03 10:39:29.273854,13.0,41.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+4346.83,Other,I. 9 months,0.0,0.0,0.0,1102.85,0.0,5894.9,0.0,0.0,111.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,825.0,No,Yes,Arms,Yes,Car,Snowy,2021-11-05 15:43:06.037207,2022-01-07 15:43:06.037207,0.0,77.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+529.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,9.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2023-07-09 08:22:39.631926,2023-07-22 08:22:39.631926,8.0,46.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+2390.0,Other,J. 10 months,0.0,0.0,0.0,1757.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,80.0,No,Yes,Legs,Yes,Car,Sunny,2022-08-20 07:58:45.105021,2023-04-26 07:58:45.105021,3.0,53.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2020-08-10 06:09:17.391478,2021-03-03 06:09:17.391478,11.0,23.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+780.0,,E. 5 months,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Sunny,2023-09-29 17:01:44.420884,2024-06-08 17:01:44.420884,13.0,35.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Rainy,2021-09-11 10:56:28.997799,2021-10-21 10:56:28.997799,8.0,45.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Male
+682.0699999999999,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,162.07,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Rainy,2022-11-12 03:40:39.127825,2023-04-26 03:40:39.127825,2.0,22.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+2120.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2093.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,,,5.0,35.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+800.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,305.0,No,No,Legs,No,Truck,Snowy,2021-04-20 18:18:56.387277,2021-05-07 18:18:56.387277,2.0,78.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Female
+1259.0,Rear end,G. 7 months,0.0,0.0,0.0,556.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,84.0,No,Yes,Hips,Yes,Car,Rainy,2023-06-06 08:18:54.946989,2023-10-21 08:18:54.946989,0.0,54.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+1060.65,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,84.0,1034.98,No,Yes,Hips,No,Motorcycle,Sunny,2020-11-12 21:12:03.744748,2021-09-28 21:12:03.744748,2.0,24.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+1742.0,Rear end,L. 12 months,0.0,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,182.0,No,Yes,Multiple,No,Car,Sunny,2021-12-18 14:06:01.512302,2022-10-27 14:06:01.512302,13.0,72.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+895.0,Other,I. 9 months,0.0,0.0,0.0,483.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2023-07-07 14:19:16.551310,2023-12-19 14:19:16.551310,19.0,26.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Other
+1818.94,Rear end,A. 1 month,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,7.8,0.0,801.14,No,No,Multiple,No,Motorcycle,Rainy,2022-08-11 20:42:23.548709,2023-05-19 20:42:23.548709,1.0,52.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Male
+1324.2,Other side changed lanes on a roundabout colliding with clt's vehicle,I. 9 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.2,0.0,No,No,Legs,Yes,Motorcycle,Sunny,2020-05-12 07:15:32.586517,2020-12-21 07:15:32.586517,11.0,29.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+240.0,Other side pulled on to roundabout,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,,0.0,0.0,No,No,Multiple,No,Car,Rainy,2022-02-04 11:38:32.382476,2022-06-06 11:38:32.382476,9.0,69.0,2.0,Side collision at an intersection.,,No,Yes,Female
+1158.95,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,623.95,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,345.0,No,No,Multiple,No,Motorcycle,Snowy,2020-06-29 11:48:37.303460,2020-09-15 11:48:37.303460,12.0,74.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Female
+830.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,406.0,No,No,Arms,No,Motorcycle,Rainy,2020-07-04 17:58:46.545309,2021-05-13 17:58:46.545309,19.0,63.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Female
+994.82,Rear end,,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,59.82,440.0,No,No,Hips,No,Car,,2021-11-16 18:04:32.214442,2022-10-09 18:04:32.214442,3.0,57.0,1.0,Rear-ended at a stoplight.,,Yes,Yes,Male
+795.9,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.9,275.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2023-11-24 11:49:29.153830,2024-02-20 11:49:29.153830,18.0,61.0,,Lost control on a snowy road.,,Yes,No,Male
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,No,Car,Snowy,2022-06-05 16:32:38.791758,2022-09-26 16:32:38.791758,0.0,56.0,,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Rainy,2021-10-18 20:08:41.384276,2022-01-26 20:08:41.384276,10.0,41.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+2042.0,Other side turned across Clt's path,L. 12 months,120.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,90.0,607.0,No,Yes,Arms,Yes,Car,Snowy,2022-03-05 16:34:57.059411,2023-01-02 16:34:57.059411,15.0,26.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Female
+240.0,Other side reversed into clt's stationary vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Snowy,2021-11-17 01:05:06.061212,2022-07-14 01:05:06.061212,18.0,29.0,,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+495.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Rainy,2023-07-18 09:40:08.881776,2024-06-28 09:40:08.881776,18.0,53.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Female
+3590.0,Other side pulled on to roundabout,L. 12 months,0.0,0.0,0.0,2200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Snowy,2021-08-05 08:44:50.458091,2021-11-24 08:44:50.458091,11.0,54.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Female
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Rainy,2022-04-03 14:30:47.889577,2022-07-02 14:30:47.889577,2.0,26.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Male
+520.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2020-11-08 19:04:09.889977,2021-03-27 19:04:09.889977,17.0,56.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,,0.0,0.0,0.0,No,Yes,,,Truck,Snowy,2021-08-16 04:05:42.788557,2021-12-29 04:05:42.788557,16.0,63.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+720.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,24.0,221.7,No,Yes,Multiple,Yes,Truck,Rainy,2020-12-30 18:44:34.614922,2021-01-11 18:44:34.614922,4.0,69.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Male
+1125.0,Other side collided with Clt's parked vehicle,E. 5 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Legs,No,Motorcycle,Sunny,2021-01-13 05:10:31.566313,2021-09-14 05:10:31.566313,15.0,39.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2022-11-04 13:25:59.111822,2023-05-05 13:25:59.111822,13.0,76.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+1670.0,Rear end,G. 7 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,270.0,No,No,Hips,No,Truck,Snowy,2020-04-05 12:04:27.893578,2020-10-17 12:04:27.893578,18.0,34.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+644.0,Rear end,F. 6 months,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,495.0,99.0,0.0,0.0,,50.0,Yes,No,Legs,No,Motorcycle,Rainy,,2021-08-17 11:29:02.028405,5.0,,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+1620.0,Rear end,D. 4 months,0.0,0.0,0.0,1100.0,0.0,0.0,,0.0,0.0,,0.0,520.0,,,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2022-04-15 13:53:55.607121,2022-08-15 13:53:55.607121,2.0,74.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+640.0,Other side pulled out of side road,C. 3 months,0.0,0.0,0.0,1647.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Rainy,2023-10-22 04:45:10.622124,2023-12-14 04:45:10.622124,5.0,64.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+650.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Legs,Yes,Car,Snowy,2022-03-26 17:15:34.026805,2023-03-17 17:15:34.026805,11.0,41.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+840.75,Other side overtook and pulled in too soon,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,92.4,253.35,No,No,Hips,Yes,Motorcycle,Snowy,2022-06-22 15:05:21.904380,2022-12-12 15:05:21.904380,19.0,32.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+645.98,Other side pulled from parked position into the path of clt's vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,70.0,0.0,0.0,80.98,No,No,Multiple,Yes,Car,Snowy,2022-05-19 10:59:21.832366,2022-11-14 10:59:21.832366,10.0,46.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Female
+1425.0,Rear end,F. 6 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,625.0,No,Yes,Hips,No,Car,Snowy,2020-10-07 23:02:40.592118,2021-07-27 23:02:40.592118,6.0,49.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+520.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2021-01-05 07:55:17.703540,2021-03-05 07:55:17.703540,0.0,50.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Male
+1252.85,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,336.95,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,45.9,462.0,No,No,Hips,No,Motorcycle,Sunny,2020-04-18 15:29:50.998199,2020-06-11 15:29:50.998199,15.0,46.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+975.0,Rear end,F. 6 months,0.0,0.0,0.0,580.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Rainy,2023-07-03 05:10:48.849769,2024-03-16 05:10:48.849769,15.0,32.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+1375.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,462.0,Yes,Yes,Arms,Yes,Truck,Rainy,2022-01-20 00:08:38.503700,2022-09-22 00:08:38.503700,16.0,44.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+1120.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Rainy,2023-12-02 16:05:16.863372,2024-04-29 16:05:16.863372,14.0,51.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Other
+240.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Snowy,2023-10-16 22:35:01.380276,2024-07-26 22:35:01.380276,8.0,78.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+2120.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Rainy,2022-12-14 13:43:16.119223,2022-12-30 13:43:16.119223,4.0,21.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+1204.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Multiple,Yes,Truck,Sunny,2021-04-13 11:04:50.218043,2021-10-06 11:04:50.218043,19.0,66.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Other
+1054.0,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129.0,0.0,0.0,895.0,0.0,0.0,0.0,30.0,109.8,No,Yes,Hips,No,Motorcycle,Rainy,2020-01-28 17:53:35.443088,2020-02-25 17:53:35.443088,7.0,65.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Other
+470.43,Rear end,A. 1 month,0.0,0.0,150.0,0.0,0.0,0.0,0.0,0.0,66.33,0.0,0.0,240.0,0.0,0.0,0.0,14.1,0.0,No,No,Hips,Yes,Car,Rainy,2023-06-30 00:04:36.535307,2023-11-06 00:04:36.535307,0.0,35.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+1133.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Arms,No,Car,,2023-02-25 00:03:10.118023,2023-10-06 00:03:10.118023,6.0,38.0,,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Other
+3420.92,Other side pulled out of side road,R. 18 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3005.0,0.0,0.0,0.0,10.92,405.0,No,No,Legs,Yes,Motorcycle,Sunny,2020-12-16 11:16:56.123224,2021-08-17 11:16:56.123224,10.0,65.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Other
+3198.26,Rear end,E. 5 months,0.0,0.0,0.0,1700.0,0.0,2746.26,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2023-02-25 21:04:51.658331,2024-02-14 21:04:51.658331,19.0,25.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2023-11-25 22:52:18.387677,2024-07-20 22:52:18.387677,12.0,23.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+1920.0,Rear end,F. 6 months,0.0,0.0,0.0,2173.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2020-02-08 06:13:53.926785,2020-09-27 06:13:53.926785,12.0,71.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+840.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Rainy,2022-06-28 18:17:12.686537,2023-05-20 18:17:12.686537,6.0,37.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+1394.21,Rear end,F. 6 months,0.0,0.0,0.0,1113.0,0.0,1060.56,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Sunny,2021-02-09 23:04:07.009401,2021-05-12 23:04:07.009401,10.0,19.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Male
+1185.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,11.4,462.0,No,No,Hips,Yes,Motorcycle,Snowy,2020-12-01 13:48:09.937987,2020-12-04 13:48:09.937987,17.0,68.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2022-10-22 03:00:02.160432,2023-01-11 03:00:02.160432,0.0,62.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+2695.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,3200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,,Car,Snowy,2022-12-01 03:17:19.167833,,11.0,39.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+315.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Arms,Yes,Truck,Sunny,2020-08-23 16:35:14.342868,2021-01-25 16:35:14.342868,2.0,71.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Female
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2023-11-14 06:29:44.516903,2023-12-08 06:29:44.516903,0.0,38.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+1125.0,,F. 6 months,0.0,0.0,0.0,,0.0,0.0,,0.0,79.0,0.0,0.0,520.0,0.0,0.0,0.0,126.0,455.0,No,Yes,,No,Car,Snowy,2020-01-15 14:28:12.338467,2020-04-23 14:28:12.338467,,23.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+1695.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,900.0,0.0,,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,,No,Yes,Hips,Yes,Car,Sunny,2022-07-25 22:09:40.436087,2023-01-12 22:09:40.436087,5.0,,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+2337.0,Rear end,H. 8 months,0.0,0.0,0.0,1880.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,26.4,290.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2020-01-17 01:31:01.572314,2020-06-13 01:31:01.572314,4.0,49.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+847.4,Other side pulled out of side road,,0.0,0.0,0.0,325.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,2.4,0.0,No,Yes,Arms,Yes,Truck,Rainy,2022-12-06 02:26:54.562912,2023-04-08 02:26:54.562912,10.0,23.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Male
+566.9,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5.1,0.0,0.0,520.0,0.0,0.0,0.0,1.8,0.0,No,Yes,Arms,No,Car,Rainy,2020-08-04 23:59:08.149629,2020-11-24 23:59:08.149629,19.0,30.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+6976.96,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6070.0,0.0,0.0,495.0,0.0,0.0,36.96,0.0,375.0,No,No,Arms,No,Car,Rainy,2023-08-18 08:39:56.639327,2023-12-26 08:39:56.639327,12.0,18.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2022-04-19 23:02:23.308661,2022-06-26 23:02:23.308661,10.0,39.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+729.0,Rear end,E. 5 months,0.0,0.0,0.0,1680.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,133.0,Yes,Yes,Multiple,No,Car,Snowy,2020-01-24 01:44:33.894778,2021-01-05 01:44:33.894778,5.0,70.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+1134.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,294.0,No,No,Legs,Yes,Motorcycle,Snowy,2023-07-30 02:02:42.752550,2024-06-10 02:02:42.752550,18.0,41.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+2332.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1437.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2023-02-24 17:02:36.271254,2023-09-29 17:02:36.271254,14.0,58.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+520.0,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Rainy,2022-05-16 05:53:09.517903,2022-08-20 05:53:09.517903,12.0,47.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+1375.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,462.0,Yes,Yes,Legs,Yes,Motorcycle,Sunny,2022-12-24 19:03:00.756151,2023-05-18 19:03:00.756151,9.0,39.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+2494.0,Rear end,F. 6 months,0.0,0.0,0.0,1792.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,182.0,No,Yes,Legs,No,Car,Snowy,2023-08-17 18:38:48.945789,2023-09-19 18:38:48.945789,0.0,78.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+864.0,Other,H. 8 months,0.0,0.0,0.0,1281.85,0.0,0.0,40.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,50.0,Yes,Yes,Legs,No,Car,Rainy,2020-02-06 12:10:30.846169,2020-11-18 12:10:30.846169,12.0,61.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Other
+1210.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,2279.64,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,370.0,No,Yes,Multiple,Yes,Car,Sunny,2020-03-04 16:02:58.595719,2020-03-09 16:02:58.595719,5.0,29.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+669.14,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,94.14,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Arms,No,Car,Rainy,2020-10-03 13:54:12.890578,2021-01-29 13:54:12.890578,19.0,43.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+834.5,Other,D. 4 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,99.0,0.0,0.0,,406.0,Yes,No,Arms,No,Truck,,2023-07-01 04:06:51.922384,2023-11-18 04:06:51.922384,11.0,21.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+3120.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,2000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,225.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2020-06-22 11:35:04.980996,2021-02-07 11:35:04.980996,16.0,36.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2020-02-10 21:18:58.547709,2020-07-19 21:18:58.547709,17.0,33.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+1189.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Arms,Yes,Car,Rainy,2022-04-24 22:11:58.703740,2023-02-12 22:11:58.703740,7.0,75.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2022-06-11 05:43:21.880376,2023-02-15 05:43:21.880376,13.0,29.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+845.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,325.0,No,Yes,Hips,Yes,,Snowy,2021-04-21 01:19:30.234046,,4.0,50.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+852.2,Other side drove on wrong side of the road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,7.2,501.75,No,No,Arms,Yes,Car,Snowy,2020-09-12 20:14:09.769953,2021-03-17 20:14:09.769953,1.0,72.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+307.76,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,47.76,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,,Multiple,No,Truck,Rainy,2023-05-13 02:32:05.665133,2023-06-22 02:32:05.665133,10.0,38.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+895.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,1180.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,73.81,9.35,No,Yes,Arms,Yes,Truck,Rainy,2022-02-15 21:00:32.406481,2022-09-27 21:00:32.406481,2.0,53.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+920.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,425.0,No,No,Legs,No,Car,Rainy,2022-09-17 01:52:20.548109,2023-02-16 01:52:20.548109,15.0,26.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+730.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2023-11-29 10:59:04.548909,2024-04-17 10:59:04.548909,15.0,56.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Female
+1175.0,Rear end,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,495.0,0.0,0.0,0.0,0.0,0.0,,No,Legs,Yes,Car,Rainy,2021-08-15 14:04:35.095019,2021-12-21 14:04:35.095019,8.0,59.0,1.0,Side collision at an intersection.,,Yes,No,Other
+1220.0,Rear end,F. 6 months,0.0,0.0,0.0,900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,10.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-11-09 21:21:16.815363,2024-10-25 21:21:16.815363,12.0,62.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+1400.5,,L. 12 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,10.5,,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2022-01-15 07:59:36.955391,2022-06-11 07:59:36.955391,9.0,,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Other
+1135.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Hips,No,Truck,Sunny,2022-11-20 14:57:00.684136,2023-09-01 14:57:00.684136,16.0,37.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+1390.0,Rear end,K. 11 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2020-10-30 17:46:40.640128,2021-06-05 17:46:40.640128,16.0,27.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Male
+1020.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,1558.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Rainy,2020-04-01 16:57:07.885577,2020-11-07 16:57:07.885577,9.0,49.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Other
+240.0,Other side changed lanes on a roundabout colliding with clt's vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Motorcycle,Sunny,2022-10-07 05:31:15.975195,2023-03-01 05:31:15.975195,7.0,45.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+1216.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,518.0,No,No,Legs,Yes,Motorcycle,Snowy,2023-05-03 11:13:28.721744,2024-03-27 11:13:28.721744,6.0,27.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+570.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,Yes,Car,Sunny,2022-06-02 11:26:26.477295,2023-03-06 11:26:26.477295,13.0,25.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+914.0,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Legs,Yes,Car,Sunny,2022-05-10 09:41:52.582516,2023-01-07 09:41:52.582516,17.0,69.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+865.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,370.0,No,No,Arms,Yes,Car,Snowy,2022-08-03 02:25:28.145629,2022-10-02 02:25:28.145629,18.0,64.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+1371.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,574.0,Yes,Yes,Legs,No,Truck,Sunny,2022-12-10 18:35:56.111222,2023-03-18 18:35:56.111222,17.0,50.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+3417.06,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,2394.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,78.06,475.0,No,Yes,Multiple,No,Car,Sunny,2023-11-04 22:11:41.420284,2024-09-30 22:11:41.420284,13.0,76.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+538.5,Rear end,E. 5 months,0.0,0.0,600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,104.4,0.0,No,No,Multiple,Yes,Car,Rainy,2022-06-26 03:12:08.065613,2022-12-24 03:12:08.065613,9.0,64.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+2177.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,2760.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2021-03-24 21:27:02.484496,2021-07-16 21:27:02.484496,0.0,73.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+844.8,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Multiple,No,Car,Snowy,2023-02-04 20:24:14.690938,2023-05-18 20:24:14.690938,8.0,66.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Other
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Multiple,Yes,,Rainy,2021-06-29 06:33:11.918383,2022-05-31 06:33:11.918383,17.0,30.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+1221.8,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,22.8,344.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2023-12-16 09:31:47.661532,2024-10-30 09:31:47.661532,12.0,61.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+,Rear end,,0.0,0.0,0.0,523.25,0.0,,0.0,0.0,80.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2020-12-05 01:54:56.099219,2021-01-31 01:54:56.099219,16.0,,3.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+1600.0,Rear end,D. 4 months,0.0,0.0,0.0,930.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,175.0,No,No,Arms,Yes,Car,Sunny,2023-02-18 20:51:19.335867,2023-11-30 20:51:19.335867,15.0,72.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+4294.64,Rear end,G. 7 months,0.0,0.0,0.0,3220.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,185.64,0.0,714.0,No,Yes,Legs,No,Car,Sunny,2023-02-07 18:29:53.158631,2023-06-16 18:29:53.158631,10.0,68.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+920.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,425.0,No,No,Hips,Yes,Motorcycle,Rainy,2022-03-15 21:54:41.696339,2023-01-24 21:54:41.696339,8.0,46.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Male
+1622.24,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,650.0,0.0,288.87,490.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,102.24,50.0,No,Yes,Legs,No,Truck,Snowy,2021-07-12 09:58:35.023004,2021-10-06 09:58:35.023004,6.0,73.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Sunny,2020-03-18 02:28:55.547109,2020-10-04 02:28:55.547109,0.0,22.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+920.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,0.0,565.0,No,Yes,Hips,No,Car,Rainy,2023-07-17 05:37:53.494698,2023-09-26 05:37:53.494698,8.0,20.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+690.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,170.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-12-06 11:12:36.871374,2024-11-15 11:12:36.871374,9.0,70.0,1.0,,Sprained ankle and wrist.,No,Yes,Female
+1265.0,Other,I. 9 months,0.0,0.0,0.0,1237.0,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,370.0,No,Yes,Arms,Yes,Car,Rainy,2021-01-15 06:14:28.493698,2021-04-23 06:14:28.493698,15.0,54.0,,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+1295.0,Rear end,H. 8 months,0.0,0.0,0.0,985.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2020-12-14 17:13:33.042608,2021-10-10 17:13:33.042608,17.0,73.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+706.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,24.0,275.0,No,Yes,Hips,No,Car,Rainy,2021-03-21 16:20:50.170034,2021-09-13 16:20:50.170034,13.0,77.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+1190.0,Rear end,I. 9 months,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,245.0,No,Yes,Legs,No,Car,Rainy,2022-11-18 13:53:03.756751,2023-07-09 13:53:03.756751,10.0,58.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Male
+1624.65,Other side drove on wrong side of the road,F. 6 months,0.0,0.0,0.0,1102.85,0.0,354.65,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-07-07 07:18:42.704540,2023-09-20 07:18:42.704540,3.0,23.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+1181.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Legs,Yes,Truck,Rainy,2021-10-18 13:08:07.537507,2022-03-10 13:08:07.537507,18.0,65.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Other
+1781.46,Rear end,F. 6 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,31.46,,No,Yes,Legs,No,Car,Snowy,2020-12-04 04:53:14.558911,2020-12-27 04:53:14.558911,12.0,59.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Male
+1374.4,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,840.0,0.0,0.0,0.0,44.4,,No,No,Multiple,No,Car,Sunny,2023-06-29 10:03:28.841768,2023-12-27 10:03:28.841768,0.0,33.0,2.0,Side collision at an intersection.,,Yes,No,Male
+2386.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,1444.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,36.0,0.0,56.7,630.0,No,Yes,Multiple,No,Car,Snowy,2023-09-14 05:31:50.542108,2023-10-29 05:31:50.542108,18.0,52.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+1390.0,Other,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Rainy,2022-10-23 00:01:43.700740,2023-01-23 00:01:43.700740,14.0,35.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Male
+895.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,0.0,400.0,No,Yes,Hips,No,Truck,Rainy,2021-08-29 21:32:13.586717,2022-05-25 21:32:13.586717,19.0,28.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Sunny,2020-11-30 02:45:20.704140,2021-01-03 02:45:20.704140,14.0,68.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Other
+1010.0,Rear end,D. 4 months,0.0,0.0,0.0,1200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2020-01-20 20:38:21.580316,2020-07-04 20:38:21.580316,10.0,74.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,,No,No,,Yes,Truck,Snowy,2022-12-21 13:56:48.441688,2023-03-01 13:56:48.441688,4.0,40.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Male
+1220.0,Other,A. 1 month,0.0,0.0,0.0,980.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Snowy,2022-05-28 12:16:51.082216,2023-05-27 12:16:51.082216,9.0,64.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Male
+716.9,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,21.9,303.35,No,No,Legs,Yes,Motorcycle,Sunny,2020-08-29 05:45:57.431486,2021-03-13 05:45:57.431486,17.0,28.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Female
+1450.92,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,31.92,0.0,574.0,No,Yes,Hips,No,Truck,Snowy,2020-12-07 09:59:26.873374,2021-04-19 09:59:26.873374,6.0,76.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Female
+377.0,Other,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,33.0,163.0,No,,,Yes,Truck,Rainy,2020-10-14 02:14:31.374274,2021-06-18 02:14:31.374274,0.0,74.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+1207.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Legs,Yes,Car,Rainy,2023-08-29 11:01:22.816563,2024-02-13 11:01:22.816563,2.0,46.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+545.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Hips,Yes,Car,Sunny,2023-03-07 12:23:28.601720,2023-12-09 12:23:28.601720,0.0,71.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Other
+520.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2022-08-31 17:20:45.129025,2023-02-03 17:20:45.129025,16.0,73.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+1860.0,Other side turned across Clt's path,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,30.0,0.0,574.0,No,Yes,Legs,No,Car,Rainy,2021-11-14 10:00:01.440288,2021-12-07 10:00:01.440288,14.0,59.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,483.0,0.0,0.0,0.0,,165.0,0.0,0.0,,0.0,0.0,0.0,10.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,,2022-02-27 11:56:41.240248,4.0,44.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Female
+2356.0,Rear end,C. 3 months,0.0,0.0,0.0,2096.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2021-02-28 01:39:05.509101,2021-11-30 01:39:05.509101,15.0,26.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+1544.1,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,179.0,0.0,0.0,65.1,,Yes,Yes,Multiple,Yes,Truck,Rainy,2021-09-14 23:03:15.159031,2021-11-03 23:03:15.159031,11.0,52.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+1265.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,745.0,No,Yes,Arms,No,Motorcycle,Snowy,2020-10-30 10:46:06.793358,2021-05-04 10:46:06.793358,18.0,72.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Female
+260.0,Other,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2023-10-11 09:24:18.291658,2023-10-31 09:24:18.291658,13.0,26.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+950.55,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,46.2,9.35,No,Yes,Arms,No,Truck,Snowy,2023-05-15 10:36:36.439287,2023-09-08 10:36:36.439287,2.0,35.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Female
+520.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2022-10-09 06:35:12.902580,2023-01-09 06:35:12.902580,18.0,61.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Rainy,2022-06-02 18:27:00.324064,2023-05-17 18:27:00.324064,0.0,72.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+2575.0,Rear end,M. 13 months,0.0,0.0,0.0,959.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2023-05-28 07:01:25.697139,2024-05-01 07:01:25.697139,0.0,38.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+822.44,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,54.6,455.0,No,Yes,Legs,Yes,Truck,Rainy,2022-03-13 06:49:37.075415,2022-05-05 06:49:37.075415,9.0,73.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+640.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,120.0,No,Yes,Hips,No,Car,Rainy,2023-05-29 18:04:14.930986,2023-09-29 18:04:14.930986,2.0,65.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Other
+1965.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2023-07-07 14:19:16.551310,2024-06-12 14:19:16.551310,12.0,53.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+240.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Sunny,2022-10-17 17:51:34.458891,2023-09-20 17:51:34.458891,5.0,18.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+1508.8,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,1390.0,0.0,0.0,0.0,0.0,118.8,No,Yes,Legs,Yes,Truck,Rainy,2023-01-30 21:14:39.295859,2023-10-22 21:14:39.295859,10.0,44.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Rainy,2020-06-12 20:16:28.037607,2020-06-16 20:16:28.037607,5.0,62.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Male
+935.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Multiple,Yes,Truck,Rainy,2021-10-05 09:42:44.432886,2022-03-23 09:42:44.432886,2.0,75.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+260.0,Other side turned across Clt's path,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2022-09-25 13:08:42.104420,2023-07-03 13:08:42.104420,15.0,57.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Female
+2286.96,Rear end - 3 car - Clt at front,J. 10 months,0.0,0.0,0.0,700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,20.16,0.0,246.8,No,No,Multiple,No,Truck,Rainy,2020-11-30 02:45:20.704140,2021-09-16 02:45:20.704140,8.0,55.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+1481.5,Other side drove on wrong side of the road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,89.5,0.0,42.0,0.0,455.0,Yes,Yes,Hips,No,Truck,Sunny,2022-02-27 06:22:32.430486,2022-05-11 06:22:32.430486,7.0,46.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Male
+735.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Arms,No,Car,Sunny,2021-03-28 23:34:56.339267,2021-08-12 23:34:56.339267,2.0,57.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+520.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,,,Hips,No,Motorcycle,,2023-03-20 08:48:17.859571,2024-02-21 08:48:17.859571,4.0,36.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+1681.0,Other side changed lanes on a roundabout colliding with clt's vehicle,L. 12 months,0.0,0.0,0.0,56.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,235.0,Yes,Yes,Legs,Yes,Truck,Rainy,2020-06-12 13:15:54.190838,2021-02-23 13:15:54.190838,13.0,41.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+820.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,,325.0,No,No,Hips,No,Car,Rainy,2020-12-12 16:09:36.115223,2021-05-02 16:09:36.115223,4.0,73.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Female
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Snowy,2022-07-04 00:27:21.928385,2023-01-28 00:27:21.928385,18.0,61.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Male
+421.99,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,161.99,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Snowy,2022-09-23 05:04:11.330266,2023-06-10 05:04:11.330266,4.0,18.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Female
+1355.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Multiple,No,Car,Sunny,2021-05-08 06:52:47.193438,2022-01-26 06:52:47.193438,19.0,53.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+731.0,Other side reversed into clt's stationary vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Arms,No,Truck,Snowy,2023-07-11 02:26:02.712542,2024-04-07 02:26:02.712542,19.0,40.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Female
+1880.0,Rear end,E. 5 months,0.0,0.0,0.0,900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,640.0,406.0,Yes,Yes,Legs,Yes,Motorcycle,Snowy,2021-12-08 15:46:50.722144,2022-01-15 15:46:50.722144,1.0,30.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Male
+3320.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2800.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2021-02-03 19:52:16.227245,2021-08-25 19:52:16.227245,6.0,47.0,1.0,Lost control on a snowy road.,,Yes,No,Female
+1730.29,Rear end,E. 5 months,0.0,0.0,0.0,1028.0,0.0,0.0,0.0,0.0,456.44,0.0,0.0,520.0,0.0,0.0,0.0,4.5,9.35,No,Yes,Hips,No,Car,Rainy,2020-06-18 09:27:11.126225,2021-01-28 09:27:11.126225,0.0,76.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Male
+940.0,Other side pulled out of side road,D. 4 months,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,170.0,No,Yes,Hips,No,Motorcycle,Snowy,2020-10-12 01:10:34.446889,2021-09-24 01:10:34.446889,17.0,66.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+790.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,345.0,No,No,Multiple,No,Car,Rainy,2023-06-01 16:09:53.398679,2023-07-23 16:09:53.398679,9.0,68.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Sunny,2023-09-08 02:19:59.759951,2023-11-28 02:19:59.759951,5.0,68.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Male
+1071.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,176.0,Yes,Yes,Legs,No,Truck,Sunny,2021-11-19 02:09:02.988597,2022-11-10 02:09:02.988597,6.0,71.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Other
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2020-02-04 11:06:33.918783,2020-09-02 11:06:33.918783,11.0,54.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+1625.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,880.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,225.0,No,Yes,Multiple,No,Car,Sunny,2021-03-26 08:29:51.718343,2021-04-02 08:29:51.718343,17.0,77.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+320.0,Other side reversed into Clt's vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1692.54,0.0,0.0,240.0,0.0,0.0,0.0,0.0,180.0,No,No,Legs,Yes,Car,Sunny,2023-11-20 23:42:42.992598,2024-11-17 23:42:42.992598,10.0,28.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+,Rear end,H. 8 months,0.0,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,226.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2022-06-07 17:36:35.719143,2022-07-22 17:36:35.719143,18.0,,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Other
+1996.0,Other,I. 9 months,0.0,0.0,0.0,2254.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Snowy,2020-10-10 21:08:19.059811,2021-08-21 21:08:19.059811,3.0,52.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Other
+1570.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,42.6,170.0,No,Yes,Multiple,Yes,Car,Snowy,2020-09-24 05:36:09.793958,2021-06-28 05:36:09.793958,18.0,28.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Male
+870.0,Rear end,B. 2 months,0.0,0.0,0.0,520.0,0.0,0.0,90.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2021-02-23 16:30:37.807561,2021-11-09 16:30:37.807561,12.0,66.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+1750.0,Other side pulled out of side road,K. 11 months,0.0,0.0,0.0,903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,22.5,0.0,350.0,No,Yes,Hips,No,Car,Sunny,2020-06-20 03:30:34.206841,2020-11-09 03:30:34.206841,,60.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,520.0,0.0,,0.0,8.4,0.0,No,Yes,Arms,No,Car,Rainy,,2020-12-26 05:17:26.369273,1.0,64.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Male
+520.0,,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,8.4,0.0,No,Yes,Multiple,Yes,Car,Sunny,2023-09-02 20:09:50.518103,2024-06-13 20:09:50.518103,8.0,68.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Male
+517.92,,C. 3 months,,0.0,0.0,634.8,0.0,0.0,0.0,0.0,6.0,0.0,0.0,260.0,0.0,0.0,0.0,1.92,0.0,No,Yes,Legs,No,Truck,Snowy,2022-01-18 06:05:15.423084,2022-02-24 06:05:15.423084,7.0,57.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+260.0,Other side reversed into clt's stationary vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2021-06-30 03:34:53.458691,2021-08-14 03:34:53.458691,13.0,65.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+1570.58,Other side drove on wrong side of the road,,0.0,0.0,0.0,1102.85,0.0,309.4,0.0,,0.0,0.0,0.0,,179.0,0.0,0.0,14.43,0.0,Yes,,Hips,No,Truck,Rainy,2020-03-20 10:33:26.321264,2020-07-18 10:33:26.321264,8.0,38.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Male
+990.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,15.12,574.0,No,Yes,Arms,Yes,Truck,Snowy,2022-05-04 20:31:09.493898,2022-06-19 20:31:09.493898,12.0,64.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+1000.0,Rear end,B. 2 months,0.0,0.0,0.0,1256.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Rainy,2023-06-26 18:58:24.220844,2023-11-13 18:58:24.220844,17.0,20.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Other
+840.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,400.0,No,Yes,Multiple,No,Truck,Rainy,2022-10-01 09:19:59.039807,2022-11-23 09:19:59.039807,5.0,47.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Snowy,2022-06-07 03:35:28.025605,2023-04-04 03:35:28.025605,2.0,41.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2023-02-27 01:07:07.045409,2023-12-12 01:07:07.045409,9.0,55.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+1045.0,Rear end,D. 4 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Multiple,No,Car,Rainy,2021-05-30 04:35:05.701140,2022-02-28 04:35:05.701140,9.0,20.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Snowy,2023-06-06 22:20:02.640528,2024-03-01 22:20:02.640528,9.0,79.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+1379.92,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,523.25,0.0,79.92,210.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,5.0,No,Yes,Hips,Yes,Truck,Rainy,2021-05-31 22:38:28.781756,2022-03-06 22:38:28.781756,8.0,54.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+2911.39,Other side drove on wrong side of the road,J. 10 months,0.0,0.0,0.0,1112.05,0.0,0.0,0.0,0.0,208.99,0.0,0.0,1390.0,0.0,0.0,0.0,50.4,405.0,No,Yes,Hips,No,Truck,Rainy,2021-03-20 12:18:34.782956,2021-05-21 12:18:34.782956,11.0,50.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,,Yes,Motorcycle,Rainy,2020-08-30 16:48:46.665333,,7.0,39.0,,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Other
+735.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,240.0,No,No,Arms,Yes,Motorcycle,Rainy,2020-06-12 20:16:28.037607,2020-08-20 20:16:28.037607,8.0,48.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Male
+906.0,Rear end,F. 6 months,0.0,0.0,0.0,718.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,350.0,No,No,Multiple,Yes,Motorcycle,Snowy,2022-10-30 21:16:57.563512,2023-06-29 21:16:57.563512,16.0,63.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Other
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Sunny,2023-04-22 22:53:10.238047,2024-01-17 22:53:10.238047,7.0,29.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Male
+1530.2,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1207.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,10.2,0.0,0.0,No,Yes,Arms,Yes,Truck,Sunny,2021-03-07 22:54:19.371874,2021-11-14 22:54:19.371874,17.0,62.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Female
+914.0,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Legs,Yes,Car,Rainy,2023-07-28 07:59:19.671934,2024-07-16 07:59:19.671934,19.0,31.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Female
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-12-17 22:19:45.357071,2021-09-27 22:19:45.357071,16.0,74.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Female
+1375.0,Rear end,F. 6 months,0.0,0.0,0.0,1972.0,0.0,,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Snowy,,2021-06-26 14:10:03.480696,5.0,,3.0,Hit a deer on the highway.,,Yes,Yes,Male
+3034.98,Other side pulled out of side road,E. 5 months,0.0,0.0,800.0,1400.0,0.0,369.98,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Arms,No,Car,Rainy,2023-02-24 17:02:36.271254,2023-05-06 17:02:36.271254,9.0,72.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+1224.15,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,869.85,0.0,0.0,520.0,0.0,0.0,0.0,109.2,400.0,No,Yes,Hips,No,Car,Sunny,2020-06-21 00:32:15.747149,2021-05-10 00:32:15.747149,0.0,44.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+4034.0,Rear end,J. 10 months,0.0,0.0,0.0,2400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,244.0,No,Yes,Multiple,No,Car,Rainy,2023-06-17 10:40:21.124224,2023-09-25 10:40:21.124224,0.0,30.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Male
+597.19,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99,0.0,0.0,260.0,0.0,0.0,25.2,0.0,294.0,No,Yes,Legs,No,Motorcycle,Snowy,2023-12-03 06:06:24.556911,2024-02-02 06:06:24.556911,8.0,41.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+1153.0,Other side reversed into clt's stationary vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,798.0,No,Yes,Multiple,Yes,Car,Snowy,2021-02-04 09:53:23.920784,2021-05-18 09:53:23.920784,19.0,55.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+975.0,Rear end,F. 6 months,0.0,,,580.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,,Truck,Sunny,2023-08-28 21:00:15.123024,2023-12-25 21:00:15.123024,2.0,76.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+1121.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,226.0,No,Yes,Hips,No,Truck,Snowy,2022-12-31 12:15:59.231846,2023-01-17 12:15:59.231846,5.0,70.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+1000.0,,I. 9 months,0.0,0.0,0.0,179.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,0.0,No,Yes,Hips,Yes,Truck,Snowy,2023-01-02 20:20:30.006001,2023-11-03 20:20:30.006001,6.0,64.0,,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+1263.7,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.7,0.0,0.0,895.0,0.0,0.0,0.0,,350.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2021-09-05 07:44:38.215643,2022-03-15 07:44:38.215643,8.0,77.0,1.0,,Minor cuts and scrapes.,No,No,Female
+1797.88,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,882.88,0.0,0.0,840.0,0.0,0.0,0.0,0.0,126.0,No,No,Arms,Yes,Car,Sunny,2021-07-04 05:42:47.313462,2022-02-01 05:42:47.313462,4.0,71.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,,Yes,,,2020-08-06 04:01:23.536707,2020-10-23 04:01:23.536707,15.0,72.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Male
+1969.4,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,29.4,0.0,525.0,No,Yes,Multiple,Yes,Car,Rainy,2020-05-15 05:21:11.054210,2020-06-30 05:21:11.054210,1.0,65.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2020-08-07 22:04:46.617323,2020-11-08 22:04:46.617323,2.0,26.0,,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Female
+1520.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2020-06-18 23:28:18.819763,2020-07-01 23:28:18.819763,2.0,25.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Other
+840.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,,Legs,No,Car,Rainy,,,19.0,54.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+1216.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,,,No,Multiple,No,Motorcycle,Sunny,2023-04-16 12:40:45.609121,2024-02-11 12:40:45.609121,9.0,32.0,,,Minor cuts and scrapes.,No,Yes,Other
+3396.0,Rear end,L. 12 months,0.0,0.0,0.0,1960.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,506.0,No,Yes,Hips,Yes,Car,Rainy,2023-04-27 01:01:04.092818,2023-05-14 01:01:04.092818,2.0,24.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Male
+2795.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2023-03-22 02:51:40.940188,2024-01-19 02:51:40.940188,14.0,41.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+920.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,495.0,,0.0,0.0,0.0,425.0,No,No,Legs,,Truck,,2023-11-07 13:16:46.041208,2024-01-08 13:16:46.041208,13.0,66.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Sunny,2022-09-06 06:31:28.217643,2022-10-19 06:31:28.217643,3.0,33.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Other
+753.5,Rear end,E. 5 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,29.4,284.0,No,Yes,Legs,No,Motorcycle,Snowy,2022-03-31 02:24:01.728345,2022-06-07 02:24:01.728345,9.0,41.0,,Hit a deer on the highway.,,No,Yes,Female
+955.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,60.0,0.0,No,Yes,Hips,No,Truck,Snowy,2022-11-18 06:52:29.909982,2023-06-18 06:52:29.909982,10.0,60.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+1430.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,110.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Rainy,2023-02-16 19:47:22.408481,2023-09-07 19:47:22.408481,10.0,24.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+1622.24,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,650.0,0.0,288.87,490.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,102.24,50.0,No,Yes,Multiple,Yes,Truck,Snowy,2021-02-18 10:20:28.565713,2021-09-20 10:20:28.565713,7.0,60.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+937.27,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.67,0.0,0.0,0.0,495.0,0.0,0.0,0.0,25.8,462.0,No,No,Legs,Yes,Truck,Sunny,2021-09-24 21:22:25.949189,2022-01-11 21:22:25.949189,8.0,77.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Female
+1070.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2021-09-18 04:09:27.473494,2022-06-29 04:09:27.473494,7.0,45.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+1257.66,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,67.66,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,443.0,No,No,Multiple,No,Car,Snowy,2021-09-24 21:22:25.949189,2021-12-27 21:22:25.949189,11.0,19.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+950.0,Other,H. 8 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,126.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2021-03-31 14:40:00.960192,2021-11-11 14:40:00.960192,16.0,,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+495.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Rainy,2020-12-09 11:03:23.800760,2021-07-22 11:03:23.800760,14.0,77.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+1095.0,Other side drove on wrong side of the road,G. 7 months,0.0,0.0,0.0,1103.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2021-01-05 07:55:17.703540,2021-09-01 07:55:17.703540,18.0,55.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Female
+,Other side turned across Clt's path,I. 9 months,0.0,,0.0,1112.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,105.0,No,,Legs,No,Motorcycle,Snowy,2022-11-13 14:43:28.361672,2023-03-11 14:43:28.361672,19.0,20.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+272.12,Other side reversed into Clt's vehicle,C. 3 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,12.12,0.0,0.0,260.0,,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Rainy,2020-12-06 12:57:45.333066,2021-03-07 12:57:45.333066,5.0,18.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+1070.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Hips,Yes,Truck,Snowy,2022-11-10 02:36:42.200440,2023-10-16 02:36:42.200440,4.0,48.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+2000.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,1105.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2022-04-09 17:42:38.671734,2023-01-23 17:42:38.671734,7.0,73.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Female
+840.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Snowy,2021-06-30 03:34:53.458691,2022-04-07 03:34:53.458691,17.0,40.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Male
+858.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,18.0,,0.0,No,No,Legs,No,Car,Snowy,2023-02-21 11:56:23.956791,2023-03-12 11:56:23.956791,14.0,37.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+495.0,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Rainy,2021-10-24 02:18:50.626125,2022-04-17 02:18:50.626125,2.0,33.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+1145.0,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,0.0,1187.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2022-04-22 21:08:01.776355,2022-08-06 21:08:01.776355,13.0,63.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Male
+1613.2,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Multiple,No,Car,Sunny,2020-02-16 10:29:41.636327,2020-12-01 10:29:41.636327,14.0,49.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+895.0,Other side changed lanes on a roundabout colliding with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Snowy,2022-02-15 06:59:24.712942,2022-10-21 06:59:24.712942,12.0,34.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+495.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Snowy,2023-01-04 00:22:45.393078,2023-11-23 00:22:45.393078,19.0,35.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Female
+1263.7,,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,,,350.0,No,Yes,Arms,Yes,Car,Sunny,2023-10-14 14:30:30.606121,2024-03-04 14:30:30.606121,8.0,74.0,2.0,,Concussion and bruised ribs.,Yes,Yes,Male
+795.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Arms,No,Motorcycle,Snowy,2020-11-04 02:55:08.341668,2021-08-29 02:55:08.341668,16.0,21.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Other
+547.5,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,52.5,No,No,Hips,Yes,Car,Sunny,2020-04-07 06:07:50.974194,2020-10-17 06:07:50.974194,18.0,52.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+1120.0,Other side turned across Clt's path,E. 5 months,0.0,,0.0,600.0,0.0,0.0,0.0,,0.0,,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2022-11-16 05:48:32.982596,2023-11-02 05:48:32.982596,3.0,57.0,3.0,,Minor cuts and scrapes.,No,No,Female
+1055.13,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,10.81,510.32,Yes,Yes,Hips,No,Truck,Rainy,2020-09-17 05:22:37.471494,2021-07-17 05:22:37.471494,19.0,53.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+2659.0,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Multiple,No,Car,Rainy,2022-05-22 09:05:00.300060,2023-03-09 09:05:00.300060,9.0,40.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+995.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Rainy,2023-07-22 18:48:36.583316,2024-06-18 18:48:36.583316,2.0,32.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+4140.0,Other side pulled on to roundabout,H. 8 months,0.0,0.0,0.0,3220.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,600.0,No,No,Arms,No,Car,Rainy,2021-02-01 18:48:19.299859,2021-08-28 18:48:19.299859,18.0,30.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Female
+1470.87,Rear end,G. 7 months,,,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,,3.87,322.0,No,Yes,Legs,No,Motorcycle,Rainy,2020-09-27 03:41:48.261652,2021-06-02 03:41:48.261652,8.0,31.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+2470.0,Other side turned across Clt's path,I. 9 months,0.0,0.0,0.0,2760.0,0.0,0.0,630.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Sunny,2021-12-14 11:58:07.657531,2022-05-05 11:58:07.657531,4.0,79.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Other
+520.0,Other side reversed into clt's stationary vehicle,D. 4 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,0.0,,No,Yes,Multiple,No,Car,Snowy,2022-01-22 15:13:43.124624,2022-11-29 15:13:43.124624,13.0,31.0,2.0,,Whiplash and minor bruises.,Yes,Yes,Male
+1550.0,Rear end - Clt pushed into next vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,160.0,No,Yes,Legs,Yes,Truck,Sunny,2023-03-08 09:25:10.142028,2023-10-16 09:25:10.142028,6.0,54.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+849.5,Rear end,F. 6 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,142.0,No,Yes,Legs,No,Car,Rainy,2021-12-03 09:36:41.480296,2022-07-16 09:36:41.480296,5.0,22.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,,2021-02-18 10:20:28.565713,2022-02-07 10:20:28.565713,7.0,76.0,,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+1510.0,Rear end - Clt pushed into next vehicle,J. 10 months,0.0,0.0,0.0,1063.0,,0.0,0.0,0.0,130.84,0.0,0.0,1390.0,0.0,,0.0,0.0,120.0,No,Yes,Legs,No,Truck,Snowy,2022-04-19 16:01:49.461892,2022-10-20 16:01:49.461892,1.0,39.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+3427.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,2300.0,0.0,0.0,,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,290.0,No,Yes,,Yes,Car,Rainy,2020-01-18 05:33:16.959391,2021-01-16 05:33:16.959391,13.0,45.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Male
+840.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,455.0,No,No,Hips,Yes,Motorcycle,Rainy,2022-01-07 03:43:49.245849,2022-11-08 03:43:49.245849,6.0,62.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Female
+988.0,Rear end,G. 7 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,93.0,No,Yes,Arms,No,,Rainy,2023-01-13 22:41:56.183236,2023-07-20 22:41:56.183236,2.0,,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+495.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,135.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Rainy,2022-02-15 13:59:58.559711,2022-06-08 13:59:58.559711,19.0,67.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Other
+853.98,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.48,518.0,No,Yes,Arms,No,Truck,Rainy,2023-04-11 06:30:36.367273,2023-10-09 06:30:36.367273,5.0,55.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+1189.0,Other,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,405.0,No,Yes,Legs,No,Car,Rainy,2021-04-05 20:50:10.202040,2021-10-21 20:50:10.202040,13.0,46.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+790.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,270.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2023-07-10 19:25:28.865773,2023-09-18 19:25:28.865773,11.0,54.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+1230.28,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,335.28,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,,,Rainy,2022-06-25 20:11:34.218843,2022-09-19 20:11:34.218843,17.0,52.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Male
+1820.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2020-07-25 11:38:49.665933,2020-09-02 11:38:49.665933,11.0,37.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+1101.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,168.0,0.0,0.0,0.0,135.0,Yes,No,Legs,Yes,Truck,Snowy,2021-06-03 20:44:07.249449,2021-10-12 20:44:07.249449,6.0,52.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+570.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Hips,No,Car,Sunny,2021-12-05 17:41:12.254450,2021-12-15 17:41:12.254450,4.0,52.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Other
+895.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,895.0,,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-12-17 13:34:03.048609,2023-12-20 13:34:03.048609,11.0,37.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Male
+1191.5,,G. 7 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,89.5,0.0,0.0,0.0,207.0,,Yes,Arms,Yes,Car,Snowy,2022-09-21 18:01:22.096419,2023-07-20 18:01:22.096419,8.0,19.0,4.0,,Fractured arm and leg.,No,Yes,Other
+,Other,H. 8 months,0.0,0.0,0.0,1537.55,0.0,,0.0,0.0,0.0,0.0,,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2021-09-23 03:19:02.868573,2022-02-20 03:19:02.868573,10.0,69.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Female
+1776.0,Rear end,F. 6 months,0.0,0.0,0.0,1445.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Sunny,2022-10-30 14:16:23.716743,2023-01-05 14:16:23.716743,3.0,75.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+1691.0,Other side drove on wrong side of the road,G. 7 months,0.0,0.0,0.0,575.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Legs,Yes,Car,Rainy,2020-06-26 13:42:58.835767,2021-01-05 13:42:58.835767,13.0,76.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Other
+650.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,,Arms,,Car,Rainy,2020-03-30 22:53:44.804960,2020-07-05 22:53:44.804960,11.0,35.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Other
+2235.0,Rear end,O. 15 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,110.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2023-06-11 21:29:38.035607,2023-06-30 21:29:38.035607,17.0,47.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+640.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,120.0,No,Yes,Arms,No,Motorcycle,Snowy,2021-11-21 10:13:33.762752,2022-10-05 10:13:33.762752,6.0,59.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2020-02-23 17:43:47.805561,2020-05-31 17:43:47.805561,0.0,73.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+2028.48,Rear end,I. 9 months,0.0,0.0,0.0,1185.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,70.98,625.0,No,Yes,Hips,Yes,Truck,Rainy,2020-03-12 13:18:12.458491,2020-05-08 13:18:12.458491,12.0,75.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+240.0,Other,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,,15.24,0.0,No,No,Arms,Yes,Car,Rainy,2020-03-10 12:14:15.531106,2021-02-24 12:14:15.531106,15.0,,1.0,Lost control on a snowy road.,,No,Yes,Other
+2944.63,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,2790.0,0.0,2178.92,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,375.0,No,No,Legs,No,Motorcycle,Rainy,2020-05-31 13:52:46.473294,2020-09-15 13:52:46.473294,4.0,46.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Male
+565.0,Other side turned across Clt's path,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,45.0,No,Yes,Legs,Yes,Truck,Sunny,2023-02-15 01:43:59.327865,2023-05-14 01:43:59.327865,18.0,56.0,4.0,,Concussion and bruised ribs.,No,No,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2020-03-21 14:35:41.708341,2020-08-09 14:35:41.708341,8.0,76.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Other
+1875.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,1208.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Legs,Yes,Car,Sunny,2023-03-22 09:52:14.786957,2023-08-13 09:52:14.786957,8.0,69.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+1054.0,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129.0,0.0,0.0,895.0,0.0,0.0,0.0,30.0,109.8,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-06-12 11:30:45.729145,2023-08-03 11:30:45.729145,11.0,75.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Male
+3396.0,Rear end,L. 12 months,0.0,0.0,0.0,1960.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,506.0,No,Yes,Legs,Yes,Car,Rainy,2020-06-25 16:41:17.295459,2021-01-23 16:41:17.295459,17.0,39.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Male
+4826.0,Rear end - 3 car - Clt at front,X. 24 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4345.0,0.0,,0.0,0.0,634.99,No,Yes,Legs,Yes,Truck,Snowy,,2023-10-08 13:59:41.276255,9.0,46.0,,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+3325.0,,F. 6 months,0.0,0.0,475.0,1950.0,0.0,0.0,260.0,0.0,0.0,0.0,,520.0,0.0,0.0,254.2,,565.0,No,Yes,Hips,Yes,Truck,Snowy,2023-09-06 08:16:36.679335,2024-07-06 08:16:36.679335,16.0,77.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2023-03-29 17:06:20.956191,2023-06-28 17:06:20.956191,18.0,63.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Other
+1620.0,Rear end,J. 10 months,0.0,,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,1320.0,,0.0,0.0,0.0,422.0,No,No,Legs,Yes,Car,Rainy,,2022-04-11 01:29:52.438487,10.0,27.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+844.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,54.0,406.0,No,Yes,Multiple,No,Car,Sunny,2020-02-11 04:19:32.394478,2020-02-24 04:19:32.394478,15.0,37.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+1320.0,,K. 11 months,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Car,Sunny,2022-12-05 05:25:13.022604,2023-03-11 05:25:13.022604,,33.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+2270.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,1575.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2021-11-22 21:16:22.996599,2022-03-11 21:16:22.996599,14.0,23.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+1145.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Multiple,Yes,Car,Rainy,2021-05-16 11:08:34.902980,2021-08-28 11:08:34.902980,10.0,34.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Other
+1207.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,4.35,455.0,No,Yes,Hips,Yes,Car,Sunny,2023-08-23 14:50:05.881176,2024-08-11 14:50:05.881176,6.0,23.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Male
+811.0,Rear end,B. 2 months,0.0,0.0,0.0,570.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,1.0,0.0,0.0,0.0,No,No,Arms,No,Car,Snowy,2023-10-23 15:47:59.855971,2024-06-10 15:47:59.855971,1.0,39.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+1208.14,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,688.14,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2022-09-27 21:13:12.878575,2022-11-09 21:13:12.878575,18.0,35.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Other
+753.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,29.4,284.0,No,Yes,Hips,No,Motorcycle,Sunny,2021-11-09 17:50:59.891978,2022-06-06 17:50:59.891978,8.0,49.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+3448.75,Rear end,H. 8 months,0.0,0.0,0.0,1067.5,66.95,0.0,0.0,0.0,130.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2021-06-22 13:20:13.442688,2021-09-18 13:20:13.442688,17.0,45.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+957.5,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Legs,No,Car,Sunny,2020-04-26 12:45:04.860972,2020-07-28 12:45:04.860972,12.0,59.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Male
+859.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,455.0,No,No,Multiple,No,Car,Sunny,2023-10-23 01:46:52.162432,2024-04-14 01:46:52.162432,0.0,27.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Female
+495.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Truck,Snowy,2022-01-18 13:05:49.269853,2022-05-24 13:05:49.269853,18.0,58.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Female
+1287.8,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,22.8,0.0,370.0,No,Yes,Multiple,Yes,Truck,Snowy,2021-03-20 12:18:34.782956,2021-07-07 12:18:34.782956,12.0,39.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+1160.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,173.0,0.0,0.0,0.0,325.0,Yes,Yes,Hips,No,Car,Snowy,2021-01-24 14:32:31.590318,2021-03-12 14:32:31.590318,13.0,45.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Female
+982.0,Rear end,H. 8 months,0.0,0.0,0.0,2305.0,0.0,87.0,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,,2022-09-07 01:39:40.076015,16.0,32.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Male
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Sunny,2020-03-10 12:14:15.531106,2020-06-10 12:14:15.531106,19.0,60.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+2180.0,Other side pulled out of side road,M. 13 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Hips,Yes,Truck,Snowy,2022-07-27 23:13:37.363472,,0.0,46.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Female
+720.0,Rear end,F. 6 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Snowy,2022-12-01 03:17:19.167833,2023-01-11 03:17:19.167833,4.0,24.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+1254.6,Other side drove on wrong side of the road,,0.0,0.0,0.0,3000.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,9.6,0.0,No,Yes,Multiple,,Motorcycle,Rainy,2021-04-16 23:11:36.379275,2021-12-31 23:11:36.379275,19.0,67.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+240.0,Other side pulled on to roundabout,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Motorcycle,Snowy,2021-12-10 09:50:13.802760,2022-04-10 09:50:13.802760,13.0,51.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2022-12-02 14:20:08.401680,2023-02-17 14:20:08.401680,17.0,49.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Female
+1255.0,Other side collided with Clt's parked vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,400.0,No,Yes,Arms,No,Car,Sunny,2021-05-17 15:10:50.290058,2021-08-20 15:10:50.290058,12.0,19.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+1627.0,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,925.0,No,Yes,Multiple,No,Truck,Sunny,2021-01-06 11:57:33.090618,2021-10-02 11:57:33.090618,11.0,43.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+315.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Multiple,No,Truck,Rainy,2022-07-05 18:30:45.009001,2023-07-01 18:30:45.009001,14.0,62.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+,Rear end,C. 3 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,,,2022-04-20 13:03:31.002200,2022-05-08 13:03:31.002200,3.0,28.0,,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Female
+1440.0,Rear end,H. 8 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,350.0,No,No,Multiple,Yes,Car,Snowy,2021-03-24 07:25:54.790958,2022-01-11 07:25:54.790958,8.0,42.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Male
+2402.87,Other side turned across Clt's path,D. 4 months,0.0,0.0,0.0,0.0,0.0,1432.67,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,18.9,539.3,No,Yes,Legs,Yes,Truck,Snowy,2020-06-05 06:01:48.021604,2020-11-23 06:01:48.021604,2.0,36.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+2456.18,Rear end,H. 8 months,0.0,0.0,0.0,1445.0,0.0,360.18,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,,No,Hips,Yes,Motorcycle,Snowy,2020-10-03 20:54:46.737347,2021-03-14 20:54:46.737347,10.0,78.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Other
+967.87,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,,0.0,0.0,0.0,0.0,586.87,No,Yes,Multiple,No,Motorcycle,,2023-12-19 00:36:52.282456,2024-10-25 00:36:52.282456,14.0,37.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+1182.13,Other side pulled out of side road,E. 5 months,0.0,0.0,400.0,0.0,0.0,262.13,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2022-02-10 14:50:23.164632,2022-04-03 14:50:23.164632,15.0,50.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Male
+2270.0,Rear end,J. 10 months,0.0,0.0,0.0,1400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Rainy,2023-02-25 00:03:10.118023,2023-04-02 00:03:10.118023,6.0,34.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Male
+462.29,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,222.29,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Snowy,2020-10-25 04:35:57.551510,2021-04-30 04:35:57.551510,6.0,69.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Female
+845.0,Rear end,D. 4 months,0.0,0.0,0.0,445.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,,No,Car,Snowy,2020-05-06 11:04:15.651130,2021-01-09 11:04:15.651130,8.0,47.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+1320.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Snowy,2021-02-13 18:11:27.017403,2021-04-06 18:11:27.017403,16.0,35.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+628.0,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,483.0,0.0,0.0,0.0,0.0,165.0,0.0,0.0,260.0,0.0,0.0,0.0,10.0,0.0,No,Yes,Arms,No,Motorcycle,Rainy,2022-10-22 10:00:36.007201,2022-11-10 10:00:36.007201,12.0,49.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+1575.0,Other side pulled out of side road,G. 7 months,0.0,0.0,250.0,0.0,0.0,0.0,80.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2022-05-07 04:35:40.268053,2022-08-07 04:35:40.268053,8.0,57.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+1600.0,Rear end,E. 5 months,0.0,0.0,0.0,1444.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Arms,No,Truck,Rainy,2023-11-25 15:51:44.540908,2024-04-12 15:51:44.540908,8.0,62.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2023-05-30 08:05:22.624524,2024-03-29 08:05:22.624524,19.0,21.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Female
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2023-11-04 01:09:59.879976,2024-10-26 01:09:59.879976,11.0,49.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+1355.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Multiple,No,Car,Rainy,2022-08-31 10:20:11.282256,2023-04-08 10:20:11.282256,18.0,36.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+1855.03,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,903.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,47.03,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2021-04-12 21:03:42.524504,2021-07-20 21:03:42.524504,14.0,20.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+728.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,173.0,0.0,0.0,60.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Truck,Rainy,2020-03-07 14:08:37.063412,2020-10-29 14:08:37.063412,17.0,55.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Other
+1370.0,Rear end,,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,170.0,No,,Multiple,Yes,Motorcycle,Rainy,2023-08-13 16:30:55.091018,2024-03-07 16:30:55.091018,7.0,45.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+1855.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,0.0,,0.0,880.0,455.0,No,Yes,Hips,Yes,Car,Sunny,2023-05-16 14:38:51.826365,2023-10-07 14:38:51.826365,5.0,78.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+1173.8,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,28.8,290.0,No,Yes,Arms,Yes,Car,Snowy,2021-10-03 08:38:47.505501,2022-04-20 08:38:47.505501,5.0,55.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+1399.1,,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,684.1,No,Yes,Hips,No,Truck,Snowy,2022-04-26 16:15:21.784356,2023-02-23 16:15:21.784356,2.0,71.0,2.0,Swerved to avoid another vehicle.,,No,Yes,Male
+767.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Legs,No,Car,Rainy,2020-02-02 03:02:03.144628,2020-12-21 03:02:03.144628,2.0,23.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+520.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2020-12-29 07:41:45.381076,,1.0,73.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Snowy,2023-04-29 16:06:08.713742,2024-03-26 16:06:08.713742,4.0,57.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Female
+529.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,9.0,0.0,No,Yes,Multiple,No,Car,Rainy,2022-02-23 04:14:38.575715,2022-11-14 04:14:38.575715,19.0,74.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Other
+520.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Sunny,2023-01-15 02:44:11.570314,2023-08-20 02:44:11.570314,11.0,34.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+873.88,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,227.88,50.0,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,76.0,No,Yes,Legs,No,Truck,Rainy,2023-02-03 09:21:25.457091,2023-08-11 09:21:25.457091,5.0,59.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+1005.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,510.0,No,No,Multiple,Yes,Truck,Sunny,2021-02-06 03:56:47.001400,,15.0,73.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+7862.9,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,7735.58,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Snowy,2021-06-01 05:39:02.628525,2022-03-19 05:39:02.628525,4.0,22.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+1570.0,Rear end,E. 5 months,0.0,0.0,0.0,1846.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,108.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-01-04 12:06:46.161232,2020-07-11 12:06:46.161232,5.0,36.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Female
+808.0,Other,E. 5 months,0.0,0.0,0.0,115.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Multiple,Yes,Truck,Rainy,2023-06-19 18:44:51.898379,2023-12-30 18:44:51.898379,3.0,60.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+260.0,Rear end,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,260.0,,0.0,0.0,,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2022-08-10 09:39:34.314862,2023-05-07 09:39:34.314862,13.0,59.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+852.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,332.0,No,Yes,Hips,No,Car,Snowy,2020-07-12 08:13:26.561312,2021-03-29 08:13:26.561312,2.0,52.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+1694.5,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,124.5,0.0,798.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2022-06-22 01:04:14.210842,2023-02-16 01:04:14.210842,16.0,39.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+1620.0,Rear end,E. 5 months,0.0,0.0,0.0,2090.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2020-07-21 09:30:55.811162,2020-11-10 09:30:55.811162,4.0,41.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Other
+746.75,Rear end,,0.0,,100.0,0.0,0.0,101.75,0.0,0.0,0.0,0.0,0.0,495.0,,0.0,,0.0,50.0,No,No,Legs,No,Car,Sunny,2022-09-17 01:52:20.548109,2022-11-25 01:52:20.548109,5.0,27.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+1740.0,Other side changed lanes and collided with clt's vehicle,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,524.0,No,No,Multiple,Yes,Car,Sunny,2020-12-10 22:06:13.034606,2021-01-28 22:06:13.034606,19.0,19.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+260.0,Other side reversed into clt's stationary vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,,,0.0,,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Rainy,2022-05-31 10:22:29.549909,2023-04-07 10:22:29.549909,3.0,45.0,1.0,Rear-ended at a stoplight.,,No,No,Other
+1800.0,Rear end,F. 6 months,0.0,0.0,0.0,2200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2021-03-15 06:08:25.541108,2021-08-13 06:08:25.541108,12.0,58.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Male
+1360.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,,0.0,525.0,No,Yes,Arms,No,Car,Snowy,2021-07-09 11:52:56.555311,2022-03-05 11:52:56.555311,7.0,54.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Other
+1600.0,Rear end,D. 4 months,0.0,0.0,0.0,930.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,175.0,No,No,Arms,Yes,Car,Sunny,2023-05-03 04:12:54.874974,2024-04-04 04:12:54.874974,10.0,70.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+240.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,,Motorcycle,Sunny,2020-04-05 19:05:01.740348,2020-07-29 19:05:01.740348,18.0,34.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+2603.46,Rear end,G. 7 months,0.0,0.0,0.0,1540.0,0.0,0.0,0.0,0.0,16.0,0.0,0.0,895.0,0.0,0.0,0.0,17.46,135.0,No,Yes,Arms,No,Truck,Rainy,2021-02-24 06:31:45.501100,2021-05-10 06:31:45.501100,4.0,23.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Female
+718.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,274.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2023-01-28 06:09:34.674934,2023-05-06 06:09:34.674934,4.0,78.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Other
+1070.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Hips,No,Motorcycle,Snowy,2023-05-02 00:10:39.487897,,2.0,60.0,2.0,,Whiplash and minor bruises.,No,No,Male
+620.94,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,73.11,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,60.33,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2020-03-06 10:06:21.676335,2021-02-26 10:06:21.676335,1.0,76.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Female
+1118.9,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.9,0.0,0.0,520.0,0.0,0.0,0.0,22.44,574.0,No,Yes,Multiple,Yes,Car,Sunny,2022-01-05 23:41:33.858771,2022-10-17 23:41:33.858771,2.0,22.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+2786.98,Rear end,J. 10 months,0.0,0.0,0.0,989.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,112.98,345.0,No,Yes,Arms,Yes,Car,Snowy,2022-12-20 16:55:06.901380,2023-09-02 16:55:06.901380,14.0,56.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Other
+795.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,400.0,No,Yes,Multiple,No,Car,Snowy,2021-12-03 23:37:49.173834,2022-10-17 23:37:49.173834,6.0,24.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+565.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,70.0,No,No,Multiple,No,Truck,Sunny,2020-08-24 13:36:55.883176,2021-06-29 13:36:55.883176,2.0,49.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Male
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,,Car,Rainy,2022-06-29 08:18:20.380076,2022-10-24 08:18:20.380076,14.0,21.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+,Other,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,196.44,0.0,0.0,495.0,0.0,0.0,0.0,0.0,180.0,No,No,,,Truck,Rainy,2023-10-25 23:52:30.630126,2024-04-18 23:52:30.630126,10.0,38.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Female
+2917.52,Other side turned across Clt's path,,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,317.52,,0.0,0.0,0.0,0.0,455.0,No,Yes,Arms,Yes,Car,Sunny,2022-08-18 20:55:55.871174,2023-04-03 20:55:55.871174,15.0,59.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+520.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Rainy,2023-07-04 23:14:11.930386,2024-06-15 23:14:11.930386,12.0,79.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+1550.0,Rear end - Clt pushed into next vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,,No,Yes,Hips,,Car,Rainy,2021-10-19 10:09:49.077815,2022-02-02 10:09:49.077815,1.0,49.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Male
+2270.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,1575.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,,No,Yes,,Yes,Truck,Rainy,2023-09-23 06:49:19.791958,2024-08-30 06:49:19.791958,19.0,73.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Female
+703.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,183.0,No,Yes,Multiple,Yes,Truck,Snowy,2022-01-08 14:46:38.479695,2022-09-04 14:46:38.479695,11.0,35.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Male
+2280.0,Rear end - Clt pushed into next vehicle,J. 10 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,246.0,No,Yes,Multiple,Yes,Car,Rainy,2023-09-07 05:18:18.219643,2023-12-16 05:18:18.219643,6.0,50.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+3590.0,Other side pulled on to roundabout,L. 12 months,0.0,0.0,0.0,2200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2020-09-26 13:40:40.568113,2021-03-21 13:40:40.568113,0.0,31.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+773.5,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,4.5,345.0,No,Yes,Hips,Yes,Car,Rainy,2022-06-10 08:41:40.340068,2023-05-26 08:41:40.340068,13.0,23.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+1452.5,Other side turned across Clt's path,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,,12.5,No,Yes,Legs,No,Car,Snowy,2020-01-05 09:08:27.701540,2020-09-10 09:08:27.701540,9.0,28.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Male
+1142.3,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,32.3,325.0,No,Yes,Legs,No,Car,Sunny,2022-11-16 05:48:32.982596,2023-01-31 05:48:32.982596,2.0,63.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Male
+2640.2,,N. 14 months,0.0,0.0,0.0,556.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,10.2,366.0,No,Yes,Hips,Yes,,Sunny,2021-12-02 19:35:33.786757,2021-12-05 19:35:33.786757,10.0,37.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Other
+,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1980.0,,32.37,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2023-07-23 22:50:51.970394,2023-10-12 22:50:51.970394,19.0,46.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+1246.0,Rear end,G. 7 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,266.0,No,No,Hips,Yes,Motorcycle,Snowy,2023-12-09 09:18:15.339067,2024-12-04 09:18:15.339067,14.0,75.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+1390.0,Other side reversed into clt's stationary vehicle,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Sunny,2023-03-17 03:42:05.545109,2023-12-30 03:42:05.545109,5.0,52.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+995.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,,565.0,No,Yes,Arms,Yes,Truck,Sunny,2022-02-11 18:52:38.551710,2022-02-19 18:52:38.551710,,33.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+900.6600000000001,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,15.6625,0.0,575.0,No,Yes,Arms,Yes,Truck,Sunny,2020-11-17 13:21:05.293058,2021-02-12 13:21:05.293058,12.0,65.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Male
+1409.99,Rear end - Clt pushed into next vehicle,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,80.0,0.0,89.99,0.0,0.0,1320.0,0.0,0.0,0.0,87.6,0.0,No,No,Hips,No,Motorcycle,Sunny,2022-05-18 20:58:14.138827,2023-02-28 20:58:14.138827,14.0,24.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+1592.8,Rear end,F. 6 months,0.0,0.0,550.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,70.8,0.0,575.0,No,Yes,Legs,No,Car,Rainy,2020-11-14 08:14:52.978595,2021-01-27 08:14:52.978595,2.0,57.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+650.0,Rear end,F. 6 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,,80.0,0.0,0.0,520.0,0.0,0.0,,0.0,0.0,No,Yes,,No,Car,Snowy,,2022-08-29 17:19:18.711742,14.0,76.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Other
+847.5,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,574.0,No,Yes,Legs,No,Car,Sunny,2021-05-24 22:24:56.459291,2022-03-14 22:24:56.459291,0.0,77.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+927.56,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,7.56,455.0,No,Yes,Arms,Yes,Car,Rainy,2023-06-12 11:30:45.729145,2023-11-02 11:30:45.729145,9.0,53.0,1.0,,,Yes,Yes,Male
+2042.0,Other side turned across Clt's path,L. 12 months,120.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,90.0,607.0,No,Yes,Arms,No,Car,Sunny,2021-05-17 08:10:16.443288,2021-10-22 08:10:16.443288,17.0,61.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+1701.22,Rear end,B. 2 months,0.0,0.0,0.0,1433.0,0.0,0.0,50.0,6.24,0.0,0.0,0.0,260.0,0.0,0.0,1.98,0.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2020-05-10 20:12:43.352670,2020-08-27 20:12:43.352670,7.0,61.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Other
+717.5,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,406.0,No,No,Legs,Yes,Motorcycle,Sunny,2022-05-29 16:19:06.469293,2023-04-28 16:19:06.469293,11.0,48.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Male
+1015.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,,0.0,0.0,31.2,0.0,455.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2022-10-20 08:56:39.079815,2023-05-03 08:56:39.079815,4.0,59.0,1.0,Lost control on a snowy road.,,No,Yes,Female
+1095.0,Other side drove on wrong side of the road,G. 7 months,0.0,0.0,0.0,1103.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2021-04-02 22:44:31.734346,2021-05-08 22:44:31.734346,0.0,61.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+1136.5,Rear end,H. 8 months,0.0,0.0,0.0,488.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Legs,No,Motorcycle,Snowy,2022-07-19 11:57:15.807161,2022-10-17 11:57:15.807161,7.0,60.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+739.99,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,300.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2022-10-16 13:49:19.071814,2023-08-08 13:49:19.071814,4.0,60.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Female
+931.12,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.12,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Rainy,2022-01-13 13:56:13.874774,2022-12-09 13:56:13.874774,16.0,64.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+1020.96,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,104.76,518.0,No,No,Legs,No,Car,Rainy,2023-11-04 08:10:33.726745,2024-05-23 08:10:33.726745,14.0,23.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Other
+807.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,4.35,455.0,No,No,Hips,No,Truck,Sunny,2023-07-30 23:04:24.292858,2023-09-14 23:04:24.292858,3.0,46.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+,,H. 8 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,173.0,0.0,0.0,0.0,325.0,,Yes,Legs,Yes,Motorcycle,Snowy,2020-11-01 18:50:37.567513,2021-02-16 18:50:37.567513,12.0,44.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Male
+1829.2,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,51.84,574.0,No,Yes,Multiple,No,Truck,Sunny,2023-09-15 09:34:05.929185,2024-03-03 09:34:05.929185,16.0,60.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2023-11-16 21:34:49.137827,2024-04-10 21:34:49.137827,12.0,19.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+1118.32,Other side turned across Clt's path,G. 7 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,13.32,400.0,No,No,Hips,Yes,Motorcycle,,2023-09-14 05:31:50.542108,2024-09-04 05:31:50.542108,1.0,73.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+1520.0,Other side collided with Clt's parked vehicle,I. 9 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,455.0,No,No,Legs,Yes,Car,Snowy,2023-10-24 12:49:41.396279,2024-04-19 12:49:41.396279,3.0,39.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Female
+1670.0,Rear end,G. 7 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,270.0,No,No,Arms,No,Truck,Snowy,2020-11-06 18:00:12.962592,2021-01-06 18:00:12.962592,1.0,76.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+690.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,1960.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Hips,No,Car,Sunny,2023-01-20 22:55:28.505701,2023-01-23 22:55:28.505701,11.0,26.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Male
+695.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,175.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2020-06-14 14:19:51.118223,2020-09-04 14:19:51.118223,18.0,28.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Female
+945.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,895.0,0.0,0.0,0.0,,126.0,No,Yes,Legs,Yes,Truck,Sunny,2021-02-23 09:30:03.960792,2021-11-13 09:30:03.960792,17.0,,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+1819.4,Rear end,E. 5 months,0.0,0.0,100.0,2230.0,0.0,0.0,870.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,11.4,0.0,235.0,No,Yes,Legs,No,Car,Rainy,2023-08-10 04:24:08.929785,2024-05-23 04:24:08.929785,9.0,62.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+1939.75,Other side turned across Clt's path,J. 10 months,0.0,0.0,0.0,1868.0,0.0,0.0,0.0,18.7,1.05,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,730.0,No,Yes,Multiple,No,Motorcycle,Snowy,2023-08-20 02:43:19.719943,2024-07-06 02:43:19.719943,4.0,30.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Female
+946.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,106.0,No,No,Legs,No,Motorcycle,Sunny,2023-10-06 03:14:09.049809,2024-01-09 03:14:09.049809,10.0,71.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+1182.13,Other side pulled out of side road,E. 5 months,0.0,0.0,400.0,0.0,0.0,262.13,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2022-03-01 00:25:55.511102,2022-05-04 00:25:55.511102,0.0,71.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+1906.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,895.0,0.0,0.0,0.0,,406.0,No,Yes,Hips,No,Motorcycle,Rainy,2021-12-26 04:20:41.528305,2022-08-29 04:20:41.528305,,,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+1750.0,Other side pulled out of side road,K. 11 months,0.0,0.0,0.0,903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,22.5,0.0,350.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-11-02 21:07:44.492898,2024-01-18 21:07:44.492898,16.0,35.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Female
+760.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Hips,Yes,Car,Sunny,2023-11-11 08:24:06.049209,2024-07-27 08:24:06.049209,14.0,70.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+762.75,Other,E. 5 months,0.0,0.0,0.0,20.0,0.0,222.75,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2023-01-08 16:31:46.941388,2023-04-11 16:31:46.941388,13.0,42.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Male
+520.0,,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,,No,Yes,Legs,Yes,Motorcycle,Sunny,2023-11-30 15:01:19.935987,2024-09-16 15:01:19.935987,14.0,,1.0,Lost control on a snowy road.,,No,Yes,Male
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2022-03-27 00:16:07.873574,2022-12-23 00:16:07.873574,15.0,69.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+1152.4,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,257.4,No,Yes,Hips,Yes,Car,Rainy,2021-06-27 05:29:14.990998,2021-07-18 05:29:14.990998,3.0,27.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Female
+520.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2022-09-01 07:21:52.822564,2022-11-02 07:21:52.822564,18.0,75.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Female
+695.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Snowy,2021-07-05 23:46:10.394078,2022-06-09 23:46:10.394078,7.0,47.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+2295.0,Other side pulled out of side road,,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2023-11-10 11:22:24.508901,,5.0,68.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+910.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,798.0,No,No,Hips,Yes,Car,Sunny,2023-06-07 05:20:36.487297,2024-01-30 05:20:36.487297,15.0,66.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+4755.0,Other,O. 15 months,0.0,0.0,0.0,1102.85,0.0,0.0,60.0,0.0,0.0,0.0,0.0,2040.0,0.0,2320.0,0.0,0.0,0.0,No,No,Hips,No,Car,Snowy,2020-11-16 09:18:49.905981,2021-04-06 09:18:49.905981,2.0,18.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+1417.04,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,413.0,0.0,0.0,520.0,0.0,0.0,0.0,14.04,574.0,No,Yes,Hips,No,Car,Rainy,2021-04-23 09:24:01.008201,2021-10-07 09:24:01.008201,7.0,50.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+620.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,125.0,No,No,Hips,Yes,Truck,Rainy,2021-04-29 05:35:17.943588,2021-07-05 05:35:17.943588,4.0,66.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Female
+1056.4,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,2.4,430.0,Yes,Yes,Legs,No,Motorcycle,Rainy,2020-11-24 13:34:37.615523,2021-11-09 13:34:37.615523,4.0,32.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Rainy,2020-03-17 19:28:21.700340,2020-05-14 19:28:21.700340,11.0,46.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+1182.0,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,29.52,0.0,400.0,No,Yes,Legs,Yes,Truck,Snowy,2022-05-23 20:07:49.533906,2022-12-21 20:07:49.533906,0.0,19.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Other
+260.0,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2020-02-16 17:30:15.483096,2020-06-25 17:30:15.483096,6.0,28.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2021-01-01 19:48:31.542308,2021-01-26 19:48:31.542308,10.0,70.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Female
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Sunny,2023-11-21 20:44:24.532906,2023-12-02 20:44:24.532906,9.0,51.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+495.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Snowy,2020-03-31 12:54:52.498499,2020-12-13 12:54:52.498499,2.0,69.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,895.0,0.0,,0.0,0.0,0.0,No,Yes,Legs,Yes,,Rainy,2020-03-07 00:07:29.369873,2021-01-05 00:07:29.369873,7.0,58.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+1735.0,Rear end,H. 8 months,0.0,0.0,0.0,959.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2020-03-20 10:33:26.321264,2020-06-09 10:33:26.321264,0.0,36.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+840.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,455.0,No,No,Hips,Yes,Motorcycle,Snowy,2023-07-12 13:28:51.946389,2024-04-23 13:28:51.946389,7.0,19.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Male
+1120.0,Other side overtook and hit Clt when pulling in,D. 4 months,0.0,0.0,600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2021-07-15 08:04:13.490698,2021-08-03 08:04:13.490698,19.0,,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Female
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,Yes,Car,Snowy,2022-07-11 00:40:54.250850,2022-10-29 00:40:54.250850,10.0,37.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Female
+1118.32,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,13.32,400.0,No,No,Multiple,No,Car,Sunny,2021-11-13 19:58:53.746749,2021-12-17 19:58:53.746749,6.0,58.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Female
+240.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,,Arms,Yes,Car,Snowy,2021-04-12 14:03:08.677735,2022-01-25 14:03:08.677735,15.0,69.0,,,Concussion and bruised ribs.,Yes,No,Male
+1781.46,Rear end,F. 6 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,31.46,230.0,No,Yes,Legs,Yes,Truck,Rainy,2022-12-21 20:57:22.288457,2023-11-18 20:57:22.288457,6.0,48.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+5880.02,Other side reversed into Clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,910.0,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,210.3,479.49,No,Yes,Arms,No,Motorcycle,,,2022-08-20 08:46:16.875375,,77.0,4.0,,Minor cuts and scrapes.,No,No,Male
+910.0,Rear end - Clt pushed into next vehicle,E. 5 months,,,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,798.0,No,No,Hips,No,Truck,,,2021-11-19 05:05:55.031006,9.0,70.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+723.0,Other side reversed into Clt's vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,463.0,No,Yes,Multiple,Yes,Truck,Snowy,2020-06-14 07:19:17.271454,2021-01-09 07:19:17.271454,16.0,21.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+260.0,Other,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Rainy,2022-05-01 08:24:23.332666,2022-09-12 08:24:23.332666,2.0,46.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2020-03-14 07:21:35.539107,2020-06-08 07:21:35.539107,6.0,73.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Other
+1850.0,Rear end,G. 7 months,0.0,0.0,0.0,680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Multiple,Yes,Car,Snowy,2021-11-18 12:07:55.295059,2022-02-01 12:07:55.295059,10.0,47.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+2134.43,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,1972.25,0.0,0.0,0.0,0.0,11.55,0.0,0.0,895.0,179.0,0.0,0.0,38.88,510.0,Yes,Yes,Hips,Yes,Motorcycle,Rainy,2022-10-19 11:54:57.539507,2023-03-03 11:54:57.539507,12.0,30.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,No,Motorcycle,Snowy,2023-10-25 02:50:49.089817,2024-08-21 02:50:49.089817,4.0,32.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Female
+790.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,345.0,No,No,Arms,Yes,Truck,Snowy,2021-11-05 22:43:39.883976,2022-04-27 22:43:39.883976,18.0,37.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Male
+1965.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2021-09-09 16:53:05.917183,2022-04-10 16:53:05.917183,14.0,51.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+840.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Sunny,2021-04-12 21:03:42.524504,2022-02-27 21:03:42.524504,0.0,45.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+698.5,Rear end - Clt pushed into next vehicle,C. 3 months,0.0,0.0,0.0,595.7,0.0,0.0,0.0,0.0,53.18,0.0,0.0,260.0,0.0,0.0,0.0,58.5,0.0,No,Yes,Multiple,No,Car,Snowy,2022-08-13 00:44:38.935787,2023-07-29 00:44:38.935787,4.0,37.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
+1217.79,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.99,0.0,0.0,520.0,0.0,0.0,52.8,0.0,630.0,No,Yes,Arms,No,Car,Sunny,2020-05-29 19:49:23.392678,2020-06-17 19:49:23.392678,12.0,67.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+1135.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Arms,Yes,Car,Sunny,2020-05-08 19:08:46.425285,2020-09-04 19:08:46.425285,9.0,42.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+2051.32,Other,G. 7 months,0.0,0.0,0.0,1112.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,45.19,10.43,308.7,No,Yes,Legs,No,Motorcycle,Rainy,2020-01-01 00:00:00.000000,2020-10-30 00:00:00.000000,4.0,44.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Female
+1510.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,120.0,No,Yes,Multiple,Yes,Truck,Rainy,2020-09-20 10:28:49.785957,2021-07-19 10:28:49.785957,0.0,47.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,52.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,Yes,Motorcycle,Snowy,2020-12-22 07:28:13.058611,2021-10-03 07:28:13.058611,9.0,73.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+945.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,Yes,Car,Snowy,2021-11-08 20:49:18.351670,2022-06-23 20:49:18.351670,17.0,58.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Other
+1544.4,Other,B. 2 months,0.0,,0.0,1640.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,2177.7,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,,2020-09-06 17:02:18.987797,2021-04-06 17:02:18.987797,7.0,37.0,,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Male
+651.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,253.0,No,Yes,Multiple,Yes,Car,Snowy,2020-10-24 00:33:42.164432,2021-10-15 00:33:42.164432,19.0,18.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+723.9300000000001,Other side reversed into clt's stationary vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.98,0.0,0.0,520.0,0.0,0.0,0.0,3.95,126.0,No,Yes,Hips,No,Truck,Rainy,2021-10-10 08:52:19.827965,2022-04-17 08:52:19.827965,2.0,52.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Male
+844.8,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Arms,Yes,Truck,Sunny,2023-09-28 20:00:02.880576,2024-08-14 20:00:02.880576,18.0,72.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Female
+1804.35,Rear end,F. 6 months,0.0,0.0,0.0,2305.0,0.0,0.0,0.0,0.0,30.46,0.0,0.0,495.0,0.0,0.0,0.0,16.2,9.35,No,No,Multiple,No,Motorcycle,Rainy,2022-10-20 08:56:39.079815,2023-03-20 08:56:39.079815,18.0,66.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+1239.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Hips,No,Motorcycle,Snowy,2023-08-21 20:46:42.800560,2024-03-31 20:46:42.800560,1.0,60.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+1550.25,Other side drove on wrong side of the road,E. 5 months,0.0,0.0,0.0,523.25,0.0,0.0,60.0,0.0,72.55,0.0,780.0,520.0,0.0,0.0,0.0,93.0,0.0,No,Yes,Multiple,Yes,Car,Snowy,2020-02-26 22:50:00.120024,2020-07-03 22:50:00.120024,16.0,41.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Female
+2359.0,Other side changed lanes on a roundabout colliding with clt's vehicle,H. 8 months,0.0,0.0,0.0,3450.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,19.0,No,,Hips,No,Motorcycle,Rainy,2023-10-02 22:07:56.735347,2024-06-06 22:07:56.735347,15.0,42.0,2.0,Swerved to avoid another vehicle.,,No,No,Female
+,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2021-01-24 00:31:23.896779,2021-03-16 00:31:23.896779,9.0,57.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+261.0,Other side pulled out of side road,A. 1 month,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,1.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Snowy,2023-09-20 08:43:41.324264,2024-03-29 08:43:41.324264,15.0,70.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+990.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,188.0,No,No,Multiple,No,Truck,Sunny,2021-03-19 01:15:45.549109,2021-11-11 01:15:45.549109,4.0,29.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Other
+260.0,,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2023-08-17 04:37:41.252250,2023-09-08 04:37:41.252250,19.0,28.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+495.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Car,Rainy,2022-02-26 16:21:24.736947,2022-06-16 16:21:24.736947,2.0,47.0,1.0,,Whiplash and minor bruises.,Yes,No,Male
+1335.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,686.0,No,Yes,Hips,No,Truck,Snowy,2023-07-24 19:52:33.510702,2024-06-15 19:52:33.510702,2.0,77.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+1457.41,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,80.16,0.0,0.0,482.25,No,Yes,Multiple,Yes,Truck,Snowy,2022-06-26 10:12:41.912382,2022-07-29 10:12:41.912382,1.0,30.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+990.0,Rear end,E. 5 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,,No,No,Multiple,No,Motorcycle,Sunny,2020-11-04 16:56:16.035207,2021-03-11 16:56:16.035207,3.0,64.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+3120.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,2000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,225.0,No,Yes,Hips,No,Truck,Snowy,2022-03-01 00:25:55.511102,2023-02-20 00:25:55.511102,17.0,42.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,1600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,2021-08-25 12:23:45.885177,2021-10-08 12:23:45.885177,1.0,69.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Male
+520.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2022-03-26 10:15:00.180036,2022-04-02 10:15:00.180036,5.0,42.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+913.6,Other side reversed into Clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,58.6,Yes,Yes,Legs,Yes,Truck,Rainy,2020-05-02 15:56:55.643128,2020-09-07 15:56:55.643128,2.0,34.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Motorcycle,Rainy,2023-09-19 11:41:59.783956,2023-12-19 11:41:59.783956,2.0,29.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+2036.44,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,2325.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,18.45,7.99,No,Yes,Hips,No,Motorcycle,Sunny,2022-04-01 20:27:24.808961,2022-08-09 20:27:24.808961,1.0,76.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+1421.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,747.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,50.0,Yes,Yes,Multiple,No,Truck,Snowy,2022-04-09 10:42:04.824964,2022-04-26 10:42:04.824964,2.0,68.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+260.0,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2020-10-28 02:41:36.019203,2021-09-14 02:41:36.019203,16.0,69.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+628.0,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,483.0,0.0,0.0,0.0,0.0,165.0,0.0,0.0,260.0,0.0,0.0,0.0,10.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2021-03-11 11:01:05.533106,2021-09-13 11:01:05.533106,13.0,28.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Male
+1390.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2023-12-23 23:46:27.677535,2024-04-11 23:46:27.677535,6.0,27.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2021-07-04 12:43:21.160232,2022-04-16 12:43:21.160232,5.0,34.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Sunny,2023-12-15 19:30:39.967993,2024-11-27 19:30:39.967993,7.0,77.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+2544.0,Other side turned across Clt's path,N. 14 months,0.0,0.0,0.0,1188.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2040.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Sunny,2020-05-28 15:47:08.005601,2020-11-07 15:47:08.005601,18.0,71.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Other
+836.85,Other side reversed into Clt's vehicle,F. 6 months,0.0,0.0,0.0,959.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,56.85,No,Yes,Hips,Yes,Truck,Sunny,2021-06-26 22:28:41.144228,2021-09-09 22:28:41.144228,18.0,62.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+520.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2021-06-26 15:28:07.297459,2022-01-11 15:28:07.297459,11.0,33.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+1135.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,,350.0,No,Yes,Multiple,Yes,Car,Sunny,2020-09-23 15:35:02.100420,2021-09-19 15:35:02.100420,4.0,69.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+757.0,Other side changed lanes on a roundabout colliding with clt's vehicle,E. 5 months,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,,,2.0,0.0,No,No,Multiple,Yes,Truck,Sunny,2021-08-26 02:24:53.578715,2022-06-09 02:24:53.578715,4.0,37.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Other
+675.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,175.0,No,Yes,Legs,Yes,Truck,Snowy,2022-05-16 05:53:09.517903,2022-11-14 05:53:09.517903,13.0,66.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+2195.0,Rear end - 3 car - Clt at front,G. 7 months,0.0,0.0,0.0,2030.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Snowy,2023-11-28 20:57:56.855371,2024-03-04 20:57:56.855371,16.0,22.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+260.0,Other side collided with Clt's parked vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,,Yes,Multiple,No,Car,Sunny,2023-01-25 15:04:30.054010,2023-03-17 15:04:30.054010,15.0,58.0,1.0,,Sprained ankle and wrist.,Yes,No,Other
+2061.91,Rear end,G. 7 months,0.0,0.0,0.0,523.25,0.0,,0.0,,,0.0,0.0,895.0,179.0,0.0,0.0,0.0,433.0,Yes,Yes,,No,Car,Snowy,2021-04-11 03:00:19.443888,2022-02-19 03:00:19.443888,3.0,71.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Other
+495.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Car,Sunny,2023-07-21 07:45:47.349469,2023-08-24 07:45:47.349469,7.0,73.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Male
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-11-04 02:55:08.341668,2020-11-25 02:55:08.341668,2.0,49.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,,Truck,Rainy,,2021-04-27 18:37:05.245049,4.0,44.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Male
+2402.87,Other side turned across Clt's path,D. 4 months,0.0,0.0,0.0,0.0,0.0,1432.67,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,18.9,539.3,No,Yes,Arms,Yes,Car,Sunny,2022-07-24 18:07:25.049009,2023-05-13 18:07:25.049009,6.0,21.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Other
+2356.0,Rear end,C. 3 months,0.0,0.0,0.0,2096.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2020-06-16 22:24:21.892378,2020-08-19 22:24:21.892378,17.0,58.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+1050.8,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,219.8,0.0,0.0,520.0,0.0,0.0,0.0,0.0,311.0,No,Yes,Arms,Yes,Car,Sunny,2020-02-27 19:51:41.660332,2020-06-30 19:51:41.660332,7.0,65.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+884.5,Rear end,F. 6 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,21.0,455.0,No,Yes,Hips,Yes,Truck,Sunny,2021-02-02 15:50:00.840168,2021-05-14 15:50:00.840168,,24.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+2486.79,Rear end,F. 6 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,14.79,182.0,No,Yes,Arms,No,Truck,Rainy,2021-08-06 12:47:05.845169,2021-12-03 12:47:05.845169,13.0,63.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+1430.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,959.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Rainy,2020-10-23 17:33:08.317663,2021-09-29 17:33:08.317663,17.0,31.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Female
+1170.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Legs,No,Car,Rainy,2022-11-22 16:00:57.611522,2023-02-08 16:00:57.611522,12.0,56.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Other
+1895.0,Other side pulled on to roundabout,H. 8 months,0.0,0.0,0.0,1261.0,,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,,Yes,Arms,No,Truck,Sunny,2020-01-08 07:14:06.169233,2020-07-07 07:14:06.169233,5.0,41.0,3.0,Lost control on a snowy road.,,Yes,Yes,Male
+990.0,Rear end,A. 1 month,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Rainy,2021-03-31 00:38:53.266653,2021-10-16 00:38:53.266653,12.0,65.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+832.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Multiple,No,Truck,Rainy,2022-12-23 15:00:45.369073,2023-12-18 15:00:45.369073,0.0,35.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+1145.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,1132.0,0.0,0.0,0.0,0.0,137.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2022-10-06 22:30:42.128425,2023-04-14 22:30:42.128425,10.0,77.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+838.6,Other side overtook and hit Clt when pulling in,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,520.0,0.0,0.0,0.0,18.6,290.0,No,Yes,Hips,No,Car,Snowy,2022-09-07 03:33:09.757951,2023-08-01 03:33:09.757951,6.0,55.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+861.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,168.0,0.0,0.0,25.2,0.0,Yes,No,Multiple,Yes,Motorcycle,Rainy,2021-11-22 07:15:15.303060,2022-03-05 07:15:15.303060,9.0,56.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Other
+1191.5,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,895.0,89.5,0.0,0.0,0.0,207.0,Yes,Yes,Multiple,No,Motorcycle,Rainy,2020-05-17 06:25:07.981596,2021-04-15 06:25:07.981596,1.0,68.0,,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Female
+1047.9,Other,E. 5 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,102.9,425.0,No,Yes,Multiple,Yes,Car,Rainy,,2022-09-22 12:11:39.979996,,57.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Other
+1379.92,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,523.25,0.0,79.92,210.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,5.0,No,Yes,Multiple,No,Car,Rainy,2023-10-18 02:37:16.767353,2024-02-25 02:37:16.767353,4.0,18.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Other
+1335.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,686.0,No,Yes,Legs,No,Motorcycle,Snowy,2020-09-15 11:19:14.390878,2021-05-14 11:19:14.390878,15.0,34.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+830.0,Rear end,F. 6 months,0.0,0.0,150.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Multiple,No,Car,Sunny,2020-09-12 13:13:35.923184,2021-01-24 13:13:35.923184,15.0,43.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+1470.0,Rear end,G. 7 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Legs,Yes,Truck,Rainy,2020-10-01 19:50:49.809961,2021-03-07 19:50:49.809961,14.0,68.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+940.0,Rear end,G. 7 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,,No,Legs,Yes,Truck,Rainy,2022-06-07 03:35:28.025605,2023-04-21 03:35:28.025605,8.0,39.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+990.0,Rear end,A. 1 month,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Snowy,2020-06-15 18:22:06.505301,2020-11-20 18:22:06.505301,0.0,56.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2023-04-26 18:00:30.246049,2024-04-19 18:00:30.246049,8.0,35.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+1303.0,Rear end,F. 6 months,0.0,0.0,0.0,783.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Rainy,2020-06-25 09:40:43.448689,2021-01-01 09:40:43.448689,10.0,79.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+3195.0,Rear end,H. 8 months,0.0,0.0,0.0,2576.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2023-07-14 21:33:22.720544,2023-10-22 21:33:22.720544,4.0,55.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Other
+735.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,240.0,No,No,Arms,No,Motorcycle,Rainy,2022-10-27 16:10:45.249049,2022-12-18 16:10:45.249049,5.0,45.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+2270.0,Rear end,J. 10 months,0.0,0.0,0.0,1400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2023-12-25 10:49:16.911382,2024-02-12 10:49:16.911382,7.0,38.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,0.0,No,Yes,Hips,No,Truck,Snowy,2023-06-27 08:59:31.914382,2023-10-05 08:59:31.914382,,55.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Male
+1390.0,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,,Sunny,2020-04-21 06:34:55.619123,2020-12-28 06:34:55.619123,15.0,50.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+840.0,Other,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Car,Rainy,2020-12-26 23:37:14.606921,2021-02-18 23:37:14.606921,17.0,47.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Other
+2465.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,2415.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,620.0,No,Yes,Hips,No,Truck,Rainy,2021-11-26 02:22:35.311062,2022-04-12 02:22:35.311062,11.0,59.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Male
+1125.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.0,0.0,0.0,520.0,0.0,0.0,0.0,126.0,455.0,No,Yes,Multiple,Yes,Car,Sunny,2023-01-08 16:31:46.941388,2023-06-19 16:31:46.941388,3.0,,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+2836.2,Rear end,F. 6 months,0.0,0.0,0.0,2000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,16.2,350.0,No,Yes,Multiple,No,Car,Snowy,2021-09-06 18:47:27.449489,,15.0,25.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+520.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2021-03-19 01:15:45.549109,2022-01-05 01:15:45.549109,10.0,47.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Male
+240.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,,0.0,No,No,Multiple,Yes,Truck,Rainy,2021-03-23 17:24:47.097419,2021-06-12 17:24:47.097419,6.0,56.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,260.0,,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2022-08-20 00:58:11.258251,2023-03-28 00:58:11.258251,14.0,26.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+,Rear end,F. 6 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,26.4,675.0,No,Yes,,Yes,Motorcycle,Snowy,2022-10-01 16:20:32.886577,2022-12-25 16:20:32.886577,16.0,50.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+1878.0,Other side overtook and pulled in too soon,B. 2 months,0.0,0.0,0.0,1436.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,182.0,No,Yes,Multiple,Yes,Truck,Rainy,2022-10-15 23:48:11.378275,2023-01-06 23:48:11.378275,14.0,75.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+520.0,Other side reversed into clt's stationary vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2023-02-26 04:05:25.505101,2024-01-11 04:05:25.505101,9.0,74.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Female
+1248.47,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,,0.0,19.87,0.0,0.0,0.0,,0.0,0.0,33.6,0.0,350.0,No,Yes,Legs,No,Car,Snowy,2023-09-17 17:38:36.703340,2023-11-23 17:38:36.703340,3.0,60.0,2.0,,Sprained ankle and wrist.,No,No,Female
+706.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,24.0,275.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2020-09-11 02:10:46.689337,2021-05-03 02:10:46.689337,16.0,76.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+3726.57,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2000.0,0.0,285.0,0.0,0.0,30.0,0.0,0.0,495.0,0.0,,0.0,0.0,1181.57,No,No,Arms,Yes,Truck,Sunny,2021-09-19 22:12:50.554110,2022-04-05 22:12:50.554110,,46.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Other
+1125.0,Other side collided with Clt's parked vehicle,E. 5 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Hips,No,Motorcycle,Snowy,2022-08-01 22:23:12.758551,2023-04-17 22:23:12.758551,10.0,48.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+3434.0,Rear end,I. 9 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,266.44,0.0,0.0,840.0,0.0,0.0,0.0,0.0,375.0,No,No,Arms,No,Car,Snowy,2022-08-01 15:22:38.911782,2023-01-25 15:22:38.911782,3.0,20.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+320.0,Other side reversed into Clt's vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1692.54,0.0,0.0,240.0,0.0,0.0,0.0,0.0,180.0,No,No,Multiple,Yes,Car,Rainy,2023-01-04 21:24:26.933386,2023-10-29 21:24:26.933386,11.0,67.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Female
+4755.0,Other,O. 15 months,0.0,0.0,0.0,1102.85,0.0,0.0,60.0,0.0,0.0,0.0,0.0,2040.0,0.0,2320.0,0.0,0.0,0.0,No,No,Hips,No,Truck,Snowy,2023-12-19 14:37:59.975995,2024-09-24 14:37:59.975995,9.0,55.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Male
+3282.27,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,380.27,693.7,Yes,Yes,Legs,Yes,Truck,Snowy,2022-07-25 15:09:06.589317,2023-05-21 15:09:06.589317,13.0,28.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2023-08-05 05:14:33.534706,2023-12-12 05:14:33.534706,17.0,22.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Female
+1952.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,1113.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,300.0,No,Yes,Legs,Yes,Car,Snowy,2023-08-03 11:11:10.454090,2024-01-30 11:11:10.454090,5.0,48.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-01-22 09:58:17.739547,2023-11-10 09:58:17.739547,4.0,37.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Other
+787.1800000000001,Rear end,E. 5 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,22.18,270.0,No,No,Multiple,Yes,Motorcycle,Sunny,2021-04-15 19:09:20.992198,2021-11-08 19:09:20.992198,1.0,21.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+4826.0,Rear end - 3 car - Clt at front,X. 24 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4345.0,0.0,0.0,0.0,0.0,634.99,No,Yes,Multiple,No,Truck,Rainy,2020-11-10 13:07:32.970594,2021-08-31 13:07:32.970594,12.0,25.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+495.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Motorcycle,Sunny,2021-01-14 16:13:20.800160,2021-12-18 16:13:20.800160,13.0,59.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+1390.0,Rear end - Clt pushed into next vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2021-09-22 06:17:21.328265,2022-03-16 06:17:21.328265,2.0,78.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+3120.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,2000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,225.0,No,Yes,Multiple,No,Truck,Snowy,2021-10-25 06:21:06.013202,2021-11-23 06:21:06.013202,10.0,52.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2022-01-08 14:46:38.479695,2022-07-06 14:46:38.479695,3.0,30.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2022-08-10 02:39:00.468093,2022-09-20 02:39:00.468093,12.0,66.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+448.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,208.0,No,Yes,Legs,No,Car,Snowy,2020-04-16 00:24:46.377275,2020-10-25 00:24:46.377275,7.0,22.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+1785.2,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,30.24,0.0,370.0,No,Yes,Multiple,No,Car,Rainy,2020-09-03 18:56:40.520104,2021-08-13 18:56:40.520104,7.0,57.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Male
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,,Rainy,2022-06-04 12:30:23.404680,2023-01-27 12:30:23.404680,12.0,36.0,4.0,,Fractured arm and leg.,Yes,No,Female
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,840.0,,0.0,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Rainy,2021-01-22 13:28:34.662932,2021-11-22 13:28:34.662932,9.0,35.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+1255.7,,H. 8 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,5.7,455.0,No,No,Hips,Yes,Motorcycle,Rainy,2022-07-12 11:43:43.484696,,12.0,50.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Male
+560.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Snowy,2020-04-24 04:40:34.086817,2020-08-16 04:40:34.086817,12.0,78.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+1675.0,Rear end,J. 10 months,0.0,0.0,450.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,285.0,No,Yes,Arms,Yes,Car,Sunny,2022-08-08 15:36:11.234246,2023-05-13 15:36:11.234246,16.0,21.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Female
+1706.39,Other,C. 3 months,0.0,0.0,0.0,2121.0,69.0,0.0,0.0,0.0,282.2,0.0,0.0,260.0,0.0,0.0,5.4,70.0,19.79,No,Yes,Multiple,Yes,Truck,Sunny,2021-08-24 08:21:30.498099,2022-08-14 08:21:30.498099,5.0,76.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Other
+1145.0,Rear end,I. 9 months,0.0,0.0,,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,0.0,,No,,Legs,,Motorcycle,Snowy,2022-08-03 09:26:01.992398,2022-08-20 09:26:01.992398,1.0,35.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+937.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,442.0,No,No,Multiple,Yes,Motorcycle,Snowy,2021-08-20 13:14:10.490098,2021-11-14 13:14:10.490098,16.0,63.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Female
+345.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,182.0,No,No,Arms,No,Car,Rainy,2023-05-23 14:52:24.148829,2024-04-04 14:52:24.148829,11.0,41.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+,Rear end - 3 car - Clt at front,J. 10 months,0.0,,0.0,0.0,,0.0,0.0,0.0,250.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2021-01-16 03:16:10.034006,2021-12-27 03:16:10.034006,5.0,60.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+895.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2022-04-25 05:12:32.550510,2022-10-23 05:12:32.550510,4.0,46.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+520.0,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2021-08-16 11:06:16.635327,2022-07-19 11:06:16.635327,4.0,48.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Female
+702.0,Rear end,,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,,240.0,0.0,0.0,0.0,0.0,462.0,No,No,Legs,No,Motorcycle,Snowy,2020-08-11 03:10:58.931786,2021-07-28 03:10:58.931786,8.0,75.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+945.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,No,Car,Rainy,2020-05-25 10:40:55.691138,2020-10-17 10:40:55.691138,2.0,45.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Other
+520.0,Other side drove on wrong side of the road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Rainy,2022-09-10 15:39:55.919183,2023-07-22 15:39:55.919183,19.0,26.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+495.0,Rear end - Clt pushed into next vehicle,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,,Arms,Yes,,Rainy,2022-05-09 19:40:44.888977,2022-12-20 19:40:44.888977,4.0,62.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Other
+2470.0,Other side turned across Clt's path,I. 9 months,0.0,0.0,0.0,2760.0,0.0,0.0,630.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Rainy,2023-01-15 23:45:53.110622,2023-03-10 23:45:53.110622,6.0,43.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Male
+1008.3,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,237.0,No,No,Legs,Yes,Motorcycle,Sunny,2023-05-15 10:36:36.439287,2024-03-14 10:36:36.439287,11.0,66.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Female
+379.9,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,135.88,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,4.02,0.0,No,No,Hips,No,Car,Snowy,2023-07-26 13:55:56.591318,2023-10-02 13:55:56.591318,6.0,64.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+1930.0,Other side turned across Clt's path,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,170.0,0.0,159.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Legs,Yes,Car,Snowy,2020-02-09 10:16:09.313862,2020-05-26 10:16:09.313862,9.0,19.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Male
+2570.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,3500.0,0.0,0.0,0.0,0.0,187.88,0.0,0.0,520.0,104.0,0.0,0.0,544.45,0.0,Yes,Yes,Hips,Yes,Truck,Rainy,2020-11-17 06:20:31.446289,2021-10-17 06:20:31.446289,7.0,23.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,,,No,Yes,Multiple,Yes,Car,Sunny,2021-06-30 10:35:27.305461,2021-09-15 10:35:27.305461,16.0,46.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+1996.0,Other,I. 9 months,0.0,0.0,0.0,2254.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Sunny,2023-03-23 20:55:04.020804,2023-04-19 20:55:04.020804,4.0,43.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+1182.13,Other side pulled out of side road,,0.0,0.0,400.0,0.0,0.0,262.13,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2023-04-16 05:40:11.762352,2024-03-25 05:40:11.762352,14.0,45.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+1170.0,Other side pulled out of side road,F. 6 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,520.0,,0.0,0.0,70.2,,No,Yes,,Yes,Car,Rainy,2023-03-17 17:43:13.238647,2023-08-19 17:43:13.238647,8.0,24.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Other
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Motorcycle,Snowy,2020-02-29 13:55:04.740948,2020-05-11 13:55:04.740948,10.0,51.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Male
+1255.7,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,5.7,455.0,,No,Arms,Yes,Truck,Snowy,,2024-03-01 17:11:32.058411,12.0,73.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Female
+1680.66,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,45.66,350.0,No,Yes,Arms,Yes,Truck,Sunny,2021-11-23 11:17:30.690138,2022-01-09 11:17:30.690138,17.0,62.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Other
+,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,1200.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,14.46,800.35,No,No,Multiple,No,Motorcycle,Sunny,2023-10-01 18:05:41.348269,2024-05-30 18:05:41.348269,16.0,27.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Male
+823.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,328.0,No,No,Arms,No,Motorcycle,Snowy,2020-06-12 20:16:28.037607,2021-06-06 20:16:28.037607,8.0,65.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Other
+565.0,Other side turned across Clt's path,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,45.0,No,Yes,Legs,No,Truck,Rainy,2022-08-25 21:09:28.193638,2023-05-29 21:09:28.193638,9.0,58.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Female
+639.99,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,,0.0,,119.99,0.0,0.0,520.0,0.0,0.0,0.0,0.0,76.0,No,Yes,Legs,Yes,Car,Rainy,2023-03-02 13:13:53.206641,,4.0,57.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Male
+2270.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,1575.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2022-01-07 17:44:56.939387,2022-04-22 17:44:56.939387,10.0,74.0,3.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+520.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2021-10-07 17:47:15.207041,2022-01-10 17:47:15.207041,14.0,64.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+925.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,415.13,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,130.0,Yes,Yes,Multiple,Yes,Motorcycle,Rainy,2021-11-23 11:17:30.690138,2022-06-30 11:17:30.690138,1.0,39.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Other
+906.0,Rear end,F. 6 months,0.0,0.0,0.0,718.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,350.0,No,No,Legs,No,Truck,Rainy,2023-10-14 21:31:04.452890,2024-04-01 21:31:04.452890,19.0,44.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+959.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,19.2,0.0,420.0,No,Yes,Multiple,Yes,Car,Rainy,2022-02-22 00:12:23.188637,2022-12-02 00:12:23.188637,13.0,56.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+2500.0,Rear end,J. 10 months,0.0,0.0,0.0,1410.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2022-03-30 12:22:54.034806,2022-08-05 12:22:54.034806,4.0,39.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+550.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2023-01-05 18:26:08.473694,2023-07-24 18:26:08.473694,5.0,72.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+427.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,18.0,325.0,No,No,Hips,Yes,Car,Rainy,2021-10-20 14:12:04.464892,,14.0,36.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Female
+1590.0,Rear end,K. 11 months,0.0,0.0,0.0,556.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2023-07-11 23:27:44.252850,2023-08-15 23:27:44.252850,3.0,53.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Female
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,,Truck,Rainy,2020-09-19 20:27:42.092418,2021-09-08 20:27:42.092418,9.0,26.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Female
+814.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Arms,Yes,Car,Snowy,2021-05-26 02:27:11.846369,2021-10-17 02:27:11.846369,18.0,36.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Female
+715.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,195.0,No,Yes,Legs,No,Motorcycle,Sunny,2023-12-01 19:03:35.323064,2024-09-18 19:03:35.323064,8.0,19.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+960.0,Rear end,B. 2 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2022-08-20 07:58:45.105021,2022-10-25 07:58:45.105021,9.0,45.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+920.0,,E. 5 months,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Legs,No,Motorcycle,Rainy,2022-07-11 14:42:01.944388,2023-02-15 14:42:01.944388,3.0,78.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+895.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2021-02-28 01:39:05.509101,2021-04-25 01:39:05.509101,3.0,76.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+784.44,Other,E. 5 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,196.44,0.0,0.0,495.0,0.0,0.0,0.0,0.0,180.0,,No,Multiple,No,Motorcycle,Sunny,2020-12-29 00:41:11.534306,2021-05-23 00:41:11.534306,5.0,56.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+4072.0,Rear end,H. 8 months,0.0,0.0,0.0,2421.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,798.0,Yes,Yes,Hips,No,Truck,Snowy,2021-11-09 03:49:52.198439,2022-06-10 03:49:52.198439,7.0,39.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+1500.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1810.0,0.0,0.0,60.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Car,Sunny,2021-05-02 17:42:04.104820,2021-08-04 17:42:04.104820,15.0,68.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Other
+260.0,Other,A. 1 month,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Rainy,2021-08-15 00:03:27.401480,2021-11-29 00:03:27.401480,7.0,23.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+2865.0,Rear end,I. 9 months,0.0,,0.0,1972.25,0.0,,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2021-05-31 08:37:21.088217,2021-08-23 08:37:21.088217,15.0,,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+1813.0,Rear end,G. 7 months,0.0,0.0,0.0,650.0,0.0,268.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2022-12-05 19:26:20.716143,2023-04-20 19:26:20.716143,5.0,24.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Male
+495.0,Other,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Truck,Sunny,2021-11-03 07:38:35.263052,2022-03-29 07:38:35.263052,16.0,23.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2020-12-07 09:59:26.873374,2021-08-13 09:59:26.873374,0.0,50.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+926.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Arms,Yes,Car,Rainy,2023-10-07 14:16:58.283656,2023-10-25 14:16:58.283656,18.0,77.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+520.0,Other side reversed into clt's stationary vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2021-12-11 06:51:55.343068,2022-04-15 06:51:55.343068,17.0,31.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Other
+895.0,Other,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Rainy,2020-04-22 17:37:44.852970,2020-04-24 17:37:44.852970,16.0,18.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2021-12-10 16:50:47.649529,2022-11-07 16:50:47.649529,16.0,42.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+1638.1799999999998,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,743.18,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,,Rainy,2022-09-04 19:28:38.983796,2023-03-23 19:28:38.983796,11.0,23.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+875.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Legs,No,Car,Sunny,2021-02-14 08:12:34.710942,2021-07-02 08:12:34.710942,11.0,45.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Female
+1470.87,Rear end,G. 7 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,3.87,322.0,No,Yes,Legs,No,Car,Snowy,2020-02-05 22:09:23.152630,2020-08-26 22:09:23.152630,5.0,35.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Other
+1680.66,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,45.66,350.0,No,Yes,Multiple,Yes,Car,Rainy,2023-03-13 08:34:45.537107,2023-12-20 08:34:45.537107,6.0,44.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,10.8,0.0,No,Yes,Hips,Yes,Truck,Snowy,2022-10-05 04:27:19.047809,2023-08-04 04:27:19.047809,7.0,66.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+895.0,Other side pulled out of side road,G. 7 months,0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,,No,Yes,Hips,,,Sunny,2023-02-11 20:37:47.013402,2023-03-13 20:37:47.013402,2.0,76.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+1905.07,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,,455.67,0.0,0.0,0.0,0.0,0.0,895.0,173.0,,0.0,76.49,355.0,Yes,Yes,Arms,No,Truck,Sunny,,2021-06-14 07:16:07.153430,,77.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+875.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Multiple,Yes,Truck,Snowy,2020-12-10 22:06:13.034606,2021-04-08 22:06:13.034606,7.0,19.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+1390.0,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2020-07-31 07:50:06.601320,2020-12-10 07:50:06.601320,10.0,57.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Male
+840.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Sunny,2023-02-08 08:31:00.852170,2023-09-27 08:31:00.852170,19.0,38.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+570.1,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,156.68,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,40.0,,Yes,Hips,Yes,Motorcycle,Rainy,2022-12-07 20:30:17.643528,2023-05-08 20:30:17.643528,17.0,40.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Female
+840.0,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Rainy,2020-11-29 05:43:39.163832,2020-12-20 05:43:39.163832,15.0,72.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Other
+822.44,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,54.6,455.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2021-11-24 15:19:46.077215,2022-01-31 15:19:46.077215,12.0,19.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+1301.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Multiple,No,Car,Sunny,2023-03-23 06:53:56.327265,2023-07-27 06:53:56.327265,8.0,33.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2020-04-14 13:21:57.143428,2020-05-27 13:21:57.143428,18.0,21.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+1450.92,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,31.92,0.0,574.0,No,Yes,Hips,Yes,Truck,Sunny,2022-12-28 21:10:54.610922,2023-06-28 21:10:54.610922,6.0,51.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+1215.0,Other,H. 8 months,0.0,0.0,0.0,523.25,0.0,195.75,0.0,0.0,45.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,320.0,No,Yes,Hips,No,Car,Snowy,2022-04-10 14:44:20.212042,2022-07-19 14:44:20.212042,16.0,72.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Male
+1241.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,198.9,0.0,0.0,895.0,0.0,0.0,0.0,120.0,346.0,No,Yes,Legs,Yes,,Sunny,2023-08-18 08:39:56.639327,2024-08-01 08:39:56.639327,7.0,22.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Male
+892.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,42.0,406.0,No,Yes,Legs,Yes,Truck,Sunny,2021-10-07 17:47:15.207041,2022-06-04 17:47:15.207041,7.0,66.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Other
+1020.0,Rear end,E. 5 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2020-10-10 21:08:19.059811,2021-04-28 21:08:19.059811,2.0,51.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Male
+1820.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,2020.0,0.0,0.0,,0.0,0.0,,0.0,895.0,0.0,0.0,0.0,,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2020-04-15 03:23:04.836967,2020-08-09 03:23:04.836967,15.0,39.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+1118.32,Other side turned across Clt's path,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,13.32,400.0,No,No,Hips,No,Motorcycle,Rainy,2022-02-07 16:44:44.696939,2022-06-02 16:44:44.696939,,63.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+1225.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Legs,Yes,Truck,Snowy,2022-07-20 15:59:31.194238,2022-12-09 15:59:31.194238,14.0,37.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+1335.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,686.0,No,Yes,Arms,Yes,Car,Snowy,2023-12-16 02:31:13.814762,2024-04-13 02:31:13.814762,3.0,56.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+895.0,Other,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2021-04-19 07:16:07.153430,2021-07-21 07:16:07.153430,6.0,64.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+620.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2023-02-21 04:55:50.110022,2023-03-02 04:55:50.110022,10.0,67.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Male
+1157.2,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,7.2,350.0,No,Yes,Hips,No,Truck,Rainy,2021-05-27 20:30:34.926985,2021-08-08 20:30:34.926985,4.0,30.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Female
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2020-03-11 02:15:23.224644,2020-04-06 02:15:23.224644,12.0,61.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+1270.0,Other side pulled from parked position into the path of clt's vehicle,G. 7 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,100.2,0.0,No,Yes,Legs,Yes,Car,Rainy,2023-10-22 11:45:44.468893,2024-06-17 11:45:44.468893,10.0,51.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+2028.48,Rear end,I. 9 months,0.0,0.0,0.0,1185.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,70.98,625.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-10-11 18:10:00.600120,2021-10-08 18:10:00.600120,4.0,61.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+1115.0,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,220.0,No,Yes,Multiple,Yes,Truck,Rainy,2023-06-15 02:35:50.350070,2023-11-07 02:35:50.350070,7.0,23.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+545.0,Rear end,F. 6 months,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,50.0,No,No,Multiple,Yes,Truck,Snowy,2021-11-06 12:44:47.577515,2022-01-13 12:44:47.577515,16.0,73.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Male
+1817.0,Other,H. 8 months,0.0,0.0,0.0,1546.0,0.0,0.0,1050.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,36.0,0.0,275.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2021-01-16 03:16:10.034006,2021-07-23 03:16:10.034006,10.0,46.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+260.0,Other side pulled from parked position into the path of clt's vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Rainy,2020-08-17 20:23:57.407481,2020-12-26 20:23:57.407481,18.0,50.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+4826.0,Rear end - 3 car - Clt at front,X. 24 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4345.0,0.0,0.0,0.0,0.0,634.99,No,Yes,Legs,Yes,Car,Sunny,2021-12-10 02:49:39.955991,2022-07-19 02:49:39.955991,17.0,70.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+2367.8,Rear end,H. 8 months,0.0,0.0,0.0,1113.0,0.0,0.0,0.0,0.0,264.0,0.0,0.0,895.0,0.0,70.0,0.0,25.8,0.0,No,Yes,Multiple,No,Truck,Snowy,2020-06-11 02:13:04.956991,2021-03-19 02:13:04.956991,9.0,18.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+916.0,Rear end,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,396.0,No,Yes,Arms,No,Truck,Rainy,2021-09-07 22:49:42.836567,2022-06-11 22:49:42.836567,4.0,64.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+972.5,Other side collided with Clt's parked vehicle,G. 7 months,0.0,0.0,0.0,1050.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Sunny,2023-12-14 08:27:50.734146,2024-05-02 08:27:50.734146,0.0,76.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+1018.0,Other,,0.0,0.0,0.0,1038.0,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,180.0,No,Yes,Arms,No,,Snowy,2022-02-12 15:54:20.092018,2022-04-07 15:54:20.092018,16.0,65.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Female
+1320.0,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Snowy,2021-03-31 07:39:27.113422,2021-04-01 07:39:27.113422,16.0,71.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+940.0,Other side pulled out of side road,D. 4 months,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,170.0,No,Yes,Arms,No,Motorcycle,Rainy,2023-05-21 20:49:01.068213,2023-09-26 20:49:01.068213,0.0,24.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Male
+1779.38,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,1250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,9.38,No,Yes,Legs,Yes,Motorcycle,Snowy,2021-02-02 01:48:53.146629,2021-02-03 01:48:53.146629,0.0,39.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+,Rear end,I. 9 months,0.0,0.0,0.0,1972.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Sunny,2023-03-02 06:13:19.359871,2023-08-22 06:13:19.359871,8.0,49.0,3.0,,Minor cuts and scrapes.,Yes,No,Male
+1437.5,Other side reversed into clt's stationary vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Legs,No,Truck,Sunny,2020-06-21 00:32:15.747149,2021-03-14 00:32:15.747149,3.0,31.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Other
+650.0,Rear end - 3 car - Clt at front,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,390.0,No,Yes,Multiple,Yes,Truck,Snowy,2021-05-25 19:26:37.999599,2022-03-17 19:26:37.999599,8.0,78.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+769.5,Rear end,E. 5 months,0.0,0.0,0.0,1064.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,163.0,No,Yes,Hips,No,Motorcycle,Sunny,2020-06-06 17:04:37.255451,2021-02-17 17:04:37.255451,13.0,74.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Male
+1550.0,Rear end - Clt pushed into next vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,160.0,No,Yes,Hips,Yes,Car,Snowy,2021-12-08 08:46:16.875375,2022-05-31 08:46:16.875375,14.0,68.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Female
+1170.0,Rear end,E. 5 months,0.0,0.0,0.0,650.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2020-03-25 16:43:35.563112,2020-05-09 16:43:35.563112,15.0,41.0,1.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+720.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,24.0,221.7,No,Yes,Multiple,Yes,Motorcycle,Snowy,2021-09-02 09:38:59.747949,2022-08-11 09:38:59.747949,15.0,36.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+2000.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,1725.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,191.7,6.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2023-02-23 05:59:47.037407,2023-07-14 05:59:47.037407,12.0,44.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Other
+2557.0,Rear end,,0.0,0.0,500.0,0.0,0.0,2143.27,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,,310.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2023-03-01 23:12:45.513102,2023-03-28 23:12:45.513102,13.0,77.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+3554.0,Other side drove on wrong side of the road,J. 10 months,0.0,0.0,0.0,2217.0,0.0,0.0,0.0,0.0,147.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2023-02-01 01:16:54.682936,2023-09-22 01:16:54.682936,8.0,78.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+,Rear end,D. 4 months,0.0,0.0,0.0,520.0,0.0,1064.84,0.0,0.0,290.49,0.0,0.0,520.0,0.0,0.0,,96.6,0.0,,Yes,Arms,No,Motorcycle,Snowy,,2021-07-29 12:47:57.695539,8.0,,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Other
+1566.17,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,0.0,0.0,150.0,906.0,,0.0,0.0,0.0,46.17,0.0,0.0,895.0,0.0,0.0,0.0,0.0,245.0,No,Yes,Hips,No,Truck,Snowy,2020-01-03 01:03:56.927385,2020-02-22 01:03:56.927385,3.0,40.0,1.0,,Fractured arm and leg.,No,No,Male
+925.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,60.6,400.0,No,No,Legs,Yes,Car,Rainy,2021-04-28 22:34:44.096819,2021-06-28 22:34:44.096819,9.0,79.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+495.0,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Rainy,2023-08-30 01:02:30.510102,2024-04-29 01:02:30.510102,2.0,62.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+804.8,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,19.8,0.0,265.0,No,Yes,Multiple,No,Truck,Snowy,2023-07-17 05:37:53.494698,2024-04-11 05:37:53.494698,8.0,38.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Female
+520.0,Other side drove on wrong side of the road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2021-01-01 19:48:31.542308,2021-05-21 19:48:31.542308,18.0,61.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+1409.99,Rear end - Clt pushed into next vehicle,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,80.0,0.0,89.99,0.0,0.0,1320.0,0.0,0.0,0.0,87.6,0.0,No,No,,No,Truck,Snowy,2023-02-27 15:08:14.738947,2023-08-03 15:08:14.738947,15.0,46.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+1179.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,284.0,Yes,Yes,Arms,No,Truck,Rainy,2020-10-30 10:46:06.793358,2021-01-23 10:46:06.793358,15.0,18.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+1742.0,Rear end,L. 12 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,,0.0,0.0,182.0,No,Yes,,Yes,,Sunny,2021-09-09 23:53:39.763952,2021-12-02 23:53:39.763952,16.0,48.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Other
+1800.0,Other side drove on wrong side of the road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,680.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,811.0,No,Yes,Multiple,Yes,Car,Sunny,2020-07-18 18:25:51.190238,2021-04-20 18:25:51.190238,17.0,44.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Male
+1301.0,Rear end,G. 7 months,0.0,0.0,0.0,1082.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,6.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-03-19 11:46:36.319263,2023-04-19 11:46:36.319263,9.0,61.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Female
+677.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,182.0,No,No,Arms,Yes,Truck,Snowy,2021-06-08 19:53:42.644528,2021-06-16 19:53:42.644528,18.0,53.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Female
+690.0,Rear end,B. 2 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,240.0,0.0,0.0,0.0,0.0,565.0,No,No,Multiple,Yes,Motorcycle,Sunny,2021-06-16 17:08:56.507301,2022-03-23 17:08:56.507301,14.0,79.0,,Hit a deer on the highway.,,Yes,Yes,Other
+,,E. 5 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2022-10-29 03:13:34.482896,2023-05-20 03:13:34.482896,14.0,78.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Male
+1652.37,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1980.0,,32.37,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,,,No,Car,Rainy,2020-01-19 02:34:58.499699,,10.0,44.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-03-16 22:26:40.160032,2021-01-08 22:26:40.160032,7.0,32.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+895.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,0.0,0.0,No,Yes,Hips,No,Car,,2022-11-08 22:34:26.813362,2023-03-31 22:34:26.813362,,42.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+1371.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,574.0,Yes,Yes,Arms,Yes,Truck,Sunny,2022-07-21 06:00:38.887777,2023-07-06 06:00:38.887777,9.0,65.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Female
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2023-12-17 13:34:03.048609,2024-01-23 13:34:03.048609,8.0,32.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+1613.2,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Legs,No,Truck,Rainy,2021-03-10 13:59:23.992798,2021-08-04 13:59:23.992798,14.0,57.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Male
+865.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,370.0,No,No,Arms,Yes,Car,Rainy,2020-11-26 00:37:26.849369,2021-07-12 00:37:26.849369,4.0,36.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+1127.4,Rear end - Clt pushed into next vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,529.0,0.0,0.0,240.0,0.0,0.0,0.0,8.4,350.0,No,No,Legs,Yes,Truck,Rainy,2023-06-02 13:11:34.938987,2023-07-06 13:11:34.938987,19.0,64.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+1830.0,Other,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,0.0,0.0,510.0,No,No,Legs,Yes,Truck,Rainy,2020-04-13 09:19:41.756351,2020-12-06 09:19:41.756351,1.0,67.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Female
+508.1,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,4.5,9.35,No,No,Legs,No,Car,Sunny,2022-03-21 04:04:50.938187,2022-10-19 04:04:50.938187,15.0,28.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+1020.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,1558.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Snowy,2020-06-20 17:31:41.900380,2021-04-25 17:31:41.900380,17.0,58.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,,No,Yes,Multiple,No,Truck,Snowy,2020-06-25 09:40:43.448689,2020-11-12 09:40:43.448689,15.0,50.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Other
+3046.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2101.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Hips,No,Truck,Sunny,2021-10-12 16:56:50.602120,2022-04-20 16:56:50.602120,4.0,,1.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+727.36,Rear end,E. 5 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,55.0,0.0,0.0,495.0,0.0,0.0,26.04,0.0,375.0,,No,,Yes,Motorcycle,Sunny,,2020-05-26 12:37:35.491098,0.0,77.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Male
+520.0,Rear end,D. 4 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,,No,Yes,Multiple,No,Truck,Sunny,2020-04-13 02:19:07.909581,,18.0,40.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+,,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,21.6,,No,Yes,Legs,No,Car,Snowy,2022-08-18 20:55:55.871174,2023-08-14 20:55:55.871174,9.0,29.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Other
+631.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,111.0,No,Yes,Arms,No,Motorcycle,Snowy,2020-05-06 11:04:15.651130,2021-03-06 11:04:15.651130,12.0,19.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+2332.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1437.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2022-05-12 03:45:15.663132,2023-03-04 03:45:15.663132,10.0,60.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+6976.96,,F. 6 months,,0.0,0.0,,0.0,0.0,0.0,0.0,6070.0,0.0,0.0,495.0,0.0,0.0,36.96,0.0,375.0,No,No,Arms,Yes,Car,Rainy,2020-03-16 08:25:32.466493,2020-08-15 08:25:32.466493,14.0,38.0,2.0,Side collision at an intersection.,,Yes,Yes,Female
+2359.0,Other side changed lanes on a roundabout colliding with clt's vehicle,H. 8 months,0.0,0.0,0.0,3450.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,19.0,No,No,Multiple,Yes,Truck,Sunny,2020-09-10 05:09:05.149029,2021-04-21 05:09:05.149029,1.0,31.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2022-01-31 02:30:04.680936,2022-08-15 02:30:04.680936,5.0,51.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+412.5,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Arms,No,Motorcycle,Sunny,2022-11-30 13:16:11.474294,2023-02-26 13:16:11.474294,10.0,32.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+895.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2020-06-22 18:35:38.827765,2021-04-17 18:35:38.827765,14.0,38.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Female
+1348.25,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,,508.25,0.0,,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,,2020-04-24 18:41:41.780356,2020-05-11 18:41:41.780356,,40.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+595.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,90.0,No,Yes,Legs,No,Motorcycle,Sunny,2023-07-18 02:39:35.035007,2024-02-14 02:39:35.035007,11.0,38.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Male
+3210.0,Other,P. 16 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3100.0,0.0,0.0,0.0,0.0,110.0,No,Yes,Hips,No,Car,Rainy,2021-09-08 05:50:16.683336,2022-04-28 05:50:16.683336,3.0,67.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Female
+303.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,51.6,0.0,No,Yes,Arms,Yes,Truck,Snowy,2023-02-02 12:19:43.916783,2024-01-26 12:19:43.916783,13.0,76.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+1208.14,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,688.14,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2023-04-23 19:54:51.778355,2023-10-23 19:54:51.778355,2.0,31.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Other
+1660.0,Rear end,C. 3 months,0.0,0.0,,1400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,2021-10-04 12:41:02.892578,2022-03-15 12:41:02.892578,16.0,38.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+2990.0,Rear end,J. 10 months,0.0,0.0,0.0,1600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-03-13 08:34:45.537107,2023-05-22 08:34:45.537107,12.0,77.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+2659.0,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-01-30 07:13:31.602320,2023-03-31 07:13:31.602320,7.0,29.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+1615.0,,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,,Yes,Yes,Hips,Yes,Motorcycle,Rainy,2023-12-16 09:31:47.661532,2024-06-12 09:31:47.661532,11.0,59.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+1546.7,Rear end,F. 6 months,0.0,0.0,0.0,1606.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,103.0,0.0,0.0,12.0,0.0,Yes,Yes,Multiple,Yes,Car,Snowy,2023-01-01 09:17:40.772154,2023-03-19 09:17:40.772154,11.0,63.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Female
+844.54,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,155.67,0.0,0.0,495.0,0.0,0.0,0.0,18.54,331.0,No,No,Hips,Yes,Truck,Snowy,2023-06-30 07:05:10.382076,2023-08-04 07:05:10.382076,11.0,71.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Female
+1443.21,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,574.21,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,0.0,518.0,No,,Hips,Yes,Motorcycle,Snowy,2022-09-28 11:14:20.572114,2022-10-14 11:14:20.572114,1.0,64.0,,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2023-08-13 09:30:21.244248,2024-06-02 09:30:21.244248,9.0,22.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
+2280.0,Rear end - Clt pushed into next vehicle,J. 10 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,246.0,No,Yes,Multiple,Yes,Car,Rainy,2023-08-30 01:02:30.510102,2024-02-17 01:02:30.510102,8.0,19.0,1.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+1730.29,Rear end,E. 5 months,0.0,0.0,0.0,1028.0,0.0,0.0,0.0,0.0,456.44,0.0,0.0,520.0,0.0,0.0,0.0,4.5,9.35,No,Yes,Legs,Yes,Truck,Sunny,2020-03-03 05:00:09.361872,2020-04-04 05:00:09.361872,0.0,39.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+1334.5,Rear end - Clt pushed into next vehicle,I. 9 months,0.0,0.0,0.0,1548.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,83.2,0.0,Yes,Yes,Multiple,No,Car,Rainy,2021-09-12 21:59:18.231646,2022-06-02 21:59:18.231646,3.0,23.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2020-02-10 07:17:50.854170,2020-09-12 07:17:50.854170,13.0,61.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Other
+2990.0,Rear end,J. 10 months,0.0,0.0,0.0,1600.0,0.0,,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,,No,Car,Snowy,2023-05-09 14:25:19.503900,,15.0,19.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+950.55,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,46.2,9.35,No,Yes,Arms,Yes,Motorcycle,Snowy,2023-03-02 13:13:53.206641,2023-09-07 13:13:53.206641,17.0,46.0,,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+2127.0,Other side changed lanes and collided with clt's vehicle,G. 7 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,232.0,No,Yes,Hips,No,Truck,Sunny,2020-07-12 15:14:00.408081,2021-04-12 15:14:00.408081,1.0,78.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+1165.0,Rear end,F. 6 months,0.0,0.0,0.0,1033.45,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2022-04-07 02:37:34.050810,2022-06-17 02:37:34.050810,5.0,53.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Other
+900.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,405.0,No,No,Hips,Yes,Motorcycle,Snowy,2020-11-09 09:05:17.583516,2021-09-01 09:05:17.583516,2.0,24.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Other
+1071.0,Rear end,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,176.0,Yes,Yes,Arms,Yes,Motorcycle,Snowy,2023-08-28 21:00:15.123024,2023-11-24 21:00:15.123024,,33.0,,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+1820.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1950.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,9.6,182.0,No,Yes,Multiple,No,Motorcycle,Snowy,2023-03-20 15:48:51.706341,2024-02-17 15:48:51.706341,18.0,50.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+1295.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,455.0,No,No,Legs,Yes,Motorcycle,Snowy,2020-02-17 00:30:49.329865,2020-11-04 00:30:49.329865,12.0,50.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+1245.0,Other side reversed into clt's stationary vehicle,H. 8 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Legs,No,Car,Sunny,2021-03-14 02:06:10.154030,2021-09-12 02:06:10.154030,16.0,,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Male
+520.0,Other,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2022-07-17 03:52:45.033006,2023-06-24 03:52:45.033006,13.0,60.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Male
+1220.35,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,120.0,742.0,No,Yes,Multiple,Yes,Car,Snowy,2023-08-04 08:12:51.994398,2023-08-26 08:12:51.994398,10.0,29.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Other
+767.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Hips,No,Motorcycle,Snowy,2023-11-30 22:01:53.782756,2024-02-12 22:01:53.782756,15.0,60.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+1340.29,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,73.8,534.48,No,Yes,Hips,Yes,Car,Snowy,2020-02-24 00:44:21.652330,2020-05-24 00:44:21.652330,10.0,23.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Female
+534.0,Rear end,C. 3 months,0.0,0.0,0.0,1038.45,0.0,,0.0,0.0,,0.0,0.0,260.0,0.0,0.0,,0.0,230.0,No,Yes,Hips,Yes,Car,Snowy,,2024-08-20 22:44:49.017803,,72.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Female
+1358.3,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,15.6,32.7,,No,Yes,Arms,Yes,Motorcycle,,2021-08-01 06:36:56.603320,2022-01-14 06:36:56.603320,1.0,,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+1119.5,Rear end,H. 8 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,135.0,Yes,Yes,Hips,,Motorcycle,Rainy,2023-08-19 05:41:38.179635,2024-04-09 05:41:38.179635,,70.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+1020.0,,G. 7 months,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,129.04,180.0,No,No,Multiple,,Motorcycle,Rainy,2023-03-10 17:29:40.916183,2023-07-17 17:29:40.916183,13.0,48.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+1005.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,510.0,No,No,Legs,Yes,Motorcycle,Rainy,2020-08-30 02:47:38.971794,2021-07-30 02:47:38.971794,1.0,29.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Rainy,2022-10-24 18:05:06.781356,2023-08-12 18:05:06.781356,12.0,27.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Female
+645.98,Other side pulled from parked position into the path of clt's vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,70.0,0.0,0.0,80.98,No,No,Hips,No,Motorcycle,Snowy,2022-10-22 10:00:36.007201,2023-01-25 10:00:36.007201,9.0,57.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,Yes,Male
+2165.0,Rear end,G. 7 months,0.0,0.0,0.0,2400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,180.0,No,Yes,Arms,No,Motorcycle,Rainy,2022-08-29 23:17:22.048409,2022-09-26 23:17:22.048409,7.0,44.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+1320.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,,0.0,0.0,No,No,Arms,No,Motorcycle,Rainy,2022-09-04 19:28:38.983796,2023-08-24 19:28:38.983796,6.0,69.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Female
+1105.0,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,3024.0,0.0,0.0,0.0,0.0,0.0,310.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Hips,Yes,Car,Sunny,2021-12-26 18:21:49.221844,2022-01-30 18:21:49.221844,12.0,68.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+1620.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2023-09-08 16:21:07.453490,2024-04-26 16:21:07.453490,18.0,24.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+950.0,Other,D. 4 months,0.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Legs,Yes,Car,Rainy,2020-12-23 18:31:02.292458,2021-11-06 18:31:02.292458,14.0,63.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Male
+650.0,Rear end,F. 6 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,80.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Snowy,2023-11-17 18:36:30.678135,2024-10-25 18:36:30.678135,1.0,53.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+524.25,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,4.25,No,Yes,Multiple,No,Car,Rainy,2022-04-10 14:44:20.212042,2023-04-09 14:44:20.212042,4.0,50.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+757.0,Other side changed lanes on a roundabout colliding with clt's vehicle,E. 5 months,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,,0.0,0.0,2.0,0.0,No,No,Legs,Yes,Car,Rainy,2022-03-09 04:41:43.220644,2022-07-12 04:41:43.220644,18.0,44.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Other
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2023-07-14 21:33:22.720544,2023-10-01 21:33:22.720544,0.0,25.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+520.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2023-03-13 01:34:11.690338,2023-05-13 01:34:11.690338,6.0,22.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+1298.9,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.3,0.0,0.0,895.0,0.0,0.0,0.0,39.6,474.6,No,Yes,Arms,Yes,Car,Snowy,2022-02-18 19:06:10.874174,2022-09-23 19:06:10.874174,17.0,78.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+1039.0,Other side reversed into clt's stationary vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,183.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-10-28 14:57:35.251050,2024-08-05 14:57:35.251050,0.0,25.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Male
+2494.0,Rear end,F. 6 months,0.0,0.0,0.0,1792.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,182.0,No,Yes,Arms,No,Car,Sunny,2021-03-13 12:05:02.460492,2021-08-23 12:05:02.460492,0.0,57.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Female
+688.4300000000001,Other side pulled on to roundabout,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,8.43,160.0,No,Yes,Multiple,No,Truck,Sunny,2021-05-07 23:52:13.346669,2021-07-03 23:52:13.346669,6.0,77.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Other
+767.5,Other side changed lanes and collided with clt's vehicle,D. 4 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,3.0,0.0,270.0,No,No,Arms,No,Car,Rainy,2021-12-15 16:00:23.044608,,16.0,38.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Male
+1118.9,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.9,0.0,0.0,520.0,0.0,0.0,0.0,22.44,574.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2020-09-10 05:09:05.149029,2021-01-20 05:09:05.149029,5.0,41.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Female
+7862.9,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,7735.58,0.0,0.0,0.0,0.0,,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2023-06-13 08:32:27.269453,2023-07-25 08:32:27.269453,19.0,24.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+1030.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,,0.0,0.0,,0.0,135.0,No,Yes,Arms,Yes,Truck,,2022-05-28 12:16:51.082216,2022-11-17 12:16:51.082216,11.0,78.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+2540.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,1700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Snowy,2022-10-26 05:07:56.015203,2023-04-11 05:07:56.015203,19.0,36.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+2865.0,Rear end,I. 9 months,0.0,0.0,0.0,1972.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2021-08-10 14:54:59.699939,2022-04-17 14:54:59.699939,14.0,48.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+2180.0,Other side pulled out of side road,M. 13 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Hips,No,Car,Snowy,2020-03-10 19:14:49.377875,2020-09-19 19:14:49.377875,12.0,53.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+2840.0,Other side pulled out of side road,I. 9 months,0.0,0.0,400.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Multiple,No,Motorcycle,Sunny,2020-01-14 17:26:30.798159,2020-10-18 17:26:30.798159,11.0,44.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+1059.5,Rear end,F. 6 months,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,495.0,49.5,0.0,0.0,0.0,,Yes,No,Hips,No,Car,Sunny,2023-03-28 13:04:05.569113,2023-11-21 13:04:05.569113,1.0,77.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+895.0,Other side changed lanes on a roundabout colliding with clt's vehicle,I. 9 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2022-10-06 15:30:08.281656,2023-05-24 15:30:08.281656,17.0,46.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+1170.0,Other side pulled out of side road,F. 6 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,70.2,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2022-08-15 15:49:43.556711,2023-01-27 15:49:43.556711,3.0,40.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+1390.0,Rear end,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2022-07-31 18:20:57.371474,2023-03-31 18:20:57.371474,9.0,37.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2020-12-30 11:44:00.768153,2021-03-30 11:44:00.768153,10.0,23.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Other
+1324.24,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,36.54,462.0,No,Yes,Legs,Yes,Car,Sunny,2020-12-06 19:58:19.179835,2021-06-03 19:58:19.179835,5.0,29.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+462.29,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,222.29,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Rainy,2022-10-16 06:48:45.225045,2022-12-13 06:48:45.225045,5.0,67.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Male
+800.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,15.0,350.0,No,Yes,Legs,No,Car,Rainy,2023-12-22 12:43:38.443688,2024-09-10 12:43:38.443688,8.0,29.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Male
+495.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Motorcycle,Rainy,2021-07-08 00:50:07.321464,2021-11-21 00:50:07.321464,19.0,67.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Female
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Car,Rainy,2022-10-29 17:14:42.176435,2023-06-24 17:14:42.176435,12.0,20.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+1622.24,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,650.0,0.0,288.87,490.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,102.24,50.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2021-09-28 09:29:12.110422,2022-08-01 09:29:12.110422,4.0,59.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+3726.57,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2000.0,0.0,285.0,0.0,0.0,30.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,1181.57,No,No,Multiple,Yes,Truck,Rainy,2023-10-10 12:22:36.751350,2024-06-09 12:22:36.751350,5.0,56.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+2865.0,Rear end,I. 9 months,0.0,0.0,0.0,1972.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Sunny,2021-07-29 08:31:18.135627,2021-12-27 08:31:18.135627,3.0,52.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Female
+260.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2023-10-03 12:09:04.428885,2024-09-13 12:09:04.428885,5.0,77.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Male
+1133.0,"Other side opened their door, hitting clt's vehicle",G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Arms,No,Motorcycle,Sunny,2022-03-05 09:34:23.212642,2023-03-04 09:34:23.212642,17.0,36.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+1070.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,516.28,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,No,Motorcycle,Snowy,2021-11-26 09:23:09.157831,2022-07-31 09:23:09.157831,12.0,62.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+1429.32,Rear end,G. 7 months,0.0,0.0,0.0,524.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,10.32,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2021-07-21 11:16:04.272854,2022-02-25 11:16:04.272854,2.0,79.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+2570.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,3500.0,0.0,0.0,0.0,0.0,187.88,0.0,0.0,520.0,104.0,0.0,0.0,544.45,0.0,Yes,Yes,Legs,No,Car,Sunny,2022-07-07 19:34:41.936387,2022-07-16 19:34:41.936387,9.0,21.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,,520.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Arms,Yes,Car,,2022-10-14 05:44:48.297659,2023-08-04 05:44:48.297659,3.0,48.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Snowy,2022-12-15 10:44:57.659531,2022-12-28 10:44:57.659531,14.0,59.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Male
+1241.0,Rear end,F. 6 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,421.0,No,Yes,Hips,No,Motorcycle,Sunny,2022-04-05 01:33:37.123424,2022-12-24 01:33:37.123424,11.0,55.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Other
+1324.2,Other side changed lanes on a roundabout colliding with clt's vehicle,I. 9 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.2,0.0,No,No,Legs,Yes,Motorcycle,Rainy,2021-06-17 14:10:38.047609,2022-01-28 14:10:38.047609,14.0,50.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+272.9,Other side reversed into clt's stationary vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,260.0,0.0,0.0,0.0,15.6,0.0,No,Yes,Multiple,No,Truck,Snowy,2020-03-05 20:05:13.982796,2020-10-22 20:05:13.982796,9.0,23.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Male
+520.0,Rear end,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,,,No,Yes,Arms,Yes,Truck,Sunny,2021-05-24 22:24:56.459291,2021-11-18 22:24:56.459291,11.0,25.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+3046.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2101.0,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,,0.0,0.0,50.0,No,Yes,Multiple,,,Rainy,2020-06-03 11:58:24.940988,2021-02-05 11:58:24.940988,7.0,45.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Snowy,2020-02-08 20:15:01.620324,2020-04-15 20:15:01.620324,2.0,32.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Sunny,2023-01-15 16:45:19.263852,2023-11-08 16:45:19.263852,6.0,48.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+495.0,Rear end,E. 5 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Snowy,2023-08-03 04:10:36.607321,2024-01-07 04:10:36.607321,17.0,25.0,1.0,Lost control on a snowy road.,,Yes,Yes,Female
+887.2,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,29.7,621.0,No,No,Legs,Yes,Car,Snowy,2020-01-30 11:56:58.523704,2020-07-13 11:56:58.523704,2.0,71.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Female
+1006.74,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,1.74,126.0,No,Yes,Legs,Yes,Car,Sunny,2022-12-23 08:00:11.522304,2023-06-25 08:00:11.522304,14.0,23.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Male
+1645.0,Other,H. 8 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Snowy,2022-03-07 17:38:53.986797,2022-10-01 17:38:53.986797,1.0,46.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+913.7,Rear end,I. 9 months,0.0,0.0,200.0,0.0,0.0,0.0,0.0,18.7,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2022-01-13 06:55:40.028005,2022-01-29 06:55:40.028005,14.0,68.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+1600.0,Rear end,E. 5 months,0.0,0.0,0.0,1444.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Legs,No,Truck,Rainy,2022-01-17 02:03:00.036007,2022-11-13 02:03:00.036007,12.0,63.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Female
+1220.0,Other,A. 1 month,0.0,0.0,0.0,980.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Motorcycle,Sunny,2022-06-07 03:35:28.025605,2023-04-09 03:35:28.025605,19.0,51.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+861.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,168.0,0.0,0.0,25.2,0.0,Yes,No,Arms,No,Motorcycle,Rainy,2021-08-07 02:48:13.538707,2022-04-05 02:48:13.538707,9.0,24.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Other
+1450.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,413.28,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Arms,Yes,Car,Snowy,2020-10-03 20:54:46.737347,2021-05-21 20:54:46.737347,7.0,57.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+5106.17,Other side drove on wrong side of the road,H. 8 months,0.0,,,2944.0,0.0,1416.82,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,129.24,32.67,968.0,,Yes,Arms,Yes,,Sunny,2021-04-02 22:44:31.734346,2021-04-20 22:44:31.734346,15.0,27.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Female
+910.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,798.0,No,No,Multiple,Yes,Motorcycle,Sunny,2023-12-12 14:24:27.653530,2024-05-07 14:24:27.653530,15.0,30.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Male
+990.0,Rear end,D. 4 months,0.0,0.0,0.0,595.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Legs,No,Motorcycle,Sunny,2021-08-22 14:18:07.417483,2022-04-23 14:18:07.417483,1.0,79.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Female
+1217.0,Rear end,F. 6 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,169.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,525.0,No,Yes,Hips,Yes,Truck,Sunny,2022-05-27 15:15:09.541908,2022-07-17 15:15:09.541908,8.0,39.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+730.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Legs,No,Motorcycle,Rainy,2020-02-26 08:48:52.426485,2020-11-11 08:48:52.426485,7.0,38.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Female
+1012.5,Rear end - 3 car - Clt at front,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,117.5,No,Yes,Multiple,No,Motorcycle,Rainy,2020-08-04 09:58:00.456091,2021-03-30 09:58:00.456091,10.0,69.0,1.0,,Concussion and bruised ribs.,Yes,No,Male
+3420.92,Other side pulled out of side road,R. 18 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,10.92,405.0,No,No,Hips,Yes,Truck,Snowy,2023-02-14 18:43:25.481096,2023-10-18 18:43:25.481096,0.0,18.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Male
+495.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,148.98,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Motorcycle,Snowy,2022-05-14 04:49:12.590518,2023-04-24 04:49:12.590518,10.0,58.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+7862.9,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,7735.58,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2023-08-27 02:56:52.042408,2024-07-02 02:56:52.042408,17.0,76.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+520.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2021-10-22 22:16:35.239047,2021-12-10 22:16:35.239047,14.0,59.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+695.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,175.0,0.0,0.0,,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Sunny,2022-09-25 20:09:15.951190,2023-07-06 20:09:15.951190,8.0,69.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Female
+912.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,392.0,No,Yes,Hips,No,Motorcycle,Rainy,2022-05-03 16:28:54.106821,2022-06-10 16:28:54.106821,8.0,19.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2022-08-08 08:35:37.387477,2023-05-19 08:35:37.387477,0.0,69.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+2836.2,Rear end,F. 6 months,0.0,0.0,0.0,2000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,16.2,350.0,No,Yes,Legs,No,Truck,Rainy,2022-08-03 23:27:09.685937,2022-09-04 23:27:09.685937,6.0,46.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2023-02-02 19:20:17.763552,2023-10-03 19:20:17.763552,11.0,28.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+758.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Legs,No,Truck,Snowy,2020-01-11 19:20:52.330466,2020-02-21 19:20:52.330466,9.0,54.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+260.0,Other,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Sunny,2021-05-10 21:57:51.814362,2022-02-26 21:57:51.814362,18.0,67.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2023-08-26 12:55:44.348869,2023-12-07 12:55:44.348869,15.0,24.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+260.0,Rear end,C. 3 months,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,,0.0,0.0,No,Yes,Multiple,,Car,Sunny,,2024-01-07 19:51:07.093418,5.0,52.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Other
+2195.0,Rear end - 3 car - Clt at front,G. 7 months,0.0,0.0,0.0,2030.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2022-07-27 09:12:29.669933,2022-11-11 09:12:29.669933,10.0,47.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Sunny,2021-06-04 17:45:48.789757,2022-02-05 17:45:48.789757,18.0,33.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Other
+260.0,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Sunny,2021-07-28 04:29:02.748549,2021-10-23 04:29:02.748549,18.0,32.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Female
+830.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,406.0,No,No,Legs,No,Motorcycle,Rainy,2020-01-30 18:57:32.370474,2020-04-05 18:57:32.370474,17.0,57.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Female
+1421.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,747.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,50.0,Yes,Yes,Legs,No,Car,Rainy,2020-01-12 23:23:07.717543,2020-05-29 23:23:07.717543,14.0,37.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Rainy,2022-05-24 10:08:57.227445,2023-04-15 10:08:57.227445,,45.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Female
+1125.0,Other side collided with Clt's parked vehicle,E. 5 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Legs,Yes,Truck,Snowy,2022-07-28 20:15:18.903780,2023-02-13 20:15:18.903780,13.0,76.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,125.0,No,No,Legs,Yes,Car,Rainy,2022-05-23 06:06:41.840368,2023-04-23 06:06:41.840368,7.0,54.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Male
+1707.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,1187.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Snowy,2023-06-06 08:18:54.946989,2023-09-07 08:18:54.946989,7.0,20.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+838.6,Other side overtook and hit Clt when pulling in,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,520.0,0.0,0.0,0.0,18.6,290.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2022-09-10 22:40:29.765953,2023-08-24 22:40:29.765953,1.0,46.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Other
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,1230.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Snowy,2020-11-05 20:58:31.422284,2021-08-10 20:58:31.422284,5.0,76.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+852.2,Other side drove on wrong side of the road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,7.2,501.75,No,No,Legs,No,Car,,2022-01-14 10:57:55.415083,2022-02-03 10:57:55.415083,12.0,54.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Male
+260.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,,Hips,Yes,Motorcycle,Rainy,,2022-02-17 11:45:27.185437,12.0,26.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Other
+617.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,122.0,No,No,Multiple,Yes,Truck,Rainy,2022-12-13 09:41:00.732146,2023-03-13 09:41:00.732146,11.0,44.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+1595.0,Rear end - Clt pushed into next vehicle,I. 9 months,,,0.0,2130.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Snowy,2023-03-13 08:34:45.537107,2023-05-02 08:34:45.537107,1.0,49.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Female
+1327.99,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.99,0.0,0.0,895.0,0.0,0.0,0.0,0.0,415.0,No,Yes,Legs,Yes,Car,Snowy,2020-04-04 22:03:20.200040,2020-04-14 22:03:20.200040,19.0,65.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Other
+889.6,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Multiple,No,Truck,,2020-11-23 02:31:48.381676,2021-02-10 02:31:48.381676,11.0,78.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Other
+1101.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,168.0,0.0,0.0,0.0,135.0,Yes,No,Legs,Yes,Motorcycle,Snowy,2020-02-01 06:00:21.604320,2020-03-09 06:00:21.604320,16.0,63.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+1850.23,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,350.0,1725.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,600.23,0.0,0.0,190.0,No,Yes,Arms,No,Motorcycle,Snowy,2022-02-21 03:10:41.648329,2022-04-21 03:10:41.648329,5.0,67.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+1548.48,Rear end,G. 7 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,9.72,0.0,No,Yes,Arms,No,Truck,Rainy,2020-04-07 13:08:24.820964,2020-07-04 13:08:24.820964,6.0,56.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Other
+1390.0,Other side pulled out of side road,A. 1 month,0.0,0.0,1000.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Sunny,2021-08-18 12:10:13.562712,2021-11-30 12:10:13.562712,5.0,48.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+989.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,,748.0,No,Yes,Multiple,No,Motorcycle,Sunny,2020-08-22 12:32:58.955791,2021-07-07 12:32:58.955791,3.0,64.0,4.0,,Fractured arm and leg.,Yes,No,Male
+2045.0,Rear end,I. 9 months,0.0,0.0,0.0,1460.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Sunny,2021-06-23 17:22:28.829765,2022-03-27 17:22:28.829765,8.0,43.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Male
+3074.0,Rear end,H. 8 months,0.0,0.0,0.0,2137.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,50.0,Yes,Yes,Multiple,Yes,Car,Rainy,2020-08-11 17:12:06.625325,2020-11-23 17:12:06.625325,4.0,57.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Male
+616.76,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,351.2,0.0,0.0,260.0,52.0,0.0,0.0,5.56,0.0,Yes,Yes,Hips,Yes,Car,Sunny,2022-10-27 02:09:37.555511,2023-07-08 02:09:37.555511,9.0,20.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Male
+1044.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,33.84,805.95,No,No,Arms,No,Car,Sunny,2021-11-04 11:40:50.650130,2022-06-22 11:40:50.650130,14.0,28.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Male
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2022-04-06 05:35:52.510502,2023-03-07 05:35:52.510502,7.0,69.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+1695.0,Rear end,E. 5 months,0.0,0.0,0.0,1446.5,0.0,0.0,0.0,0.0,47.0,0.0,0.0,520.0,0.0,0.0,0.0,15.0,345.0,No,Yes,Legs,No,Car,Sunny,2021-03-10 13:59:23.992798,2021-04-16 13:59:23.992798,3.0,46.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Other
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Truck,Snowy,2023-04-20 21:49:13.310662,2024-02-15 21:49:13.310662,4.0,44.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Female
+1195.0,Rear end,G. 7 months,0.0,0.0,0.0,1444.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Hips,No,Car,Snowy,2022-11-07 11:31:37.579515,2023-03-29 11:31:37.579515,6.0,75.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+1969.4,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,29.4,0.0,525.0,No,Yes,Multiple,No,Motorcycle,Snowy,2021-11-24 01:18:38.383676,2022-01-06 01:18:38.383676,5.0,67.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+1995.3,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,1260.0,0.0,0.0,0.0,0.0,696.6,0.0,0.0,260.0,0.0,0.0,0.0,38.7,0.0,No,Yes,Legs,No,Truck,Snowy,2020-09-01 03:51:35.899179,2020-12-26 03:51:35.899179,12.0,64.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,10.8,0.0,No,Yes,Hips,No,Motorcycle,Snowy,2022-08-24 10:06:38.959791,2023-07-31 10:06:38.959791,18.0,27.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+1253.0,Rear end,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,91.62,518.0,No,Yes,Multiple,Yes,Car,Snowy,2022-11-20 21:57:34.530906,2023-02-12 21:57:34.530906,9.0,78.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+1018.0,Other,E. 5 months,0.0,0.0,0.0,1038.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,180.0,No,Yes,Legs,No,Car,Snowy,2023-11-12 19:26:55.283056,2024-07-28 19:26:55.283056,14.0,74.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+1524.69,Rear end,F. 6 months,0.0,0.0,0.0,1740.0,0.0,0.0,0.0,0.0,76.99,0.0,0.0,520.0,0.0,0.0,0.0,213.9,182.01,No,Yes,Arms,No,Motorcycle,Snowy,2022-03-26 03:14:26.333266,2023-03-21 03:14:26.333266,2.0,52.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+2590.0,Rear end,J. 10 months,0.0,0.0,0.0,1200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2023-05-15 03:36:02.592518,2023-08-10 03:36:02.592518,17.0,64.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Female
+840.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Rainy,2023-03-09 06:26:51.682336,2024-02-15 06:26:51.682336,13.0,74.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Other
+1691.0,Other side drove on wrong side of the road,G. 7 months,0.0,,0.0,575.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,,0.0,0.0,455.0,No,Yes,Legs,No,Truck,Rainy,2023-01-05 11:25:34.626925,,2.0,78.0,1.0,,Whiplash and minor bruises.,Yes,No,Other
+1720.0,Other side drove on wrong side of the road,F. 6 months,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,,No,Yes,Legs,Yes,Car,Snowy,2021-03-15 06:08:25.541108,2021-12-31 06:08:25.541108,10.0,40.0,4.0,Side collision at an intersection.,,No,No,Other
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2021-12-16 13:02:04.584916,2022-03-22 13:02:04.584916,9.0,,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Female
+1015.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,120.0,No,No,Multiple,Yes,Car,Rainy,2022-06-08 00:37:09.565913,2023-02-18 00:37:09.565913,16.0,28.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Other
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2021-08-16 18:06:50.482096,2022-07-24 18:06:50.482096,12.0,77.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Other
+1348.25,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,508.25,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Car,Snowy,2021-05-11 04:58:25.661132,2021-09-24 04:58:25.661132,1.0,60.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+1390.0,Rear end,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,Yes,Truck,Rainy,2021-10-27 21:26:10.634126,2022-07-02 21:26:10.634126,12.0,68.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Male
+1044.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,33.84,805.95,No,No,Multiple,Yes,Car,Snowy,2021-01-16 17:17:17.727545,2021-04-18 17:17:17.727545,18.0,44.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+3995.0,Rear end,H. 8 months,0.0,0.0,0.0,2500.0,0.0,0.0,0.0,0.0,80.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2022-01-08 00:45:30.786157,2022-09-12 00:45:30.786157,4.0,72.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+895.0,Other side pulled on to roundabout,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,0.0,No,Yes,Hips,No,,Snowy,2023-01-25 22:05:03.900780,2023-10-10 22:05:03.900780,15.0,,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Female
+1682.0,Other side pulled out of side road,L. 12 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,455.0,Yes,Yes,Multiple,No,Truck,Snowy,2020-10-11 18:10:00.600120,2021-04-16 18:10:00.600120,9.0,76.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Other
+1750.0,Rear end,G. 7 months,0.0,0.0,0.0,1112.0,0.0,,0.0,0.0,0.0,0.0,0.0,840.0,0.0,,0.0,,325.0,No,No,Legs,Yes,Truck,,2021-08-23 11:19:48.957791,2021-12-25 11:19:48.957791,11.0,47.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Other
+280.0,Rear end - 3 car - Clt at front,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,40.0,No,No,Arms,No,Car,Sunny,2023-11-05 19:13:22.960592,2024-07-22 19:13:22.960592,19.0,20.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Female
+1708.0,Other side changed lanes on a roundabout colliding with clt's vehicle,F. 6 months,0.0,,0.0,2194.0,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,,,No,Yes,Hips,Yes,Motorcycle,Rainy,2021-12-09 12:48:32.262452,2022-05-27 12:48:32.262452,12.0,30.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Male
+895.0,Other side changed lanes and collided with clt's vehicle,,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,,Sunny,2022-12-09 00:32:33.030606,2023-03-30 00:32:33.030606,15.0,76.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Female
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,14.7,50.0,No,No,Hips,No,Truck,Sunny,2021-12-10 02:49:39.955991,2022-09-26 02:49:39.955991,0.0,71.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+690.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,565.0,No,No,Multiple,No,Car,Sunny,2023-12-13 11:26:09.193838,2024-03-09 11:26:09.193838,8.0,57.0,2.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+4826.0,Rear end - 3 car - Clt at front,X. 24 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4345.0,0.0,0.0,0.0,0.0,634.99,No,Yes,Hips,No,Truck,Rainy,2022-12-26 06:05:49.989998,2023-01-08 06:05:49.989998,15.0,38.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Female
+481.2,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,52.0,0.0,0.0,0.0,238.0,Yes,Yes,Arms,Yes,Truck,Rainy,2020-04-14 20:22:30.990198,2021-01-02 20:22:30.990198,18.0,60.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+1189.0,Other,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,405.0,No,Yes,Arms,No,Motorcycle,Rainy,2021-10-11 05:54:01.368273,2022-07-26 05:54:01.368273,14.0,28.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+795.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,520.0,0.0,0.0,0.0,0.0,275.0,No,,Legs,No,Motorcycle,Rainy,2020-05-21 08:33:01.836367,2020-06-13 08:33:01.836367,,62.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Female
+2120.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2021-02-21 01:25:33.186637,2021-09-09 01:25:33.186637,11.0,,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+240.0,Other,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Sunny,2021-08-30 11:33:21.280256,2022-04-29 11:33:21.280256,13.0,55.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Female
+2739.38,Rear end,G. 7 months,0.0,0.0,150.0,0.0,0.0,0.0,480.0,0.0,281.88,0.0,0.0,895.0,0.0,0.0,0.0,557.5,375.0,No,Yes,Arms,Yes,Truck,Rainy,2020-07-21 23:32:03.504700,2021-03-17 23:32:03.504700,2.0,48.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+1117.5,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Hips,Yes,Car,Sunny,2023-09-22 23:48:45.945189,2024-07-21 23:48:45.945189,3.0,41.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+1692.0,Other,G. 7 months,0.0,0.0,150.0,455.0,0.0,0.0,90.0,,268.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,188.0,,Yes,Hips,No,Truck,Rainy,2020-02-28 16:53:23.200640,2020-08-11 16:53:23.200640,,59.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Female
+495.0,Rear end - Clt pushed into next vehicle,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Truck,Rainy,2023-01-31 11:15:46.989397,2023-09-14 11:15:46.989397,15.0,68.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Female
+240.0,Other side reversed into Clt's vehicle,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Snowy,2020-12-15 21:15:48.429685,2021-06-09 21:15:48.429685,12.0,29.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+520.0,Other side collided with Clt's parked vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2021-01-05 00:54:43.856771,2021-02-03 00:54:43.856771,11.0,78.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Other
+997.81,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,0.0,520.0,0.0,0.0,0.0,77.21,421.35,No,Yes,Legs,Yes,Car,Rainy,2022-05-17 09:55:24.904980,2022-10-29 09:55:24.904980,11.0,63.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Other
+495.0,Rear end,F. 6 months,,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Car,Rainy,2020-01-22 07:41:10.814162,2020-02-14 07:41:10.814162,1.0,60.0,,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Multiple,Yes,Truck,Rainy,2020-01-28 17:53:35.443088,2020-11-17 17:53:35.443088,12.0,44.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Male
+2279.0,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,,0.0,0.0,0.0,625.0,Yes,Yes,Hips,Yes,Car,Snowy,2023-05-31 12:07:38.011602,2023-07-14 12:07:38.011602,2.0,,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+937.27,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.67,0.0,0.0,0.0,495.0,0.0,0.0,0.0,25.8,462.0,No,No,Hips,Yes,Motorcycle,Sunny,2022-10-12 11:41:25.217043,2023-06-30 11:41:25.217043,12.0,42.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+730.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Arms,No,Car,Rainy,2021-10-05 02:42:10.586117,2022-04-03 02:42:10.586117,1.0,47.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Female
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,,Yes,Multiple,,Truck,Rainy,2020-03-16 01:24:58.619723,2021-01-06 01:24:58.619723,18.0,47.0,,Rear-ended at a stoplight.,,No,No,Female
+2030.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2093.0,0.0,0.0,220.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,195.0,No,Yes,Arms,No,Motorcycle,Rainy,2022-12-04 08:23:31.482296,2023-04-22 08:23:31.482296,8.0,75.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+3501.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2884.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Multiple,No,,,2023-07-16 08:36:11.954390,2024-06-14 08:36:11.954390,,27.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2022-03-30 12:22:54.034806,2022-12-03 12:22:54.034806,0.0,20.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Female
+1970.06,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,5.31,574.0,Yes,Yes,Legs,No,Car,Sunny,2023-05-28 00:00:51.850370,2024-01-24 00:00:51.850370,12.0,30.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Other
+1419.5,Rear end,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,,0.0,0.0,99.5,No,No,Legs,Yes,Truck,Sunny,2020-02-24 00:44:21.652330,2020-06-09 00:44:21.652330,,77.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Male
+2045.0,Rear end,D. 4 months,0.0,0.0,0.0,1846.5,0.0,660.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,18.0,50.0,No,Yes,Legs,No,Car,Sunny,2020-02-11 11:20:06.241248,2020-08-02 11:20:06.241248,14.0,44.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Female
+962.62,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,113.82,0.0,28.8,406.0,No,Yes,Legs,No,Car,Sunny,2022-09-06 06:31:28.217643,2022-10-25 06:31:28.217643,18.0,35.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+574.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2020-07-05 15:00:28.085617,2020-11-05 15:00:28.085617,15.0,76.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Female
+780.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Snowy,2022-12-30 22:14:51.538307,2023-02-03 22:14:51.538307,10.0,62.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Other
+1245.0,Other side reversed into clt's stationary vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2021-08-28 17:29:58.199639,2021-12-12 17:29:58.199639,14.0,79.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+1153.9,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,400.86,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Snowy,2023-03-04 21:18:23.980796,2024-01-26 21:18:23.980796,5.0,41.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+1320.0,Rear end,D. 4 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Rainy,2020-02-28 16:53:23.200640,2020-09-11 16:53:23.200640,13.0,63.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Male
+760.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2022-06-22 01:04:14.210842,2022-10-09 01:04:14.210842,5.0,79.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+1239.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,565.0,No,Yes,Legs,Yes,Truck,Sunny,2022-07-13 08:45:25.025005,2022-11-15 08:45:25.025005,18.0,31.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Other
+1103.7,Rear end,E. 5 months,0.0,0.0,0.0,1400.0,0.0,1043.18,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,30.45,18.7,No,No,Multiple,No,Truck,Rainy,2022-06-18 05:56:54.202840,2023-05-11 05:56:54.202840,4.0,56.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+3501.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2884.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Multiple,No,Car,Snowy,2023-08-26 19:56:18.195639,2024-06-16 19:56:18.195639,10.0,61.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+1630.6,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1057.0,0.0,0.0,520.0,0.0,0.0,0.0,53.6,0.0,No,Yes,Legs,No,Truck,Sunny,2021-09-05 21:45:45.909181,2022-08-18 21:45:45.909181,3.0,74.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Female
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Sunny,2020-09-22 18:33:20.560112,2020-10-29 18:33:20.560112,8.0,21.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+565.0,Other side turned across Clt's path,D. 4 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,45.0,,Yes,Legs,No,Motorcycle,Rainy,2021-04-03 19:46:13.274654,2021-10-08 19:46:13.274654,8.0,33.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+2095.0,Other side drove on wrong side of the road,G. 7 months,0.0,0.0,0.0,2000.0,0.0,,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,102.0,0.0,No,Yes,Hips,Yes,,Rainy,2022-10-04 00:25:03.660732,2023-09-06 00:25:03.660732,16.0,68.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Other
+895.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,,,0.0,0.0,No,Yes,Legs,No,Truck,Snowy,2021-09-22 13:17:55.175035,2021-10-15 13:17:55.175035,7.0,27.0,,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Male
+,Other,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,,Car,Snowy,2023-06-17 03:39:47.277455,2024-03-04 03:39:47.277455,14.0,65.0,4.0,Lost control on a snowy road.,,No,Yes,Other
+727.36,Rear end,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.0,0.0,0.0,495.0,0.0,0.0,26.04,,375.0,No,No,Legs,Yes,Car,Snowy,2022-01-12 23:55:06.181236,2022-07-25 23:55:06.181236,8.0,54.0,4.0,Lost control on a snowy road.,,No,Yes,Other
+1095.0,Other side drove on wrong side of the road,G. 7 months,0.0,0.0,0.0,1103.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2021-01-23 03:29:42.356471,2021-06-24 03:29:42.356471,4.0,44.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+412.5,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Multiple,Yes,Truck,Snowy,2022-11-21 04:58:08.377675,2022-12-09 04:58:08.377675,3.0,65.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,2020-05-14 08:19:29.513902,2020-06-10 08:19:29.513902,19.0,18.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+1429.32,Rear end,G. 7 months,0.0,0.0,,524.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,10.32,0.0,0.0,No,Yes,,No,Car,Sunny,2020-08-23 09:34:40.496099,2020-09-16 09:34:40.496099,17.0,22.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+2028.48,Rear end,I. 9 months,0.0,0.0,0.0,1185.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,70.98,625.0,No,Yes,Multiple,No,Car,Sunny,2022-12-16 07:46:39.199839,2023-01-14 07:46:39.199839,8.0,30.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Female
+498.78,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,3.78,0.0,No,No,Legs,Yes,Car,Sunny,2021-10-25 20:22:13.706741,2022-03-13 20:22:13.706741,2.0,62.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+1103.7,Rear end,E. 5 months,0.0,0.0,0.0,1400.0,0.0,1043.18,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,30.45,18.7,No,No,Hips,No,Motorcycle,Snowy,2020-01-17 22:32:43.112622,2020-06-11 22:32:43.112622,8.0,20.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Other
+558.4,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,38.4,0.0,No,Yes,Arms,Yes,Truck,Rainy,2021-12-23 20:16:10.754150,2022-04-25 20:16:10.754150,8.0,34.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+728.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,173.0,0.0,0.0,60.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Sunny,2023-11-09 14:20:42.968593,2024-03-16 14:20:42.968593,3.0,36.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+2502.6,Other,A. 1 month,,0.0,,3450.0,0.0,552.58,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2020-12-03 07:51:33.018603,2021-03-30 07:51:33.018603,6.0,54.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Other
+1581.59,Rear end,H. 8 months,0.0,0.0,0.0,350.0,0.0,336.59,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2020-05-25 03:40:21.844368,2020-10-04 03:40:21.844368,6.0,22.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Male
+1393.78,Rear end,J. 10 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,,,No,Yes,Multiple,No,,Snowy,2023-06-17 03:39:47.277455,2024-04-01 03:39:47.277455,7.0,64.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+967.87,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,586.87,No,Yes,Hips,Yes,Car,Sunny,2023-07-17 05:37:53.494698,2024-02-08 05:37:53.494698,0.0,59.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Female
+3417.06,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,2394.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,78.06,475.0,No,Yes,Hips,No,Car,Rainy,2023-03-07 05:22:54.754950,,8.0,61.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Male
+698.5,Rear end - Clt pushed into next vehicle,C. 3 months,0.0,0.0,0.0,595.7,0.0,0.0,0.0,0.0,53.18,0.0,0.0,260.0,0.0,0.0,0.0,58.5,0.0,No,Yes,Arms,Yes,Car,Sunny,2021-04-14 08:06:31.758351,2021-05-26 08:06:31.758351,11.0,41.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+1271.5,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,,0.0,345.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2020-07-29 06:46:09.673934,2021-01-05 06:46:09.673934,5.0,60.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+,Other side turned across Clt's path,F. 6 months,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,4000.0,520.0,0.0,0.0,0.0,0.0,320.0,No,Yes,Hips,No,Car,Rainy,2021-01-07 01:58:40.784156,2021-09-16 01:58:40.784156,12.0,50.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+1301.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Legs,Yes,Truck,Sunny,2023-02-03 09:21:25.457091,2023-08-01 09:21:25.457091,4.0,72.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+2578.4,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,1972.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,448.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2020-07-20 12:29:14.270854,2020-11-22 12:29:14.270854,18.0,38.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+520.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Sunny,2023-03-20 22:49:25.553110,2023-12-05 22:49:25.553110,0.0,20.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+566.11,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.11,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-04-27 15:02:11.786357,2024-01-28 15:02:11.786357,17.0,21.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Female
+1090.0,Rear end - Clt pushed into next vehicle,B. 2 months,,0.0,0.0,967.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Rainy,2022-09-30 19:18:51.346269,2023-05-01 19:18:51.346269,7.0,68.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Female
+1645.0,Other,H. 8 months,0.0,,,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,,Truck,Rainy,2021-11-18 19:08:29.141828,2022-10-08 19:08:29.141828,7.0,49.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Other
+1652.37,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1980.0,0.0,32.37,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2020-08-06 18:02:31.230246,2021-02-12 18:02:31.230246,14.0,41.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+795.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,275.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2022-06-10 01:41:06.493298,2022-08-07 01:41:06.493298,18.0,69.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+1390.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2023-10-25 23:52:30.630126,2024-05-15 23:52:30.630126,9.0,52.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Other
+830.0,Rear end,F. 6 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Arms,Yes,Car,Sunny,2022-11-06 21:30:29.885977,2023-01-25 21:30:29.885977,15.0,35.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Other
+737.3199999999999,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,22.32,355.0,No,No,Arms,No,Truck,Sunny,2023-09-21 12:45:56.711342,2024-05-06 12:45:56.711342,10.0,20.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+1390.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,,Truck,Sunny,2021-05-12 16:01:14.894979,2021-08-15 16:01:14.894979,11.0,56.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,895.0,0.0,0.0,,0.0,0.0,,Yes,,Yes,Truck,Snowy,2022-10-03 03:23:22.120424,2022-10-07 03:23:22.120424,15.0,,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+2460.0,Rear end,G. 7 months,,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,120.0,No,No,Legs,Yes,Motorcycle,Snowy,2023-07-21 21:46:55.043008,2024-01-02 21:46:55.043008,15.0,43.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+965.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,15.0,455.0,No,No,Arms,No,Motorcycle,Sunny,2021-11-25 05:20:53.770754,2022-09-21 05:20:53.770754,19.0,77.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Male
+1796.0,Other,G. 7 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,200.0,0.0,0.0,840.0,0.0,0.0,0.0,56.0,0.0,No,No,Legs,No,Car,Snowy,2022-08-01 15:22:38.911782,2022-09-12 15:22:38.911782,2.0,78.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+1182.13,Other side pulled out of side road,E. 5 months,0.0,0.0,400.0,0.0,0.0,262.13,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2021-10-08 21:49:30.594118,2022-07-20 21:49:30.594118,8.0,70.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+240.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,,No,Arms,No,Car,Rainy,2020-09-15 11:19:14.390878,2021-05-02 11:19:14.390878,7.0,41.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Male
+1450.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,413.28,0.0,0.0,895.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Hips,No,Motorcycle,Sunny,2020-09-09 08:07:23.608721,2021-05-10 08:07:23.608721,9.0,76.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+2495.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,2075.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2022-10-17 10:51:00.612122,2023-05-17 10:51:00.612122,12.0,18.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Male
+1642.5,Other,,0.0,0.0,0.0,2140.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,211.0,No,Yes,Arms,No,Motorcycle,Snowy,2022-06-10 22:42:48.033606,2023-04-06 22:42:48.033606,,,4.0,Side collision at an intersection.,,No,Yes,Male
+240.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Car,Sunny,2020-08-17 06:22:49.713942,2020-10-11 06:22:49.713942,12.0,67.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Other
+808.0,Other,E. 5 months,0.0,0.0,0.0,115.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Arms,No,Motorcycle,Rainy,2020-05-13 04:17:14.126825,2021-04-14 04:17:14.126825,12.0,51.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Male
+1324.24,Rear end,G. 7 months,0.0,0.0,,0.0,,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,36.54,462.0,No,Yes,Hips,Yes,Truck,Sunny,2020-04-10 11:14:03.288657,2020-09-30 11:14:03.288657,14.0,77.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+1117.5,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Legs,Yes,Car,Rainy,2020-06-10 12:11:57.263452,2021-03-14 12:11:57.263452,12.0,76.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Female
+1671.0,Rear end,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,0.0,36.0,0.0,400.0,No,No,Legs,Yes,Motorcycle,Snowy,2020-08-17 20:23:57.407481,2021-07-17 20:23:57.407481,15.0,29.0,3.0,Swerved to avoid another vehicle.,,No,No,Other
+495.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Rainy,2021-06-15 06:06:07.273454,2022-01-30 06:06:07.273454,7.0,34.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+745.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,294.0,No,No,Multiple,Yes,Car,Rainy,2020-07-24 14:37:08.125625,2020-08-23 14:37:08.125625,,,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Female
+240.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Sunny,2023-12-04 03:08:06.097219,2023-12-27 03:08:06.097219,9.0,38.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Other
+789.0,,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,294.0,No,No,,No,Motorcycle,,2020-10-05 00:57:02.124424,,11.0,20.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Other
+495.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,,0.0,No,No,Multiple,Yes,Car,,2020-08-25 17:39:11.270254,,13.0,61.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+1469.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,574.0,No,Yes,Multiple,Yes,Car,Sunny,2021-03-28 02:33:14.798959,2021-11-04 02:33:14.798959,5.0,45.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+1335.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,686.0,No,Yes,Legs,No,Motorcycle,Snowy,2020-02-11 18:20:40.088017,2020-12-22 18:20:40.088017,8.0,42.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+1195.0,Other side changed lanes on a roundabout colliding with clt's vehicle,,0.0,0.0,0.0,173.0,0.0,0.0,0.0,,340.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,,No,Yes,Legs,Yes,Truck,Sunny,2022-03-22 01:06:32.478495,2022-06-12 01:06:32.478495,6.0,61.0,4.0,Swerved to avoid another vehicle.,,Yes,Yes,Female
+550.2,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,55.2,0.0,No,No,Legs,No,Car,Sunny,2023-01-04 21:24:26.933386,2023-09-03 21:24:26.933386,5.0,23.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2023-12-19 00:36:52.282456,2024-08-28 00:36:52.282456,0.0,79.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Male
+2118.8,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,64.8,630.0,Yes,Yes,Legs,Yes,Truck,Sunny,2023-01-22 02:57:43.892778,2023-03-15 02:57:43.892778,13.0,59.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+3726.57,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,,0.0,285.0,0.0,0.0,30.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,1181.57,No,No,Multiple,No,Motorcycle,Snowy,,2021-11-07 03:25:57.671534,5.0,47.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+815.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,325.0,No,Yes,Legs,No,Motorcycle,Sunny,2021-06-11 17:59:21.112222,2021-07-20 17:59:21.112222,11.0,49.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+4840.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4000.0,520.0,0.0,0.0,0.0,0.0,320.0,No,Yes,Legs,No,Truck,Rainy,2023-07-29 12:01:35.059011,2024-04-13 12:01:35.059011,16.0,39.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Other
+910.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,390.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2023-10-25 16:51:56.783356,2024-09-16 16:51:56.783356,4.0,75.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Female
+595.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Sunny,2022-03-10 22:45:06.301260,2022-12-06 22:45:06.301260,10.0,55.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Male
+2865.0,Rear end,I. 9 months,0.0,0.0,0.0,1972.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Sunny,2021-01-11 11:07:08.485697,2021-03-24 11:07:08.485697,4.0,31.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Other
+1316.88,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,527.35,No,Yes,Hips,Yes,Car,Rainy,2020-06-11 02:13:04.956991,2020-08-20 02:13:04.956991,11.0,51.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Male
+3100.0,Other,P. 16 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3100.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,No,Car,Snowy,2020-09-08 18:06:15.915183,2021-04-16 18:06:15.915183,2.0,60.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+350.0,,A. 1 month,0.0,0.0,0.0,0.0,,0.0,220.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Truck,Snowy,2021-12-26 18:21:49.221844,2021-12-30 18:21:49.221844,,64.0,3.0,Rear-ended at a stoplight.,,Yes,No,Female
+910.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,798.0,No,No,Legs,No,Motorcycle,Rainy,2023-12-24 06:47:01.524304,2024-12-08 06:47:01.524304,5.0,75.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+1735.0,Rear end,H. 8 months,0.0,0.0,0.0,959.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2021-11-18 19:08:29.141828,2022-09-04 19:08:29.141828,1.0,43.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Other
+677.0,,E. 5 months,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,495.0,0.0,0.0,0.0,0.0,182.0,No,No,Hips,Yes,Car,Sunny,2020-10-08 20:04:22.132426,2021-07-27 20:04:22.132426,1.0,57.0,4.0,Rear-ended at a stoplight.,,Yes,No,Male
+260.0,Rear end,C. 3 months,0.0,0.0,0.0,287.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Car,Snowy,2021-11-30 11:31:03.012602,2022-11-20 11:31:03.012602,11.0,71.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Truck,Rainy,2020-05-18 17:27:57.215443,2021-01-04 17:27:57.215443,7.0,30.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+650.0,Rear end,F. 6 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,80.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Snowy,2021-01-25 18:34:46.977395,2021-04-15 18:34:46.977395,1.0,47.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+560.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,40.0,,0.0,0.0,,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2020-06-02 00:55:35.707141,2020-08-07 00:55:35.707141,,36.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Female
+890.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,43.9,370.0,No,No,Arms,No,Motorcycle,Rainy,2022-01-20 21:10:20.044008,2022-06-05 21:10:20.044008,15.0,59.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+950.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,455.0,No,No,Legs,Yes,Truck,Snowy,2020-06-12 20:16:28.037607,2020-12-20 20:16:28.037607,14.0,58.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+6976.96,Rear end,F. 6 months,,,0.0,0.0,0.0,0.0,0.0,0.0,6070.0,0.0,0.0,495.0,0.0,0.0,36.96,0.0,375.0,No,No,Arms,No,Car,Snowy,2022-12-17 04:48:20.740148,2023-11-29 04:48:20.740148,13.0,67.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,Yes,Male
+1290.0,Rear end,F. 6 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,35.28,454.35,No,Yes,Multiple,Yes,Truck,Sunny,2023-09-24 03:51:01.332266,2024-08-25 03:51:01.332266,19.0,56.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Truck,Rainy,2020-12-17 22:19:45.357071,2021-02-14 22:19:45.357071,3.0,20.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Male
+1153.0,Other side reversed into clt's stationary vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Hips,Yes,Car,Snowy,2023-03-23 20:55:04.020804,2023-12-14 20:55:04.020804,3.0,48.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Female
+240.0,Other side changed lanes on a roundabout colliding with clt's vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Sunny,2023-01-28 13:10:08.521704,2023-02-04 13:10:08.521704,10.0,29.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+1695.0,Rear end,H. 8 months,0.0,0.0,0.0,2030.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,100.0,No,Yes,Multiple,No,Motorcycle,Snowy,2023-05-11 22:29:50.278055,2023-11-29 22:29:50.278055,17.0,32.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+895.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Sunny,2021-10-15 15:02:29.069813,2022-09-12 15:02:29.069813,4.0,71.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Female
+1405.0,Rear end - 3 car - Clt at front,J. 10 months,0.0,0.0,0.0,555.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Snowy,2020-12-04 18:54:22.252450,2021-07-29 18:54:22.252450,1.0,70.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Female
+945.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,425.0,No,Yes,Arms,No,Truck,Snowy,2023-11-01 10:04:55.259051,2024-07-26 10:04:55.259051,14.0,62.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+1595.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,356.0,No,Yes,Multiple,No,Truck,Sunny,2023-01-22 02:57:43.892778,2023-04-11 02:57:43.892778,10.0,55.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Male
+1170.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,675.0,No,No,Hips,Yes,Motorcycle,Rainy,2020-01-21 17:40:03.120624,2020-03-07 17:40:03.120624,16.0,57.0,3.0,Rear-ended at a stoplight.,,No,No,Female
+,Rear end,E. 5 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,,0.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2020-08-08 05:05:20.464092,2021-04-08 05:05:20.464092,15.0,31.0,1.0,Swerved to avoid another vehicle.,,No,Yes,Female
+524.6,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2023-01-30 00:12:57.755551,2023-11-14 00:12:57.755551,14.0,52.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Snowy,2020-09-21 00:29:57.479495,2021-02-28 00:29:57.479495,2.0,33.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
+1549.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,,Multiple,No,Car,,2020-01-15 21:28:46.185237,2020-05-09 21:28:46.185237,19.0,67.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+3590.0,Other side pulled on to roundabout,L. 12 months,0.0,0.0,0.0,2200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2022-02-04 11:38:32.382476,2022-05-29 11:38:32.382476,14.0,41.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+1245.0,Other side reversed into clt's stationary vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Multiple,Yes,Motorcycle,Sunny,2022-07-20 15:59:31.194238,2022-11-23 15:59:31.194238,18.0,34.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Male
+495.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Rainy,2023-02-27 01:07:07.045409,2023-05-28 01:07:07.045409,12.0,35.0,,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+1421.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,747.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,50.0,Yes,Yes,Legs,No,Car,Rainy,2021-01-10 21:06:00.792158,2021-03-12 21:06:00.792158,15.0,59.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Male
+520.0,Other,F. 6 months,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,0.0,No,Yes,Multiple,Yes,Car,Rainy,2023-10-28 00:56:27.557511,,11.0,,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2021-06-01 12:39:36.475295,2021-09-11 12:39:36.475295,16.0,33.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+1787.5,Other side reversed into Clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,525.0,No,Yes,Arms,Yes,Car,Snowy,2023-02-13 14:41:10.094018,2023-06-07 14:41:10.094018,15.0,38.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Male
+349.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,9.0,0.0,No,No,Arms,Yes,Motorcycle,Sunny,2023-02-18 20:51:19.335867,2023-08-11 20:51:19.335867,8.0,41.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Other
+895.0,Other side reversed into clt's stationary vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Snowy,2020-10-04 03:55:20.584116,,5.0,51.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Other
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2022-07-05 11:30:11.162232,2023-01-04 11:30:11.162232,18.0,69.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Male
+1440.0,Rear end,H. 8 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,350.0,No,No,Hips,Yes,Motorcycle,Sunny,2021-12-06 14:42:53.794758,2022-06-29 14:42:53.794758,12.0,53.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+670.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,99.0,,0.0,50.4,238.0,Yes,No,Arms,No,Truck,Rainy,2021-10-27 14:25:36.787357,2022-10-25 14:25:36.787357,7.0,60.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Male
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Snowy,2021-02-20 04:23:51.646329,2021-09-03 04:23:51.646329,11.0,44.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+2502.6,Other,A. 1 month,0.0,0.0,0.0,3450.0,0.0,552.58,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Sunny,2021-04-07 14:53:33.282656,2022-02-06 14:53:33.282656,8.0,56.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Male
+498.0,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Hips,Yes,Truck,Sunny,2020-11-01 11:50:03.720744,2020-11-26 11:50:03.720744,3.0,34.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Other
+640.0,,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,132.0,No,Yes,Hips,Yes,Car,Snowy,2021-09-24 07:21:18.255651,2022-05-16 07:21:18.255651,12.0,42.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+3055.0,Rear end,F. 6 months,0.0,0.0,0.0,2875.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,60.0,0.0,0.0,0.0,0.0,Yes,Yes,Arms,No,Truck,Sunny,2023-03-20 22:49:25.553110,2023-04-05 22:49:25.553110,1.0,68.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Female
+460.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,200.0,No,Yes,Arms,Yes,Car,Snowy,2020-12-09 11:03:23.800760,2021-04-29 11:03:23.800760,2.0,55.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+1975.0,Rear end,C. 3 months,0.0,0.0,0.0,1610.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,125.0,No,No,Legs,No,,Rainy,2021-09-22 20:18:29.021804,2022-01-08 20:18:29.021804,4.0,59.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+1638.1799999999998,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,743.18,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2020-10-28 02:41:36.019203,2021-08-24 02:41:36.019203,17.0,79.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+2118.8,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,64.8,630.0,Yes,Yes,Hips,No,Motorcycle,Snowy,2022-08-18 06:54:48.177635,2023-07-23 06:54:48.177635,13.0,38.0,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Other
+728.0,Rear end,E. 5 months,,0.0,0.0,0.0,0.0,173.0,0.0,0.0,60.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,,Yes,Car,Rainy,2023-08-14 20:33:10.478095,2024-06-12 20:33:10.478095,1.0,,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+919.5,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,99.0,0.0,0.0,0.0,510.0,Yes,No,Arms,No,Motorcycle,Snowy,2021-01-19 01:21:48.501700,2021-04-09 01:21:48.501700,14.0,42.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Male
+495.0,Rear end,D. 4 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Sunny,2020-09-17 12:23:11.318263,2020-12-02 12:23:11.318263,7.0,76.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,Yes,Female
+520.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,1600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Sunny,2020-01-31 22:59:47.757551,2020-11-02 22:59:47.757551,15.0,77.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Snowy,2022-06-18 12:57:28.049609,2023-03-13 12:57:28.049609,2.0,47.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Other
+895.0,Other side pulled on to roundabout,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2020-08-05 06:59:41.996399,2020-11-25 06:59:41.996399,19.0,74.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Female
+545.0,Other side pulled out of side road,F. 6 months,,0.0,0.0,0.0,0.0,245.3,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Rainy,2020-06-30 08:50:18.843768,2021-05-12 08:50:18.843768,19.0,50.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Female
+1845.0,Rear end,G. 7 months,0.0,0.0,0.0,1105.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,19.2,425.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2023-05-23 07:51:50.302060,2023-08-06 07:51:50.302060,4.0,56.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+1952.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,1113.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,300.0,No,Yes,Multiple,Yes,Truck,Sunny,2020-08-27 11:42:34.350870,2021-03-29 11:42:34.350870,3.0,43.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Other
+1515.0,Other side overtook and hit Clt when pulling in,J. 10 months,0.0,0.0,0.0,25.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Hips,Yes,Truck,Snowy,2020-04-30 00:51:51.022204,2020-06-03 00:51:51.022204,11.0,42.0,2.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Male
+815.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,520.0,0.0,0.0,0.0,,325.0,No,Yes,,Yes,Truck,Rainy,2020-02-03 00:03:44.684936,2020-06-23 00:03:44.684936,18.0,,3.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Female
+1143.0,Rear end,F. 6 months,0.0,0.0,0.0,483.0,0.0,0.0,140.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2021-12-15 08:59:49.197839,2022-05-30 08:59:49.197839,14.0,33.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Male
+1010.0,Rear end,D. 4 months,0.0,0.0,0.0,,,0.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2022-09-04 05:27:31.290258,2023-04-23 05:27:31.290258,12.0,66.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Female
+880.0,Other,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,60.0,406.0,No,No,Legs,Yes,Motorcycle,Snowy,2023-05-17 04:39:59.519903,2024-03-04 04:39:59.519903,4.0,41.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Female
+493.0,Rear end,A. 1 month,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,294.0,No,,Hips,Yes,Truck,Snowy,2020-01-25 19:47:56.975395,2020-02-22 19:47:56.975395,11.0,22.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Female
+1024.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,1610.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,99.0,0.0,No,No,Arms,Yes,Motorcycle,Rainy,2023-04-24 16:56:33.318663,2024-02-13 16:56:33.318663,18.0,71.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Sunny,2021-04-04 02:46:47.121424,2022-03-03 02:46:47.121424,1.0,72.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+2235.0,Rear end,O. 15 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,110.0,No,Yes,Hips,Yes,Truck,Snowy,2021-08-08 13:51:02.772554,2022-08-03 13:51:02.772554,6.0,59.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Other
+1706.39,Other,C. 3 months,0.0,0.0,0.0,2121.0,69.0,0.0,0.0,0.0,282.2,0.0,0.0,260.0,0.0,0.0,5.4,70.0,19.79,No,Yes,Multiple,Yes,Truck,Snowy,2023-04-06 07:21:00.972194,2023-07-06 07:21:00.972194,4.0,56.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Other
+1374.4,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,44.4,544.0,No,No,Hips,No,Truck,Snowy,2020-08-22 12:32:58.955791,2020-12-15 12:32:58.955791,19.0,30.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Male
+3485.0,Other side drove on wrong side of the road,H. 8 months,0.0,0.0,0.0,2500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,590.0,No,Yes,Legs,No,Car,Rainy,2022-08-31 17:20:45.129025,2023-02-06 17:20:45.129025,10.0,47.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Female
+900.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,405.0,No,No,Legs,Yes,Truck,Snowy,2022-09-05 02:29:12.830566,2023-05-21 02:29:12.830566,17.0,77.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+726.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,24.0,182.0,No,Yes,Hips,No,Truck,Rainy,2020-11-08 05:03:02.196439,2021-10-12 05:03:02.196439,17.0,24.0,4.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+780.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2022-02-18 12:05:37.027405,2022-05-19 12:05:37.027405,6.0,64.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+2290.0,Other side drove on wrong side of the road,L. 12 months,0.0,0.0,0.0,1103.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1320.0,0.0,,0.0,0.0,798.0,No,No,Arms,Yes,Truck,Sunny,2023-04-24 09:55:59.471894,,9.0,34.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+795.0,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,400.0,No,Yes,,Yes,Motorcycle,Sunny,2022-03-20 07:03:09.397879,2023-01-12 07:03:09.397879,19.0,72.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Other
+1511.53,Rear end,H. 8 months,0.0,0.0,,1038.45,0.0,116.53,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Truck,Rainy,2023-09-15 16:34:39.775955,2023-10-16 16:34:39.775955,13.0,44.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,Yes,Female
+290.0,Rear end,A. 1 month,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Car,Sunny,2023-05-06 09:19:07.189437,2024-03-18 09:19:07.189437,19.0,52.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Female
+3428.0,Rear end,R. 18 months,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3005.0,0.0,0.0,0.0,523.2,322.0,No,No,Legs,No,Truck,Sunny,2021-02-15 05:14:16.251250,2022-02-08 05:14:16.251250,19.0,22.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Snowy,2022-12-28 07:09:46.917383,2023-11-05 07:09:46.917383,10.0,59.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Other
+1110.0,Other side drove on wrong side of the road,,0.0,0.0,0.0,1547.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Sunny,2020-03-18 02:28:55.547109,2020-11-01 02:28:55.547109,1.0,22.0,1.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Other
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2023-01-28 20:10:42.368473,2024-01-02 20:10:42.368473,12.0,41.0,3.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Other
+840.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Motorcycle,Sunny,2022-06-22 08:04:48.057611,2022-10-28 08:04:48.057611,12.0,24.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,No,Female
+1237.4,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,68.21,0.0,455.0,No,No,Hips,No,Car,Snowy,2023-11-02 07:06:36.799359,2024-07-29 07:06:36.799359,8.0,24.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+260.0,Rear end,A. 1 month,,0.0,0.0,0.0,,0.0,0.0,0.0,,,0.0,260.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,,Motorcycle,Rainy,2021-03-06 04:50:56.291258,2021-12-01 04:50:56.291258,16.0,71.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Female
+720.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,230.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,No,Truck,Sunny,2023-06-04 07:14:58.019603,2023-12-30 07:14:58.019603,14.0,72.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,Yes,Other
+2125.0,Other side turned across Clt's path,O. 15 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,No,Yes,,No,Car,Rainy,2020-04-04 22:03:20.200040,2020-09-29 22:03:20.200040,15.0,31.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Other
+918.8,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.6,0.0,0.0,495.0,0.0,0.0,43.2,0.0,462.0,No,No,Legs,No,Truck,Sunny,2020-12-18 05:20:19.203840,2021-10-20 05:20:19.203840,9.0,72.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
+2917.52,Other side turned across Clt's path,L. 12 months,0.0,0.0,0.0,1725.0,0.0,0.0,0.0,0.0,0.0,0.0,317.52,1390.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-08-04 22:13:59.687937,2024-02-11 22:13:59.687937,19.0,32.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Other
+800.05,Rear end - Clt pushed into next vehicle,A. 1 month,0.0,0.0,0.0,560.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Sunny,2021-03-15 06:08:25.541108,2022-03-07 06:08:25.541108,11.0,22.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,Yes,Other
+834.35,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.0,0.0,0.0,495.0,0.0,0.0,29.4,9.0,339.35,No,No,Legs,No,Car,Rainy,2022-10-29 03:13:34.482896,2023-01-05 03:13:34.482896,4.0,54.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,Yes,Male
+,Rear end,H. 8 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,,350.0,No,Yes,Hips,No,Motorcycle,Rainy,2021-02-24 13:32:19.347869,2022-01-17 13:32:19.347869,19.0,21.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+267.0,Rear end - 3 car - Clt at front,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,27.0,0.0,No,No,Multiple,Yes,Motorcycle,Rainy,2020-10-05 21:58:43.664732,2021-06-29 21:58:43.664732,16.0,47.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+2944.63,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,2790.0,0.0,2178.92,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,375.0,No,No,Legs,Yes,Car,Sunny,2020-06-10 19:12:31.110222,2021-03-07 19:12:31.110222,9.0,37.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Other
+859.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,,0.0,455.0,No,No,Hips,No,Car,Sunny,2022-08-08 08:35:37.387477,2023-08-05 08:35:37.387477,5.0,70.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Male
+1829.2,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,51.84,574.0,No,Yes,Arms,Yes,Motorcycle,Sunny,2023-04-23 19:54:51.778355,2024-04-17 19:54:51.778355,19.0,43.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Female
+621.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,126.0,No,No,Hips,Yes,Truck,Snowy,2023-12-30 02:58:18.459691,2024-05-06 02:58:18.459691,5.0,26.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+240.0,Other side pulled out of side road,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Snowy,2023-08-29 18:01:56.663332,2024-05-19 18:01:56.663332,11.0,47.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+920.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,425.0,No,No,Arms,No,Motorcycle,Snowy,2021-08-17 15:08:32.022404,2022-03-26 15:08:32.022404,18.0,76.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Male
+1133.63,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.23,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Legs,Yes,Truck,Rainy,2021-01-10 14:05:26.945389,2021-09-09 14:05:26.945389,1.0,61.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2020-12-15 14:15:14.582916,2021-08-16 14:15:14.582916,12.0,65.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+925.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,60.6,400.0,No,No,Legs,No,Car,Rainy,2023-09-23 06:49:19.791958,2023-10-12 06:49:19.791958,19.0,39.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Female
+2486.79,Rear end,F. 6 months,0.0,0.0,0.0,2093.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,14.79,182.0,No,Yes,Legs,,Motorcycle,Rainy,,2022-03-28 02:18:50.626125,10.0,,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+860.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,100.0,350.0,No,No,Hips,No,Truck,Rainy,2022-11-25 21:07:09.925985,2023-07-12 21:07:09.925985,14.0,58.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Female
+707.36,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,212.36,No,No,Hips,Yes,Car,Sunny,2022-10-08 23:34:39.055811,2022-12-05 23:34:39.055811,12.0,61.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+836.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,6.0,400.0,No,Yes,Hips,No,Truck,Rainy,2020-08-13 04:14:55.859171,2021-05-21 04:14:55.859171,2.0,47.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Female
+840.0,Rear end,,0.0,0.0,0.0,1547.9,,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,,,Yes,Truck,Sunny,,2022-02-01 07:05:27.665533,13.0,37.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Female
+520.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,0.0,0.0,No,Yes,Multiple,No,Car,Snowy,2020-05-17 06:25:07.981596,2020-08-27 06:25:07.981596,7.0,45.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,1600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Snowy,2021-02-04 02:52:50.074014,2021-03-24 02:52:50.074014,8.0,78.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,Yes,No,Male
+1410.0,Other side reversed into Clt's vehicle,E. 5 months,0.0,0.0,0.0,967.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,No,Car,Snowy,2022-07-03 17:26:48.081616,2022-08-22 17:26:48.081616,14.0,24.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+1225.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Arms,Yes,Truck,Snowy,2020-07-14 23:18:31.182236,2020-10-03 23:18:31.182236,17.0,70.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Other
+570.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,75.0,No,No,Arms,No,Car,Snowy,2020-12-08 21:02:16.107221,2021-10-04 21:02:16.107221,7.0,21.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Other
+1695.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Multiple,No,Motorcycle,Rainy,2020-02-02 03:02:03.144628,2020-04-01 03:02:03.144628,10.0,45.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+240.0,,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,240.0,0.0,,0.0,0.0,0.0,No,No,,Yes,Car,Rainy,2022-11-05 10:27:40.652130,2023-04-15 10:27:40.652130,4.0,72.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+3740.0,Other,J. 10 months,0.0,0.0,0.0,2000.0,0.0,0.0,120.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,462.0,No,Yes,Arms,No,Car,Rainy,2020-10-26 15:38:46.785357,2021-02-06 15:38:46.785357,14.0,52.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Car,Snowy,2022-11-03 23:24:51.418283,2023-10-03 23:24:51.418283,14.0,50.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,No,Male
+795.0,Rear end,A. 1 month,0.0,0.0,0.0,555.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Snowy,2022-08-02 05:23:46.605321,2023-05-03 05:23:46.605321,6.0,24.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+973.12,Rear end,H. 8 months,0.0,0.0,,0.0,,75.12,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,3.0,,No,Yes,Arms,Yes,Motorcycle,Sunny,2023-07-20 10:44:05.809161,2024-01-19 10:44:05.809161,17.0,26.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Female
+1575.0,,G. 7 months,0.0,,250.0,0.0,0.0,,80.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Multiple,No,Truck,Rainy,2021-03-05 21:50:22.444488,2021-06-29 21:50:22.444488,11.0,51.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+1470.87,Rear end,G. 7 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,3.87,322.0,No,Yes,Arms,No,Truck,Snowy,2021-11-25 19:22:01.464292,2022-11-22 19:22:01.464292,11.0,56.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+1220.35,,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,520.0,0.0,0.0,0.0,120.0,742.0,No,Yes,Multiple,Yes,Car,Snowy,,2024-08-16 21:48:21.460292,3.0,59.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+421.99,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,161.99,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Snowy,2022-05-17 16:55:58.751750,2022-10-28 16:55:58.751750,10.0,51.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Other
+800.05,Rear end - Clt pushed into next vehicle,A. 1 month,0.0,0.0,0.0,560.05,0.0,,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,,Hips,Yes,Car,Sunny,2021-11-26 09:23:09.157831,,5.0,30.0,1.0,Lost control on a snowy road.,,Yes,Yes,Other
+1939.75,Other side turned across Clt's path,J. 10 months,0.0,0.0,0.0,1868.0,0.0,0.0,0.0,18.7,1.05,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,730.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2022-08-18 20:55:55.871174,2023-07-02 20:55:55.871174,,,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+1440.0,Rear end,H. 8 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,350.0,No,No,Legs,Yes,Truck,Sunny,2023-10-20 03:41:13.694738,2024-08-19 03:41:13.694738,14.0,52.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Male
+2451.44,Rear end,D. 4 months,0.0,0.0,0.0,520.0,0.0,1064.84,0.0,0.0,290.49,0.0,0.0,,0.0,0.0,0.0,96.6,0.0,No,Yes,Hips,No,Truck,Sunny,2021-06-19 08:14:01.128225,2021-09-21 08:14:01.128225,0.0,62.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Male
+240.0,Rear end - Clt pushed into next vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Truck,Rainy,2020-05-12 07:15:32.586517,2021-01-17 07:15:32.586517,16.0,27.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+240.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Car,Snowy,2020-08-04 02:57:26.609321,2021-07-13 02:57:26.609321,2.0,47.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Male
+720.0,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,230.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Legs,Yes,Car,Sunny,2021-11-26 02:22:35.311062,2022-09-28 02:22:35.311062,10.0,61.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
+520.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2021-11-19 09:09:36.835367,2022-10-01 09:09:36.835367,17.0,43.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Male
+3417.06,Rear end,D. 4 months,0.0,0.0,0.0,0.0,,2394.0,,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,78.06,475.0,No,,Arms,Yes,Truck,Rainy,2021-02-25 10:34:00.888177,2021-10-23 10:34:00.888177,9.0,52.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Male
+1665.0,Other,E. 5 months,0.0,0.0,0.0,1500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,162.0,70.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2022-12-10 18:35:56.111222,2023-02-07 18:35:56.111222,8.0,45.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Other
+260.0,Other side pulled out of side road,C. 3 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2021-05-25 12:26:04.152830,2021-06-09 12:26:04.152830,6.0,46.0,4.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Female
+2576.4,Rear end,F. 6 months,0.0,0.0,0.0,1805.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,74.46,574.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2021-12-02 05:34:26.093218,2022-09-13 05:34:26.093218,10.0,69.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,No,Male
+900.6600000000001,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,15.6625,,575.0,No,Yes,,Yes,Motorcycle,Rainy,,2024-06-27 15:14:52.258451,7.0,23.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,Yes,Other
+1095.7,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,404.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,643.7,No,Yes,Arms,No,Motorcycle,Rainy,2022-07-15 02:48:48.105621,2023-03-09 02:48:48.105621,1.0,20.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Other
+520.0,Rear end,F. 6 months,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,Yes,Multiple,Yes,Car,Snowy,2023-05-23 07:51:50.302060,2024-03-14 07:51:50.302060,4.0,46.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2021-08-08 20:51:36.619323,2022-05-22 20:51:36.619323,8.0,74.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+1235.0,Other side pulled from parked position into the path of clt's vehicle,F. 6 months,0.0,0.0,0.0,1805.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2021-06-05 14:47:30.330066,2021-08-17 14:47:30.330066,0.0,19.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Male
+1000.0,Rear end,B. 2 months,0.0,0.0,0.0,1256.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Sunny,2021-02-15 12:14:50.098019,2021-09-17 12:14:50.098019,16.0,72.0,3.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Rainy,2021-05-29 14:33:58.007601,2021-06-09 14:33:58.007601,9.0,39.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Female
+2180.0,Other side pulled out of side road,M. 13 months,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,2125.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Arms,No,Motorcycle,Rainy,2020-09-22 11:32:46.713342,2021-08-25 11:32:46.713342,7.0,63.0,4.0,,Whiplash and minor bruises.,Yes,No,Female
+595.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,90.0,No,Yes,Multiple,No,Motorcycle,Sunny,2020-08-09 23:08:43.544708,2021-03-22 23:08:43.544708,17.0,64.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+1045.0,Other side changed lanes on a roundabout colliding with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,235.0,No,Yes,Arms,No,Motorcycle,Rainy,2022-08-04 06:27:43.532706,2023-06-18 06:27:43.532706,9.0,67.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Female
+895.0,Other side reversed into clt's stationary vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Sunny,2022-02-24 08:16:53.962792,2022-09-15 08:16:53.962792,8.0,44.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Female
+,Other,G. 7 months,0.0,0.0,,1112.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,45.19,10.43,308.7,No,Yes,Hips,Yes,Truck,Snowy,2020-06-03 18:58:58.787757,2021-01-20 18:58:58.787757,3.0,,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+895.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2021-01-31 21:46:37.759551,2021-03-23 21:46:37.759551,1.0,39.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+1045.0,Other side changed lanes on a roundabout colliding with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,235.0,No,Yes,Hips,No,Motorcycle,Rainy,2023-01-20 01:53:46.965393,2023-03-18 01:53:46.965393,18.0,27.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,No,Male
+789.0,Rear end,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,,0.0,,No,,Multiple,Yes,Truck,Rainy,2021-08-15 00:03:27.401480,2021-12-25 00:03:27.401480,,69.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2022-01-17 16:04:07.729545,2022-10-24 16:04:07.729545,16.0,66.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Other
+1161.0,Other side turned across Clt's path,G. 7 months,,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,,0.0,96.0,0.0,0.0,170.0,No,Yes,Arms,No,Car,,2021-09-27 19:28:04.416883,2022-07-21 19:28:04.416883,2.0,66.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Other
+982.0,Rear end,H. 8 months,0.0,0.0,0.0,2305.0,0.0,87.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Rainy,2021-03-24 21:27:02.484496,2022-01-23 21:27:02.484496,18.0,36.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+3188.79,Other side pulled out of side road,J. 10 months,0.0,0.0,0.0,1600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,46.29,270.0,No,Yes,Arms,Yes,Truck,Sunny,2021-01-06 18:58:06.937387,2021-08-19 18:58:06.937387,18.0,41.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Male
+800.0,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,0.0,555.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,2022-03-23 05:08:47.865573,2022-09-13 05:08:47.865573,18.0,44.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2020-10-03 06:53:39.043808,2021-07-22 06:53:39.043808,18.0,53.0,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Female
+1860.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,1490.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Arms,No,Car,Rainy,2021-01-14 02:12:13.106621,2021-10-07 02:12:13.106621,14.0,60.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+1145.0,,I. 9 months,0.0,0.0,0.0,1187.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,,Legs,Yes,Car,Snowy,2022-01-03 08:36:29.237847,2022-09-07 08:36:29.237847,,34.0,4.0,Lost control on a snowy road.,,Yes,Yes,Female
+844.54,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,155.67,0.0,0.0,495.0,0.0,0.0,0.0,18.54,331.0,No,No,Legs,No,Car,Sunny,2021-10-01 00:34:16.731346,2021-12-18 00:34:16.731346,16.0,73.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Other
+1787.5,Other side reversed into Clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,525.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2020-09-14 07:16:59.003800,2021-01-27 07:16:59.003800,9.0,27.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Other
+895.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2021-06-23 10:21:54.982996,2021-11-10 10:21:54.982996,13.0,71.0,2.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Other
+270.0,Other,B. 2 months,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,30.0,No,No,Legs,Yes,Motorcycle,Sunny,2021-07-30 19:34:07.369473,2022-07-07 19:34:07.369473,18.0,34.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Male
+,Other,F. 6 months,0.0,0.0,0.0,2090.0,0.0,0.0,,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,No,No,Multiple,No,Truck,Snowy,2023-05-31 12:07:38.011602,2024-02-08 12:07:38.011602,17.0,61.0,4.0,,Whiplash and minor bruises.,No,No,Other
+1120.0,Other side overtook and hit Clt when pulling in,D. 4 months,0.0,0.0,600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,,Yes,Hips,No,Motorcycle,,2023-08-27 02:56:52.042408,2024-02-19 02:56:52.042408,10.0,27.0,3.0,Side collision at an intersection.,,No,No,Female
+1390.0,Rear end - 3 car - Clt at front,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,250.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Rainy,2022-05-15 15:52:01.824364,2022-07-14 15:52:01.824364,10.0,27.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Female
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,No,Motorcycle,Sunny,2022-06-13 13:47:52.654530,2023-05-31 13:47:52.654530,11.0,55.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+820.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,300.0,No,Yes,Multiple,No,Truck,Snowy,2022-07-02 13:24:32.694538,2023-03-13 13:24:32.694538,7.0,34.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Other
+753.5,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,520.0,0.0,0.0,0.0,,284.0,,Yes,Multiple,Yes,Motorcycle,Snowy,2020-05-25 03:40:21.844368,,15.0,,1.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,Yes,Male
+448.0,Rear end,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,260.0,,0.0,0.0,0.0,208.0,No,Yes,Hips,Yes,Car,Snowy,2021-10-09 04:50:04.440888,,7.0,43.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Female
+958.7,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,34.35,0.0,494.5,No,Yes,Legs,Yes,Motorcycle,Sunny,2020-10-15 13:17:20.608121,2021-04-04 13:17:20.608121,13.0,68.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Other
+1390.0,Rear end,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,1.5,0.0,70.0,No,Yes,Arms,No,Car,Sunny,,2022-03-30 16:31:12.374474,17.0,51.0,2.0,,Fractured arm and leg.,Yes,Yes,Male
+1875.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,0.0,0.0,0.0,1208.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Multiple,Yes,Truck,Rainy,2021-12-23 20:16:10.754150,2022-11-25 20:16:10.754150,3.0,21.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Other
+1895.0,Other side pulled on to roundabout,H. 8 months,0.0,0.0,0.0,1261.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,0.0,Yes,Yes,Legs,Yes,Truck,Snowy,2023-08-11 08:26:24.316863,2024-07-18 08:26:24.316863,16.0,67.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,Yes,No,Female
+895.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2021-02-04 02:52:50.074014,2021-11-21 02:52:50.074014,12.0,44.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+2555.4,Other side changed lanes and collided with clt's vehicle,J. 10 months,0.0,0.0,,1112.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Hips,No,Motorcycle,Snowy,2022-11-13 21:44:02.208441,2023-02-05 21:44:02.208441,4.0,78.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Other
+1740.0,,J. 10 months,0.0,0.0,350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2021-12-31 17:31:24.616923,2022-04-27 17:31:24.616923,2.0,38.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+840.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Rainy,2023-11-05 12:12:49.113822,2024-05-23 12:12:49.113822,8.0,53.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Male
+495.0,Rear end,D. 4 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,,No,No,Multiple,No,Truck,Snowy,2020-02-21 23:40:24.724944,,19.0,55.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+845.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,350.0,No,No,Multiple,No,Car,Sunny,2021-07-17 09:08:10.418083,2022-02-21 09:08:10.418083,17.0,63.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+2823.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,2648.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Snowy,2022-01-14 03:57:21.568313,2022-08-28 03:57:21.568313,19.0,48.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Female
+517.92,Other,C. 3 months,0.0,0.0,0.0,634.8,0.0,0.0,0.0,0.0,6.0,0.0,0.0,260.0,0.0,0.0,0.0,,0.0,No,Yes,Arms,No,Motorcycle,Sunny,2023-11-12 19:26:55.283056,2024-08-09 19:26:55.283056,18.0,24.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Female
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,Yes,Motorcycle,Sunny,2020-02-02 10:02:36.991398,2020-05-14 10:02:36.991398,18.0,61.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Female
+1390.0,Other side reversed into Clt's vehicle,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2022-07-29 03:15:52.750550,2022-12-21 03:15:52.750550,15.0,51.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Male
+1145.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,895.0,0.0,,0.0,0.0,275.0,No,Yes,Multiple,No,Car,Snowy,,2020-12-21 12:42:46.593318,0.0,35.0,1.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Female
+1281.0,Other,I. 9 months,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,46.08,0.0,0.0,895.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Hips,Yes,Motorcycle,Sunny,2021-02-13 04:10:19.323864,2021-11-01 04:10:19.323864,4.0,41.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,Yes,Male
+2440.0,Rear end,E. 5 months,0.0,0.0,0.0,1370.0,0.0,0.0,,0.0,0.0,0.0,0.0,520.0,,0.0,0.0,0.0,550.0,,Yes,Arms,Yes,Motorcycle,Rainy,2022-05-03 23:29:27.953590,2023-02-06 23:29:27.953590,14.0,30.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Female
+1768.0,Rear end,G. 7 months,0.0,0.0,0.0,1320.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,168.0,0.0,0.0,0.0,0.0,Yes,No,Hips,No,Car,Snowy,2021-02-07 07:59:02.388477,2022-01-12 07:59:02.388477,11.0,30.0,3.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Female
+860.0,Other side pulled out of side road,B. 2 months,0.0,0.0,0.0,1651.0,0.0,0.0,0.0,0.0,79.5,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Rainy,2022-07-02 06:23:58.847769,2022-07-16 06:23:58.847769,0.0,42.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+520.0,Rear end,D. 4 months,0.0,0.0,,1600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,,0.0,,0.0,,,Arms,Yes,Motorcycle,Rainy,2023-12-04 10:08:39.943988,2024-08-26 10:08:39.943988,13.0,22.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Other
+895.0,,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,,0.0,0.0,No,Yes,,Yes,Car,,2022-05-29 09:18:32.622524,2023-03-12 09:18:32.622524,17.0,56.0,3.0,Lost control on a snowy road.,,No,Yes,Other
+1417.04,Other side pulled out of side road,D. 4 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,413.0,0.0,0.0,520.0,0.0,0.0,0.0,14.04,574.0,No,Yes,Arms,No,Car,Sunny,2020-12-18 19:21:26.897379,,17.0,46.0,2.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+895.0,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Rainy,2022-07-01 16:22:51.154230,2023-04-20 16:22:51.154230,5.0,61.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+1095.0,Other side drove on wrong side of the road,G. 7 months,0.0,0.0,0.0,556.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Arms,Yes,Car,Snowy,2020-01-11 12:20:18.483696,2020-02-11 12:20:18.483696,0.0,74.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,,Sunny,2021-06-17 21:11:11.894378,2021-12-05 21:11:11.894378,16.0,63.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,No,Male
+895.0,,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2022-06-12 16:46:11.114222,2023-06-02 16:46:11.114222,17.0,50.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+3584.26,Other,H. 8 months,,0.0,0.0,2510.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,,4.26,,No,Yes,Arms,No,,Snowy,2022-09-02 18:24:42.056411,2023-03-26 18:24:42.056411,14.0,41.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Female
+1216.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,,0.0,455.0,Yes,Yes,Legs,Yes,Car,Snowy,2023-02-25 00:03:10.118023,2023-12-13 00:03:10.118023,,27.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Other
+705.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,294.0,No,No,Arms,Yes,Truck,Sunny,2020-08-24 06:36:22.036407,2020-12-13 06:36:22.036407,12.0,75.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+1285.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,518.0,No,Yes,Legs,No,Truck,Rainy,2022-06-16 04:52:57.275455,2022-08-23 04:52:57.275455,19.0,42.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Male
+994.8,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.8,150.0,No,No,Hips,Yes,Motorcycle,Rainy,2023-04-17 16:43:00.996199,2023-10-17 16:43:00.996199,1.0,58.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,Yes,Female
+903.55,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,1092.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,10.8,354.35,No,Yes,Hips,Yes,Truck,Snowy,2021-03-21 16:20:50.170034,2021-10-03 16:20:50.170034,3.0,27.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,No,Male
+2771.0,Other side turned across Clt's path,G. 7 months,0.0,,0.0,2170.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,126.0,No,Yes,Legs,Yes,Car,Snowy,2022-10-24 18:05:06.781356,2023-02-27 18:05:06.781356,2.0,56.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Other
+1117.5,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,,No,Yes,Hips,Yes,Truck,Sunny,2023-11-29 10:59:04.548909,2024-05-22 10:59:04.548909,,33.0,3.0,Hit a deer on the highway.,,Yes,No,Other
+495.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Snowy,2020-05-24 13:39:14.150830,2021-02-10 13:39:14.150830,7.0,77.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+1795.0,Other side drove on wrong side of the road,G. 7 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Snowy,2023-12-29 19:57:44.612922,2024-10-10 19:57:44.612922,11.0,45.0,4.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Female
+1215.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,375.0,No,No,Hips,Yes,Truck,Snowy,2020-05-03 19:59:11.030206,2020-10-05 19:59:11.030206,11.0,29.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,Yes,Male
+920.0,Rear end,E. 5 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2022-03-13 06:49:37.075415,2022-05-21 06:49:37.075415,9.0,61.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+520.0,Rear end,F. 6 months,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,,0.0,520.0,,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,,2021-08-26 02:24:53.578715,2021-12-12 02:24:53.578715,0.0,75.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,No,No,Female
+290.0,Rear end,A. 1 month,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Arms,No,Truck,Rainy,2021-08-01 20:38:04.296859,2021-09-05 20:38:04.296859,4.0,49.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,Yes,Other
+767.0,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,350.0,No,Yes,Arms,No,Car,Sunny,2021-03-04 17:48:07.057411,2022-02-26 17:48:07.057411,19.0,68.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+1225.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,406.0,No,Yes,Hips,No,Car,Sunny,2023-01-14 19:43:37.723544,2023-02-27 19:43:37.723544,10.0,46.0,4.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Other
+1742.0,Rear end,L. 12 months,0.0,0.0,0.0,250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,182.0,No,Yes,Multiple,Yes,Motorcycle,Rainy,2020-12-26 02:35:33.066613,2021-05-18 02:35:33.066613,8.0,62.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Female
+240.0,Other side pulled on to roundabout,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,,Rainy,2021-06-08 19:53:42.644528,2022-01-05 19:53:42.644528,13.0,70.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,No,Female
+1020.0,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,125.0,No,Yes,Multiple,No,Motorcycle,Rainy,2020-06-13 17:18:09.577915,2021-03-25 17:18:09.577915,2.0,78.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Other
+1500.0,Rear end,G. 7 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Rainy,2022-05-31 17:23:03.396679,2022-06-06 17:23:03.396679,4.0,67.0,1.0,Side collision at an intersection.,Minor cuts and scrapes.,No,Yes,Female
+1470.0,Other side pulled out of side road,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,575.0,No,Yes,Legs,No,Car,Snowy,2021-01-15 20:15:36.187237,2021-08-21 20:15:36.187237,8.0,44.0,2.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Other
+1020.0,Other side pulled from parked position into the path of clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,290.0,No,No,Legs,Yes,Truck,Rainy,2020-02-08 13:14:27.773554,2020-03-06 13:14:27.773554,17.0,43.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,Yes,Female
+720.0,Other side turned across Clt's path,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,460.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Rainy,2020-05-10 20:12:43.352670,2020-12-23 20:12:43.352670,5.0,20.0,4.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+1789.35,Rear end,C. 3 months,0.0,0.0,0.0,1651.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,10.65,18.7,No,Yes,Arms,No,Car,Rainy,2021-06-18 11:12:19.587917,2022-03-29 11:12:19.587917,6.0,43.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Male
+1105.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,,,0.0,0.0,210.0,No,Yes,Arms,Yes,Truck,Snowy,2021-09-22 06:17:21.328265,,,56.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+1189.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Hips,Yes,Car,Snowy,2022-11-25 00:05:28.385677,2023-10-01 00:05:28.385677,7.0,18.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+520.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2020-09-04 22:58:55.907181,2021-08-06 22:58:55.907181,9.0,52.0,3.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+895.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,400.0,No,No,Legs,Yes,Truck,Sunny,2023-03-03 03:15:00.900180,2023-06-16 03:15:00.900180,4.0,70.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Male
+565.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,70.0,No,No,Legs,No,Car,Snowy,2021-03-08 05:54:53.218643,2021-03-26 05:54:53.218643,10.0,44.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,Yes,Female
+1032.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,192.0,No,No,Multiple,Yes,Car,Rainy,2020-09-19 20:27:42.092418,2021-04-12 20:27:42.092418,12.0,63.0,1.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,Yes,Male
+1130.0,Rear end,D. 4 months,0.0,0.0,0.0,2648.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,3.0,238.0,No,Yes,Multiple,Yes,Motorcycle,Snowy,2023-11-18 15:38:12.218443,2023-12-31 15:38:12.218443,19.0,21.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,Yes,Yes,Other
+520.0,Rear end - 3 car - Clt at front,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Car,Snowy,2021-03-25 11:28:10.178035,2021-06-22 11:28:10.178035,1.0,36.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Male
+1105.0,Other side turned across Clt's path,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,371.0,No,Yes,Multiple,Yes,Truck,Rainy,2021-07-08 14:51:15.015003,2021-09-20 14:51:15.015003,13.0,39.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+1911.99,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,299.63,0.0,,0.0,,0.0,895.0,0.0,,,15.36,853.0,No,Yes,Legs,No,Motorcycle,Snowy,2022-05-09 19:40:44.888977,2022-10-13 19:40:44.888977,8.0,77.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Other
+1002.97,Rear end,I. 9 months,0.0,0.0,0.0,0.0,0.0,107.97,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,,Legs,Yes,Truck,Sunny,2023-12-18 17:36:18.435687,2024-09-09 17:36:18.435687,9.0,23.0,3.0,Side collision at an intersection.,,No,Yes,Male
+258.7,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,18.7,No,No,Legs,No,Motorcycle,Snowy,2022-08-05 10:29:58.919783,2022-12-17 10:29:58.919783,9.0,69.0,1.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,Yes,Yes,Other
+1595.0,Rear end - Clt pushed into next vehicle,I. 9 months,0.0,0.0,0.0,2130.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2020-05-30 02:49:57.239447,2020-08-27 02:49:57.239447,9.0,26.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Other
+1301.0,Rear end,G. 7 months,0.0,0.0,0.0,1082.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,6.0,0.0,0.0,No,Yes,Legs,Yes,Car,Sunny,2021-04-09 15:57:30.210042,2021-12-01 15:57:30.210042,18.0,28.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,No,Female
+,Rear end,F. 6 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Car,Sunny,2020-01-25 05:46:49.281856,2020-06-05 05:46:49.281856,10.0,39.0,2.0,Lost control on a snowy road.,,Yes,No,Other
+4776.969999999999,Rear end,F. 6 months,0.0,0.0,0.0,1085.0,0.0,3051.97,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,205.0,No,Yes,Legs,Yes,Truck,Rainy,2022-12-28 21:10:54.610922,2023-08-14 21:10:54.610922,10.0,64.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Male
+2544.0,Other side turned across Clt's path,N. 14 months,0.0,0.0,0.0,1188.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2040.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Motorcycle,Snowy,2023-11-30 01:00:12.242448,2024-01-03 01:00:12.242448,2.0,26.0,3.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,Yes,Other
+1265.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,745.0,No,Yes,Legs,No,Truck,Sunny,2021-09-13 04:59:52.078415,2021-12-05 04:59:52.078415,18.0,46.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Female
+1465.0,Rear end,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,625.0,No,No,Arms,Yes,Motorcycle,Sunny,2021-04-12 14:03:08.677735,2021-08-22 14:03:08.677735,0.0,60.0,1.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,52.0,0.0,0.0,0.0,0.0,Yes,Yes,Arms,No,Car,Snowy,2023-09-10 10:24:30.534106,2024-08-29 10:24:30.534106,11.0,75.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Other
+1381.8,Other,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,895.0,0.0,0.0,0.0,37.8,442.0,No,Yes,Arms,No,Truck,Rainy,2020-12-22 21:29:20.752150,2021-07-14 21:29:20.752150,14.0,27.0,4.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,Yes,Other
+2548.27,Rear end,E. 5 months,0.0,0.0,0.0,1810.0,0.0,0.0,0.0,0.0,123.27,0.0,0.0,520.0,0.0,0.0,0.0,,295.0,No,Yes,Arms,No,,Rainy,2023-06-18 07:42:02.664532,2024-03-31 07:42:02.664532,13.0,51.0,3.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,No,No,Other
+2367.8,Rear end,H. 8 months,0.0,0.0,0.0,1113.0,0.0,0.0,0.0,0.0,264.0,0.0,0.0,895.0,0.0,70.0,0.0,25.8,0.0,No,Yes,Hips,Yes,Truck,Sunny,2021-06-21 23:19:05.749149,2022-05-23 23:19:05.749149,2.0,48.0,3.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Female
+566.11,,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.11,0.0,0.0,520.0,0.0,0.0,,0.0,0.0,No,Yes,Hips,No,,Rainy,,2022-09-12 02:32:22.948589,19.0,39.0,1.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,Yes,Other
+1524.69,Rear end,F. 6 months,0.0,0.0,0.0,1740.0,0.0,0.0,0.0,0.0,76.99,0.0,0.0,520.0,0.0,0.0,0.0,213.9,182.01,No,Yes,Multiple,Yes,Truck,Snowy,2021-04-09 01:56:22.516503,2021-12-23 01:56:22.516503,12.0,63.0,3.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,No,Other
+1781.46,Rear end,F. 6 months,0.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,31.46,230.0,No,Yes,Legs,No,Truck,Rainy,2022-04-25 19:13:40.244048,2023-02-11 19:13:40.244048,17.0,21.0,1.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+1500.0,Rear end,G. 7 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2023-08-03 18:11:44.300860,2023-12-06 18:11:44.300860,15.0,19.0,3.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Male
+4415.0,Rear end,,0.0,0.0,0.0,3000.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.8,575.0,No,No,Hips,No,Car,Sunny,,2020-06-02 08:04:30.774154,5.0,22.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Other
+1375.0,Other side pulled on to roundabout,D. 4 months,0.0,0.0,0.0,455.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,400.0,No,Yes,Legs,No,Motorcycle,Snowy,2023-10-07 00:15:50.590118,2024-09-30 00:15:50.590118,9.0,63.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Female
+1070.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Legs,No,Motorcycle,Sunny,2020-07-27 12:42:46.593318,2021-03-31 12:42:46.593318,16.0,32.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Other
+1819.85,Rear end,F. 6 months,0.0,0.0,0.0,1112.0,0.0,0.0,0.0,0.0,659.75,0.0,0.0,520.0,0.0,0.0,0.0,20.1,0.0,No,Yes,Hips,Yes,Car,Snowy,2021-07-16 19:07:02.724544,2022-01-07 19:07:02.724544,16.0,36.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Female
+,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.11,0.0,,520.0,0.0,,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Snowy,,2021-01-23 20:01:29.297859,7.0,55.0,1.0,Rear-ended at a stoplight.,,No,No,Male
+1216.0,Rear end,F. 6 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,525.0,No,Yes,Multiple,No,Motorcycle,Rainy,2023-12-10 13:20:30.726145,2024-10-07 13:20:30.726145,3.0,76.0,3.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Female
+840.0,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Car,Snowy,2020-03-18 09:29:29.393878,2020-06-06 09:29:29.393878,14.0,32.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+1000.0,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,0.0,0.0,179.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Truck,Sunny,2022-07-30 07:18:08.137627,2022-11-14 07:18:08.137627,0.0,63.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,Yes,Female
+901.4,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,32.88,0.0,510.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2020-10-05 14:58:09.817963,2021-08-01 14:58:09.817963,6.0,25.0,1.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Male
+1775.0,Rear end,F. 6 months,0.0,0.0,0.0,1557.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,205.0,No,Yes,Arms,No,Motorcycle,Sunny,2021-01-28 23:40:59.291858,2021-11-29 23:40:59.291858,9.0,37.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Other
+895.0,Other side pulled on to roundabout,I. 9 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Motorcycle,Sunny,2021-04-04 16:47:54.814962,2022-03-14 16:47:54.814962,6.0,29.0,4.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,No,No,Male
+1470.0,Other side turned across Clt's path,I. 9 months,0.0,0.0,0.0,1112.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,105.0,No,Yes,Arms,No,Truck,Snowy,2021-10-11 05:54:01.368273,2021-12-08 05:54:01.368273,0.0,21.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,No,No,Other
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Rainy,2023-01-23 21:01:06.973394,2023-04-24 21:01:06.973394,16.0,70.0,2.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,Yes,Male
+4140.0,Other side pulled on to roundabout,H. 8 months,0.0,0.0,0.0,3220.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,600.0,No,No,Multiple,No,Truck,Snowy,2022-08-08 15:36:11.234246,2022-12-21 15:36:11.234246,11.0,55.0,1.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,No,Other
+895.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1610.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2020-11-04 23:56:49.881976,2021-10-20 23:56:49.881976,16.0,60.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Male
+1114.6,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Multiple,Yes,Car,Rainy,2021-07-25 13:23:58.127625,2022-01-10 13:23:58.127625,14.0,72.0,1.0,Side collision at an intersection.,Fractured arm and leg.,No,Yes,Male
+1370.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,1182.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,Yes,Motorcycle,Sunny,2023-12-14 22:28:58.427685,2024-11-12 22:28:58.427685,15.0,71.0,2.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+258.7,Rear end,C. 3 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,18.7,No,No,Arms,No,Car,Snowy,2022-07-08 02:35:15.783156,2022-11-07 02:35:15.783156,13.0,56.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Female
+840.0,Rear end - Clt pushed into next vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Car,Rainy,2022-01-05 16:41:00.012002,2022-08-29 16:41:00.012002,2.0,74.0,4.0,Side collision at an intersection.,,No,Yes,Other
+2795.0,Other side pulled out of side road,G. 7 months,0.0,0.0,0.0,2160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Rainy,2022-12-02 21:20:42.248449,2023-02-16 21:20:42.248449,18.0,53.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,Yes,Other
+740.0,Other side turned across Clt's path,E. 5 months,0.0,0.0,0.0,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,182.0,No,Yes,Hips,No,Truck,Sunny,2022-01-20 14:09:46.197239,2022-11-25 14:09:46.197239,11.0,75.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Male
+6976.96,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6070.0,0.0,0.0,495.0,0.0,0.0,36.96,0.0,375.0,No,No,Arms,No,Car,Rainy,2022-05-04 20:31:09.493898,2022-05-27 20:31:09.493898,18.0,32.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,Yes,No,Female
+,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,188.0,,Yes,Multiple,Yes,Motorcycle,Sunny,2023-02-09 05:32:42.392478,2024-01-08 05:32:42.392478,17.0,18.0,,Rear-ended at a stoplight.,,No,No,Other
+1795.0,Other side drove on wrong side of the road,G. 7 months,0.0,0.0,0.0,1102.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,Yes,Truck,Snowy,2020-09-16 01:20:22.084416,2020-11-28 01:20:22.084416,13.0,48.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Female
+639.99,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,397.6,0.0,0.0,119.99,0.0,0.0,520.0,0.0,,0.0,,76.0,No,Yes,Legs,No,Car,Rainy,2020-08-05 06:59:41.996399,2020-11-01 06:59:41.996399,19.0,26.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Other
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,Yes,Truck,Snowy,2022-10-23 07:02:17.547509,2023-02-03 07:02:17.547509,8.0,40.0,2.0,Swerved to avoid another vehicle.,Concussion and bruised ribs.,Yes,No,Female
+1025.0,Other side changed lanes and collided with clt's vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,130.0,No,Yes,Arms,No,Truck,Rainy,2022-05-05 17:32:51.034206,2022-08-07 17:32:51.034206,2.0,69.0,2.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Other
+1195.0,Rear end,G. 7 months,0.0,0.0,0.0,1444.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Multiple,No,Truck,Rainy,2022-02-21 10:11:15.495099,2023-01-03 10:11:15.495099,11.0,43.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+945.0,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,50.0,No,Yes,Hips,No,Motorcycle,Snowy,2020-02-21 02:38:43.184636,2020-11-13 02:38:43.184636,19.0,57.0,2.0,Rear-ended at a stoplight.,Whiplash and minor bruises.,No,No,Male
+1850.0,Rear end,G. 7 months,0.0,0.0,0.0,680.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Multiple,Yes,Car,Rainy,2020-06-14 00:18:43.424684,2021-02-22 00:18:43.424684,16.0,61.0,2.0,Hit a deer on the highway.,Sprained ankle and wrist.,Yes,No,Other
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,Yes,Truck,Snowy,2022-07-28 13:14:45.057011,2023-07-21 13:14:45.057011,4.0,56.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,Yes,No,Female
+528.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,288.0,No,No,Legs,No,Truck,Snowy,2023-06-26 11:57:50.374074,2023-08-23 11:57:50.374074,7.0,77.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Male
+2470.0,Other side turned across Clt's path,I. 9 months,0.0,0.0,0.0,2760.0,0.0,0.0,630.0,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,,Truck,Sunny,2023-09-13 01:29:35.155031,2023-09-22 01:29:35.155031,18.0,35.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Other
+1500.0,Other,G. 7 months,0.0,0.0,0.0,1187.0,0.0,0.0,,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,240.0,No,Yes,Hips,Yes,Car,Snowy,2021-02-11 03:06:22.396479,2021-02-24 03:06:22.396479,3.0,50.0,3.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+660.0,Rear end,F. 6 months,0.0,0.0,0.0,1820.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,,2021-05-02 07:28:13.058611,14.0,58.0,4.0,Hit a deer on the highway.,,Yes,No,Other
+4415.0,Rear end,H. 8 months,0.0,0.0,0.0,3000.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,4.8,575.0,No,No,Legs,Yes,Truck,Snowy,2020-10-03 13:54:12.890578,2021-05-13 13:54:12.890578,18.0,56.0,3.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Other
+1105.0,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,3024.0,0.0,0.0,0.0,0.0,0.0,310.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,290.0,No,Yes,Arms,Yes,Motorcycle,Rainy,2020-06-19 13:29:26.513302,2021-05-14 13:29:26.513302,14.0,31.0,1.0,Swerved to avoid another vehicle.,Fractured arm and leg.,No,No,Male
+1511.0,Other side turned across Clt's path,J. 10 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.0,0.0,0.0,1390.0,0.0,0.0,0.0,49.2,0.0,No,Yes,Legs,No,Car,Snowy,2022-04-15 20:54:29.453890,2022-09-15 20:54:29.453890,13.0,75.0,2.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,Yes,Other
+844.8,Rear end,G. 7 months,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,895.0,,,0.0,0.0,406.0,No,Yes,Multiple,No,Motorcycle,Rainy,2021-04-18 03:13:51.766353,2021-06-28 03:13:51.766353,15.0,18.0,3.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Female
+1265.0,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,370.0,No,Yes,Multiple,Yes,Car,Sunny,2022-09-06 20:32:35.911182,2023-08-17 20:32:35.911182,9.0,30.0,4.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Car,Rainy,2021-11-17 01:05:06.061212,2021-12-07 01:05:06.061212,13.0,69.0,4.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Other
+888.1,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,368.1,No,Yes,Legs,Yes,Car,Snowy,2022-07-20 23:00:05.041008,2022-10-09 23:00:05.041008,19.0,32.0,3.0,Hit a deer on the highway.,Minor cuts and scrapes.,No,Yes,Male
+260.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Rainy,2022-07-25 15:09:06.589317,2023-03-10 15:09:06.589317,10.0,54.0,2.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,No,Male
+1084.16,Rear end - 3 car - Clt at front,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,44.16,525.0,No,Yes,Multiple,No,Motorcycle,Sunny,2022-01-22 08:13:09.277855,2023-01-03 08:13:09.277855,1.0,22.0,2.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Female
+840.0,Rear end,A. 1 month,0.0,0.0,0.0,1112.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Hips,No,Motorcycle,Rainy,2020-06-04 01:59:32.634526,2020-06-23 01:59:32.634526,18.0,31.0,4.0,Lost control on a snowy road.,Whiplash and minor bruises.,Yes,No,Male
+2195.44,Rear end - Clt pushed into next vehicle,J. 10 months,0.0,0.0,360.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,43.14,27.3,375.0,No,Yes,Arms,No,Motorcycle,Rainy,2020-12-25 12:34:25.373074,2021-06-08 12:34:25.373074,2.0,31.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Male
+990.0,Rear end,E. 5 months,0.0,0.0,0.0,1444.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,290.0,No,No,Arms,Yes,Truck,Snowy,2021-08-05 01:44:16.611322,2021-11-20 01:44:16.611322,3.0,63.0,1.0,Side collision at an intersection.,Concussion and bruised ribs.,Yes,Yes,Female
+260.0,Rear end,B. 2 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2021-05-10 14:57:17.967593,2022-04-23 14:57:17.967593,10.0,22.0,2.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,No,Other
+1216.0,Rear end - 3 car - Clt at front,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,455.0,Yes,Yes,Arms,No,Truck,Rainy,2022-09-11 05:41:03.612722,2023-04-13 05:41:03.612722,12.0,28.0,3.0,Lost control on a snowy road.,Whiplash and minor bruises.,No,No,Other
+1284.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,180.0,0.0,0.0,0.0,0.0,130.0,0.0,0.0,520.0,0.0,0.0,0.0,54.0,450.0,No,Yes,Legs,No,Car,Sunny,2021-03-27 05:31:33.258651,2021-11-21 05:31:33.258651,17.0,49.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Other
+895.0,Other side turned across Clt's path,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2022-07-13 08:45:25.025005,2022-12-07 08:45:25.025005,17.0,68.0,4.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Female
+1259.0,Other side turned across Clt's path,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,185.0,Yes,Yes,Arms,Yes,Car,Sunny,2021-02-23 16:30:37.807561,2021-08-23 16:30:37.807561,18.0,22.0,4.0,Lost control on a snowy road.,Sprained ankle and wrist.,Yes,No,Female
+570.0,Other side changed lanes and collided with clt's vehicle,E. 5 months,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,No,No,Hips,No,Motorcycle,Sunny,2020-04-18 01:28:43.304660,2021-03-20 01:28:43.304660,11.0,53.0,4.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,Yes,Yes,Female
+1850.23,Rear end - Clt pushed into next vehicle,E. 5 months,0.0,0.0,350.0,1725.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,600.23,0.0,0.0,190.0,No,Yes,Legs,No,Car,Sunny,2023-08-08 10:20:45.849169,2024-02-22 10:20:45.849169,0.0,32.0,2.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Male
+1459.5,Other side pulled out of side road,L. 12 months,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,1390.0,278.0,0.0,0.0,0.0,0.0,Yes,Yes,,No,Car,Rainy,2020-06-28 21:47:29.609921,2021-04-11 21:47:29.609921,5.0,70.0,,Hit a deer on the highway.,Concussion and bruised ribs.,Yes,No,Female
+975.77,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,500.0,0.0,0.0,0.0,0.0,0.0,840.0,0.0,0.0,0.0,0.0,50.0,No,No,Multiple,No,Truck,Sunny,2023-05-01 17:10:05.641128,2023-06-23 17:10:05.641128,2.0,24.0,2.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,No,Male
+1390.0,Rear end,K. 11 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Motorcycle,Rainy,2023-03-18 07:44:20.932186,2023-11-13 07:44:20.932186,16.0,22.0,1.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Other
+495.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,,No,Legs,No,Motorcycle,Sunny,2023-05-05 12:17:25.649129,2024-02-19 12:17:25.649129,2.0,47.0,1.0,Side collision at an intersection.,Sprained ankle and wrist.,No,No,Male
+950.0,Other side drove on wrong side of the road,D. 4 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,455.0,No,Yes,Hips,Yes,Truck,Sunny,2021-10-20 21:12:38.311662,2022-08-03 21:12:38.311662,0.0,32.0,3.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,Yes,Male
+240.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,,,Motorcycle,Rainy,2023-06-25 14:56:08.833766,2023-12-30 14:56:08.833766,2.0,47.0,4.0,Hit a deer on the highway.,Minor cuts and scrapes.,Yes,Yes,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Motorcycle,Snowy,2022-08-24 17:07:12.806561,2022-08-30 17:07:12.806561,3.0,31.0,3.0,Side collision at an intersection.,Concussion and bruised ribs.,No,Yes,Female
+1730.29,Rear end,E. 5 months,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,456.44,0.0,0.0,520.0,0.0,0.0,0.0,4.5,9.35,No,Yes,Multiple,No,Motorcycle,Snowy,2020-09-28 21:45:11.342268,,5.0,41.0,2.0,Lost control on a snowy road.,Fractured arm and leg.,No,Yes,Female
+895.0,Rear end - Clt pushed into next vehicle,G. 7 months,0.0,0.0,0.0,1610.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Truck,Rainy,2021-11-11 04:53:49.125825,2022-08-01 04:53:49.125825,6.0,41.0,3.0,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Other
+2061.91,Rear end,G. 7 months,0.0,0.0,0.0,523.25,0.0,580.91,0.0,0.0,0.0,0.0,0.0,895.0,179.0,0.0,0.0,0.0,433.0,Yes,Yes,Legs,No,Motorcycle,Rainy,2020-04-24 18:41:41.780356,2020-06-12 18:41:41.780356,7.0,52.0,3.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+992.2,Rear end,F. 6 months,0.0,0.0,0.0,490.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,7.2,0.0,No,No,Multiple,No,Car,Snowy,2021-12-20 22:10:32.286457,2022-12-07 22:10:32.286457,12.0,22.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,No,Male
+495.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,,0.0,No,No,Multiple,Yes,,Snowy,2022-08-15 01:48:35.863172,2023-03-03 01:48:35.863172,3.0,29.0,2.0,Side collision at an intersection.,Whiplash and minor bruises.,Yes,Yes,Male
+2739.38,Rear end,G. 7 months,0.0,0.0,150.0,0.0,0.0,0.0,480.0,0.0,281.88,0.0,0.0,895.0,0.0,0.0,0.0,557.5,375.0,No,Yes,Legs,Yes,Motorcycle,Snowy,2021-07-17 09:08:10.418083,2021-09-15 09:08:10.418083,5.0,37.0,2.0,Rear-ended at a stoplight.,Sprained ankle and wrist.,Yes,Yes,Male
+1590.0,Rear end,K. 11 months,0.0,0.0,0.0,556.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Truck,Rainy,2020-07-01 12:52:34.230846,2020-08-03 12:52:34.230846,10.0,63.0,4.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Female
+2685.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,0.0,1972.25,0.0,0.0,0.0,0.0,584.99,0.0,0.0,520.0,0.0,0.0,0.0,0.0,765.0,No,Yes,Hips,Yes,Truck,Sunny,2023-09-22 02:47:04.404880,2024-07-21 02:47:04.404880,0.0,79.0,2.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,Yes,Male
+1170.0,Other side pulled out of side road,F. 6 months,0.0,0.0,650.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,70.2,0.0,No,Yes,Multiple,Yes,Truck,Rainy,2022-04-20 20:04:04.848969,2022-12-20 20:04:04.848969,7.0,22.0,1.0,Hit a deer on the highway.,Fractured arm and leg.,Yes,Yes,Female
+260.0,Other side reversed into clt's stationary vehicle,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Motorcycle,Snowy,2022-07-13 15:45:58.871774,2023-01-01 15:45:58.871774,1.0,73.0,4.0,Side collision at an intersection.,Fractured arm and leg.,No,No,Other
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,Legs,No,Motorcycle,Sunny,2022-09-26 10:10:23.644728,2023-04-21 10:10:23.644728,7.0,53.0,4.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,Yes,Other
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,520.0,0.0,0.0,0.0,8.4,,No,,Arms,No,Car,Rainy,2021-09-07 22:49:42.836567,2022-06-17 22:49:42.836567,19.0,38.0,4.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Female
+1750.0,Other side pulled out of side road,K. 11 months,0.0,0.0,0.0,903.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,22.5,0.0,350.0,No,Yes,Arms,No,Truck,Snowy,2020-12-06 05:57:11.486297,2020-12-28 05:57:11.486297,8.0,65.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,Yes,Female
+852.0,Rear end - Clt pushed into next vehicle,F. 6 months,0.0,0.0,900.0,0.0,,0.0,10.0,28.0,0.0,,0.0,520.0,0.0,0.0,18.0,0.0,350.0,No,Yes,Hips,No,,Rainy,2022-03-23 05:08:47.865573,2022-05-09 05:08:47.865573,3.0,56.0,2.0,Lost control on a snowy road.,Minor cuts and scrapes.,No,No,Male
+1253.0,Rear end,H. 8 months,0.0,0.0,0.0,1038.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,91.62,518.0,No,Yes,Multiple,No,Car,Sunny,2021-07-06 06:46:44.240848,2022-06-20 06:46:44.240848,16.0,20.0,1.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,No,No,Male
+520.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,No,Truck,Snowy,2022-07-18 07:55:00.420084,2022-12-23 07:55:00.420084,6.0,46.0,1.0,Lost control on a snowy road.,Concussion and bruised ribs.,No,No,Male
+495.0,Rear end,E. 5 months,0.0,0.0,0.0,,,,20.0,0.0,0.0,0.0,0.0,520.0,104.0,0.0,0.0,0.0,0.0,Yes,Yes,Multiple,Yes,Motorcycle,Rainy,2021-04-23 16:24:34.854970,,9.0,71.0,1.0,Rear-ended at a stoplight.,Minor cuts and scrapes.,No,No,Male
+1115.0,Other side changed lanes on a roundabout colliding with clt's vehicle,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,220.0,No,Yes,Multiple,No,Motorcycle,Sunny,2020-08-16 02:20:34.326865,2021-01-06 02:20:34.326865,4.0,42.0,3.0,Rear-ended at a stoplight.,Fractured arm and leg.,Yes,No,Other
+1430.0,Other side turned across Clt's path,G. 7 months,,,0.0,959.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,,Multiple,Yes,Car,Sunny,,2023-11-18 08:06:49.041808,9.0,44.0,,Swerved to avoid another vehicle.,Whiplash and minor bruises.,No,Yes,Male
+1735.0,Rear end,H. 8 months,0.0,0.0,0.0,959.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,Yes,Car,Rainy,2021-08-23 11:19:48.957791,2021-09-19 11:19:48.957791,11.0,53.0,2.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,Yes,Male
+895.0,Other side reversed into clt's stationary vehicle,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Sunny,2021-11-09 10:50:26.045209,2021-12-06 10:50:26.045209,19.0,69.0,4.0,Side collision at an intersection.,Whiplash and minor bruises.,No,No,Female
+565.0,Rear end,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,0.0,0.0,0.0,70.0,No,No,Arms,No,Car,Snowy,2021-10-26 03:22:47.553510,2022-03-20 03:22:47.553510,5.0,39.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,No,No,Other
+520.0,Rear end,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Hips,No,Truck,Sunny,2021-10-14 03:59:39.835967,2021-12-28 03:59:39.835967,0.0,55.0,3.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,Yes,No,Female
+1613.2,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,798.0,No,Yes,Multiple,No,Car,Rainy,2022-02-09 10:48:07.777555,2022-08-15 10:48:07.777555,2.0,52.0,1.0,Lost control on a snowy road.,Fractured arm and leg.,No,No,Male
+997.81,Other side pulled out of side road,E. 5 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,0.0,520.0,0.0,0.0,0.0,77.21,421.35,No,Yes,Hips,No,Car,Snowy,2022-08-17 23:54:14.330866,2022-08-27 23:54:14.330866,6.0,79.0,4.0,Hit a deer on the highway.,Whiplash and minor bruises.,Yes,Yes,Other
+881.4,Rear end,C. 3 months,0.0,0.0,0.0,380.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,53.4,,No,No,Arms,,Motorcycle,Sunny,2021-12-25 07:18:59.987997,2022-04-25 07:18:59.987997,10.0,18.0,2.0,Side collision at an intersection.,Fractured arm and leg.,Yes,Yes,Male
+260.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Legs,No,Motorcycle,Sunny,2022-02-03 00:35:43.148629,2022-11-19 00:35:43.148629,11.0,20.0,4.0,Side collision at an intersection.,Sprained ankle and wrist.,No,Yes,Male
+992.2,,F. 6 months,0.0,0.0,0.0,490.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.0,0.0,,0.0,7.2,,No,No,,Yes,Motorcycle,Snowy,2020-04-13 16:20:15.603120,2020-09-25 16:20:15.603120,8.0,41.0,,Lost control on a snowy road.,Fractured arm and leg.,Yes,Yes,Other
+1114.6,Rear end,G. 7 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,294.0,No,Yes,Multiple,No,Truck,Snowy,2023-08-03 11:11:10.454090,2024-04-23 11:11:10.454090,0.0,25.0,3.0,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+920.0,Rear end,E. 5 months,0.0,0.0,0.0,523.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Truck,Sunny,2023-09-27 01:56:39.799960,2024-03-06 01:56:39.799960,3.0,65.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,No,Female
+705.0,Other side turned across Clt's path,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,238.0,No,Yes,Arms,Yes,Motorcycle,Snowy,2022-09-04 05:27:31.290258,2023-07-28 05:27:31.290258,1.0,71.0,4.0,Hit a deer on the highway.,Sprained ankle and wrist.,No,Yes,Male
+448.0,Rear end,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,208.0,No,Yes,Arms,No,Motorcycle,Rainy,2022-10-25 15:06:48.321664,2023-08-18 15:06:48.321664,1.0,56.0,,Side collision at an intersection.,Minor cuts and scrapes.,Yes,Yes,Female
+1714.0,Rear end,F. 6 months,0.0,0.0,0.0,740.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,630.0,No,Yes,Arms,No,Car,Sunny,2021-12-21 12:11:39.979996,2022-04-18 12:11:39.979996,16.0,35.0,3.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+1390.0,Other side pulled out of side road,A. 1 month,0.0,0.0,1000.0,523.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.0,0.0,0.0,0.0,0.0,0.0,No,No,Multiple,Yes,Car,Rainy,2020-02-17 14:31:57.023404,2020-12-24 14:31:57.023404,1.0,58.0,1.0,Rear-ended at a stoplight.,Fractured arm and leg.,No,No,Female
+1695.0,Other side changed lanes and collided with clt's vehicle,F. 6 months,0.0,0.0,0.0,900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,275.0,No,Yes,Legs,No,Truck,Sunny,2022-11-27 08:09:59.159831,2023-08-17 08:09:59.159831,3.0,20.0,4.0,Hit a deer on the highway.,Fractured arm and leg.,No,Yes,Other
+,Other side changed lanes and collided with clt's vehicle,I. 9 months,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,895.0,0.0,0.0,0.0,7.2,350.0,No,Yes,Arms,No,Truck,Rainy,2023-10-14 07:29:56.759351,2024-01-06 07:29:56.759351,10.0,35.0,1.0,,Minor cuts and scrapes.,No,No,Other
+495.0,Rear end,F. 6 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,495.0,0.0,0.0,0.0,0.0,0.0,No,No,,,Car,Rainy,2022-12-05 19:26:20.716143,2023-04-30 19:26:20.716143,18.0,33.0,4.0,Swerved to avoid another vehicle.,Fractured arm and leg.,Yes,No,Other
+3325.0,Other side pulled out of side road,F. 6 months,0.0,0.0,475.0,1950.0,0.0,0.0,260.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,254.2,0.0,565.0,No,Yes,Legs,No,Motorcycle,Snowy,2022-08-08 08:35:37.387477,2023-01-26 08:35:37.387477,12.0,49.0,4.0,Side collision at an intersection.,Concussion and bruised ribs.,No,No,Male
+725.0,Rear end,D. 4 months,0.0,0.0,0.0,524.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,180.0,No,Yes,Arms,No,Car,Sunny,2022-09-14 10:47:15.927185,2023-08-14 10:47:15.927185,17.0,70.0,2.0,Swerved to avoid another vehicle.,Sprained ankle and wrist.,Yes,No,Other
+275.0,Other side turned across Clt's path,A. 1 month,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.0,0.0,0.0,260.0,0.0,0.0,0.0,58.5,0.0,No,Yes,Legs,No,Truck,Snowy,2021-08-25 19:24:19.731946,2022-06-30 19:24:19.731946,18.0,18.0,3.0,Hit a deer on the highway.,Concussion and bruised ribs.,No,No,Other
+1074.35,Other side pulled out of side road,H. 8 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,895.0,0.0,0.0,0.0,0.0,247.35,No,,Hips,,Truck,Snowy,2023-05-30 15:05:56.471294,2023-06-13 15:05:56.471294,,70.0,4.0,Side collision at an intersection.,Fractured arm and leg.,Yes,No,Female
+2020.0,Other side pulled out of side road,F. 6 months,0.0,0.0,0.0,2020.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Arms,No,Car,Sunny,2023-03-09 13:27:25.529105,2023-08-05 13:27:25.529105,11.0,43.0,1.0,Swerved to avoid another vehicle.,Minor cuts and scrapes.,No,Yes,Male
+781.2,Rear end - 3 car - Clt at front,D. 4 months,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,520.0,0.0,0.0,16.2,0.0,350.0,No,Yes,Hips,No,Car,Rainy,2023-02-09 05:32:42.392478,2023-10-18 05:32:42.392478,10.0,69.0,1.0,Lost control on a snowy road.,Sprained ankle and wrist.,No,No,Female
+1390.0,Rear end,K. 11 months,0.0,0.0,0.0,2300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.0,0.0,0.0,0.0,0.0,0.0,No,Yes,Multiple,Yes,Car,Sunny,2020-04-09 00:11:14.054810,2020-06-05 00:11:14.054810,0.0,65.0,2.0,Rear-ended at a stoplight.,Concussion and bruised ribs.,Yes,No,Other
diff --git a/ActualProjectCode/DjangoProject/requirements.txt b/ActualProjectCode/DjangoProject/requirements.txt
index 02400a1d8af30e7a2db6300c1d7a5217861c806b..734c063ee9348a185bb8e0a7cdd7cba2ab6546c7 100644
Binary files a/ActualProjectCode/DjangoProject/requirements.txt and b/ActualProjectCode/DjangoProject/requirements.txt differ