import { message } from "antd"; import gql from "graphql-tag"; import _ from "lodash"; import client from "../graphql/GraphQLClient"; import { INSERT_NEW_JOB, QUERY_CLOSE_DATE_BY_CLM_NO, QUERY_JOB_BY_CLM_NO, UPDATE_JOB } from "../graphql/jobs.queries"; import { QUERY_GROUPS_BY_MAKE_TYPE } from "../graphql/veh_group.queries"; import ipcTypes from "../ipc.types"; import { clearEsResults } from "../redux/application/application.actions.js"; import { store } from "../redux/store"; import { WhichRulesetToApply } from "../util/constants.js"; import dayjs from "../util/day.js"; import CargoVanList from "./cargovans.json"; import PassengerVanList from "./passengervans.json"; import SuvList from "./suvs.json"; import TrucksList from "./trucks.json"; const { logger } = window; const { ipcRenderer } = window; export function CalculateVehicleAge(job) { //Per new rules in 2023, we need to determine which set of rules to apply. const parsedYr = parseInt(job.v_model_yr); const vehicleYr = dayjs().year() + 1 - 2000 >= parsedYr ? 2000 + parsedYr : 1900 + parsedYr; const closeDate = job.close_date ? dayjs(job.close_date) : dayjs(); const lossDate = job.loss_date ? dayjs.utc(job.loss_date) : dayjs(); let ret; if (closeDate.isSameOrAfter(dayjs("2023-04-01"))) { //Post April 2023 rules where the age is calculated based on loss date. ipcRenderer.send(ipcTypes.app.toMain.log.debug, "Using post 0423 ruleset to calculate vehicle age for job.", job); ret = Math.max(0, lossDate.year() - vehicleYr); } else { //Pre-April 2023 rules where the age was calculated based on model year, not loss date. ipcRenderer.send(ipcTypes.app.toMain.log.debug, "Using pre 0423 ruleset to calculate vehicle age for job.", job); ret = Math.max(0, dayjs(job.close_date || new Date()).year() - vehicleYr); } return ret; } export async function GetR4PDateWithClaim(clm_no) { const existingJobs = await client.query({ query: QUERY_CLOSE_DATE_BY_CLM_NO, variables: { clm_no: clm_no } }); return existingJobs.data.jobs[0] && existingJobs.data.jobs[0].close_date; } export async function UpsertEstimate(job) { const shopId = store.getState().user.bodyshop.id; //logger.info("Beginning Upserting job from Renderer."); ipcRenderer.send(ipcTypes.app.toMain.log.info, "Beginning Upserting job from Renderer."); const existingJobs = await client.query({ query: QUERY_JOB_BY_CLM_NO, variables: { clm_no: job.clm_no } }); job = { ...job, requires_reimport: false, v_mileage: (job.v_mileage !== "" && job.v_mileage) || null, v_type: DetermineVehicleType(job), v_age: CalculateVehicleAge({ ...job, close_date: existingJobs.data.jobs[0] && existingJobs.data.jobs[0].close_date }) }; job.group = await DetermineVehicleGroup({ ...job, close_date: existingJobs.data.jobs[0] && existingJobs.data.jobs[0].close_date }); if (existingJobs.data.jobs.length === 1) { let suppDelta = await GetSupplementDelta( existingJobs.data.jobs[0].id, existingJobs.data.jobs[0].joblines, job.joblines.data ); logger.info("Attemping to update job lines."); await client.mutate({ mutation: gql` ${suppDelta} ` }); delete job.joblines; if (!existingJobs.data.jobs[0].requires_reimport) { console.log("*** PRESERVING THE OLD GROUP"); delete job.group; //Added to preserve group already set in the system RPS-49. //This will now only preserve theg roup if it didn't require a re-import. If it did, reset the group. } const currentScrubbedjobId = store.getState().application.esResults.jobid; if (currentScrubbedjobId && currentScrubbedjobId === existingJobs.data.jobs[0].id) { store.dispatch(clearEsResults()); } logger.info("Attemping to update job."); await client.mutate({ mutation: UPDATE_JOB, variables: { jobId: existingJobs.data.jobs[0].id, job: job }, refetchQueries: ["QUERY_JOB_BY_PK"] }); logger.info("Job updated succesfully."); } else { logger.info("Attemping to insert job record."); await client.mutate({ mutation: INSERT_NEW_JOB, variables: { job: { ...job, bodyshopid: shopId } }, update(cache, { data }) { cache.modify({ fields: { jobs(existingJobs) { return [data.insert_jobs.returning[0], ...existingJobs]; } } }); } // refetchQueries: ["QUERY_ALL_JOBS_PAGINATED", "QUERY_JOB_BY_PK"], }); logger.info("Job inserted succesfully."); } message.success("Job uploaded successfully!"); } export async function LOCAL_DOESNOTUpsertEstimate(job) { job = { ...job, requires_reimport: false, v_mileage: (job.v_mileage !== "" && job.v_mileage) || null, v_type: DetermineVehicleType(job), v_age: CalculateVehicleAge({ ...job //close_date: existingJobs.data.jobs[0] && existingJobs.data.jobs[0].close_date }) }; job.group = await DetermineVehicleGroup({ ...job // close_date: existingJobs.data.jobs[0] && existingJobs.data.jobs[0].close_date }); return job; //message.success("Job uploaded successfully!"); } export const GetSupplementDelta = async (jobId, existingLinesO, newLines) => { const existingLines = _.cloneDeep(existingLinesO); //console.log("GetSupplementDelta -> newLines", newLines); //console.log("GetSupplementDelta -> existingLines", existingLines); const linesToInsert = []; const linesToUpdate = []; newLines.forEach((newLine) => { const matchingIndex = existingLines.findIndex((eL) => eL.unq_seq === newLine.unq_seq); if (matchingIndex >= 0) { //Found a relevant matching line. Add it to lines to update. linesToUpdate.push({ id: existingLines[matchingIndex].id, newData: newLine // { // ...newLine, // ignore: // newLine.db_ref === "900511" && newLine.prt_dsmk_p !== 50 // ? false // : existingLines[matchingIndex].ignore, // }, }); //Splice out item we found for performance. existingLines.splice(matchingIndex, 1); } else { //Didn't find a match. Must be a new line. linesToInsert.push(newLine); } }); //Wahtever is left in the existing lines, are lines that should be removed. const insertQueries = linesToInsert.reduce((acc, value, idx) => { return acc + generateInsertQuery(value, idx, jobId); }, ""); const updateQueries = linesToUpdate.reduce((acc, value, idx) => { return acc + generateUpdateQuery(value, idx); }, ""); const removeQueries = existingLines.reduce((acc, value, idx) => { return acc + generateRemoveQuery(value, idx); }, ""); return new Promise((resolve, reject) => { resolve(gql` mutation SUPPLEMENT_EST_LINES{ ${insertQueries + updateQueries + removeQueries} } `); }); }; const generateInsertQuery = (lineToInsert, index, jobId) => { lineToInsert.jobid = jobId; return ` insert_joblines${index}: insert_joblines(objects: ${JSON.stringify(lineToInsert).replace(/"(\w+)"\s*:/g, "$1:")}) { returning { id } }`; }; const generateUpdateQuery = (lineToUpdate, index) => { return ` update_joblines${index}: update_joblines(where: { id: { _eq: "${lineToUpdate.id}" } }, _set: ${JSON.stringify( lineToUpdate.newData ).replace(/"(\w+)"\s*:/g, "$1:")}) { returning { id } }`; }; const generateRemoveQuery = (lineToRemove, index) => { return ` delete_joblines_r${index}: delete_joblines_by_pk(id: "${lineToRemove.id}") { id }`; }; export const V3GroupFinder = (job) => { //Query the Job Targets Database to get one that will match on the Make and Type. //Using faked data for now. //TODO - Once verified, replace with real data. let type = job.v_type === "PC" || job.v_type === "SUV" ? "PC" : job.v_type; if (job.v_makedesc.toUpperCase() === "RAM") { console.log("*** The make was RAM"); job.v_makedesc = "DODGE"; } //Added as an overrride for missing RAM vehicles. const result = FakedGroupsForV3WithMake.filter((f) => { return ( f.make === job.v_makedesc.toUpperCase() && (f.type === type || f.type === null) && f.name === "V3" && job.v_age >= f.ageGte && (job.v_age < f.ageLt || f.ageLt === null) ); }); if (result.length === 0) { return null; } else if (result.length === 1) { return result[0]; } else { logger.error( "Found multiple vehicle groups!", job.v_makedesc.toUpperCase(), job.v_type ? job.v_type.toUpperCase() : null ); return "2+ Groups Matched."; } }; export const V3TargetFinder = (job) => { switch (job.group) { case "Default": case "Group 1": return 0.023; case "Group 2": return 0.045; case "Group 3": return 0.078; case "Group 4": return 0.093; case "Group 5": return 0.125; case "Group 6": return 0.156; case "Group 7": return 0.18; case "Group 8": return 0.213; case "Group 9": return 0.25; case "Group 10": return 0.281; case "Group 11": return 0.293; case "Group 12": return 0.32; default: return 0.023; } }; const DetermineVehicleGroup = async (job) => { logger.info( "Searching for vehicle groups.!", job.v_makedesc.toUpperCase(), job.v_type ? job.v_type.toUpperCase() : null ); //Need to add a ruleset check here. If using V3, then we need to check against a different table. const RulesetToApply = WhichRulesetToApply(job.close_date); if (RulesetToApply === "V3") { const target = V3GroupFinder(job); return target?.group || "Default"; } else { const vehicleGroups = await client.query({ query: QUERY_GROUPS_BY_MAKE_TYPE, variables: { make: job.v_makedesc.toUpperCase(), type: job.v_type, date: dayjs().format("YYYY-MM-DD") } }); if (vehicleGroups.data.groupings.length === 1) { logger.info("Found 1 vehicle group.!", vehicleGroups.data.groupings[0]); return vehicleGroups.data.groupings[0].group; } else if (vehicleGroups.data.groupings.length === 0) { //Uh-oh, should only be 1. logger.info("No vehicle groups found."); return null; } else { //Should never be here. alert("Fatal error. Multiple vehicle groups found for this claim."); logger.error( "Found multiple vehicle groups!", job.v_makedesc.toUpperCase(), job.v_type ? job.v_type.toUpperCase() : null ); } return ""; } }; const DetermineVehicleType = (job) => { const inTrucks = TrucksList.includes(job.v_model.toUpperCase()); const inPV = PassengerVanList.includes(job.v_model.toUpperCase()); const inSuv = SuvList.includes(job.v_model.toUpperCase()); const inCv = CargoVanList.includes(job.v_model.toUpperCase()); console.log("inTrucks", inTrucks); console.log("inPV", inPV); console.log("inSuv", inSuv); console.log("inCv", inCv); if (inTrucks) return "TK"; else if (inPV) return "PC"; else if (inSuv) return "SUV"; else if (inCv) return "VN"; else if (job.v_type === "CO") return "TK"; else return job.v_type; }; export const FakedGroupsForV3WithMake = [ { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "ALFA ROMEO", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "ASTON MARTIN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "AUDI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "CADILLAC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "VN", desc: "Van", make: "DODGE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "FERRARI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "FIAT", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "GENESIS", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "VN", desc: "Van", make: "HONDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "HUMMER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "HUMMER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "ISUZU", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "JAGUAR", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "LAND ROVER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "LINCOLN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "VN", desc: "Van", make: "LINCOLN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "MASERATI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "MAZDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "MERCEDES BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "VN", desc: "Van", make: "MERCEDES BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "MERCEDES-BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "VN", desc: "Van", make: "MERCEDES-BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "MERCURY", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "MINI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "OLDSMOBILE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "PLYMOUTH", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "POLESTAR", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "PONTIAC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "PORSCHE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "SATURN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "SCION", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "SMART", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "SUBARU", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "SUZUKI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "SUZUKI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "TESLA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.023, group: "Group 1", type: "VN", desc: "Van", make: "TOYOTA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "ALFA ROMEO", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "ASTON MARTIN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "CADILLAC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "FERRARI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "FIAT", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "GENESIS", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "VN", desc: "Van", make: "HONDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "HUMMER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "HUMMER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "ISUZU", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "JAGUAR", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "LAND ROVER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "LINCOLN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "VN", desc: "Van", make: "LINCOLN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "MASERATI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "MAZDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "MERCURY", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "OLDSMOBILE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "PLYMOUTH", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "POLESTAR", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "PONTIAC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "PORSCHE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "SATURN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "SCION", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "SMART", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "SUBARU", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "SUZUKI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "SUZUKI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.023, group: "Group 1", type: "VN", desc: "Van", make: "TOYOTA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "ALFA ROMEO", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "ASTON MARTIN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "CADILLAC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "FERRARI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "GENESIS", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "VN", desc: "Van", make: "HONDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "HUMMER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "HUMMER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "ISUZU", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "LINCOLN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "VN", desc: "Van", make: "LINCOLN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "MASERATI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "MAZDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "MERCURY", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "OLDSMOBILE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "PLYMOUTH", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "POLESTAR", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "PONTIAC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "PORSCHE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "SATURN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "SMART", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "SUBARU", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "SUZUKI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "SUZUKI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.023, group: "Group 1", type: "VN", desc: "Van", make: "TOYOTA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "ALFA ROMEO", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "ASTON MARTIN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "FERRARI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "GENESIS", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "HUMMER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "ISUZU", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "MASERATI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "PLYMOUTH", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.023, group: "Group 1", type: "PC", desc: "Passenger Vehicle", make: "POLESTAR", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.023, group: "Group 1", type: "TK", desc: "Truck", make: "SUZUKI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.281, group: "Group 10", type: "PC", desc: "Passenger Vehicle", make: "GMC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.281, group: "Group 10", type: "PC", desc: "Passenger Vehicle", make: "ACURA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.281, group: "Group 10", type: "PC", desc: "Passenger Vehicle", make: "BUICK", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.281, group: "Group 10", type: "PC", desc: "Passenger Vehicle", make: "CADILLAC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.281, group: "Group 10", type: "TK", desc: "Truck", make: "CHEVROLET", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.281, group: "Group 10", type: "TK", desc: "Truck", make: "DODGE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.281, group: "Group 10", type: "TK", desc: "Truck", make: "RAM", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.281, group: "Group 10", type: "PC", desc: "Passenger Vehicle", make: "FORD", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.281, group: "Group 10", type: "TK", desc: "Truck", make: "GMC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.281, group: "Group 10", type: "PC", desc: "Passenger Vehicle", make: "HONDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.281, group: "Group 10", type: "VN", desc: "Van", make: "HONDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.281, group: "Group 10", type: "PC", desc: "Passenger Vehicle", make: "MERCURY", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.281, group: "Group 10", type: "PC", desc: "Passenger Vehicle", make: "MITSUBISHI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.281, group: "Group 10", type: "PC", desc: "Passenger Vehicle", make: "NISSAN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.281, group: "Group 10", type: "PC", desc: "Passenger Vehicle", make: "TOYOTA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.293, group: "Group 11", type: "PC", desc: "Passenger Vehicle", make: "CHEVROLET", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.293, group: "Group 11", type: "VN", desc: "Van", make: "CHEVROLET", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.293, group: "Group 11", type: "PC", desc: "Passenger Vehicle", make: "CHRYSLER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.293, group: "Group 11", type: "PC", desc: "Passenger Vehicle", make: "DODGE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.293, group: "Group 11", type: "VN", desc: "Van", make: "GMC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.32, group: "Group 12", type: "TK", desc: "Truck", make: "CADILLAC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.32, group: "Group 12", type: "PC", desc: "Passenger Vehicle", make: "CHEVROLET", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.32, group: "Group 12", type: "VN", desc: "Van", make: "CHEVROLET", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.32, group: "Group 12", type: "PC", desc: "Passenger Vehicle", make: "CHRYSLER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.32, group: "Group 12", type: "PC", desc: "Passenger Vehicle", make: "DODGE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.32, group: "Group 12", type: "PC", desc: "Passenger Vehicle", make: "GMC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.32, group: "Group 12", type: "VN", desc: "Van", make: "GMC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.32, group: "Group 12", type: "TK", desc: "Truck", make: "HONDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.32, group: "Group 12", type: "PC", desc: "Passenger Vehicle", make: "OLDSMOBILE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.32, group: "Group 12", type: "PC", desc: "Passenger Vehicle", make: "PONTIAC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.32, group: "Group 12", type: "PC", desc: "Passenger Vehicle", make: "SATURN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.32, group: "Group 12", type: "PC", desc: "Passenger Vehicle", make: "SUZUKI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.045, group: "Group 2", type: "PC", desc: "Passenger Vehicle", make: "BMW", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.045, group: "Group 2", type: "PC", desc: "Passenger Vehicle", make: "LEXUS", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.045, group: "Group 2", type: "VN", desc: "Van", make: "NISSAN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.045, group: "Group 2", type: "PC", desc: "Passenger Vehicle", make: "SUBARU", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.045, group: "Group 2", type: "PC", desc: "Passenger Vehicle", make: "VOLVO", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.045, group: "Group 2", type: "PC", desc: "Passenger Vehicle", make: "TESLA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.045, group: "Group 2", type: "PC", desc: "Passenger Vehicle", make: "JAGUAR", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.045, group: "Group 2", type: "PC", desc: "Passenger Vehicle", make: "TESLA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.045, group: "Group 2", type: "TK", desc: "Truck", make: "SUBARU", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.078, group: "Group 3", type: "TK", desc: "Truck", make: "FORD", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.078, group: "Group 3", type: "VN", desc: "Van", make: "FORD", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.078, group: "Group 3", type: "PC", desc: "Passenger Vehicle", make: "HYUNDAI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.078, group: "Group 3", type: "TK", desc: "Truck", make: "HYUNDAI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.078, group: "Group 3", type: "PC", desc: "Passenger Vehicle", make: "INFINITI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.078, group: "Group 3", type: "TK", desc: "Truck", make: "JEEP", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.078, group: "Group 3", type: "PC", desc: "Passenger Vehicle", make: "KIA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.078, group: "Group 3", type: "PC", desc: "Passenger Vehicle", make: "LINCOLN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.078, group: "Group 3", type: "TK", desc: "Truck", make: "NISSAN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.078, group: "Group 3", type: "PC", desc: "Passenger Vehicle", make: "VOLKSWAGEN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.078, group: "Group 3", type: "PC", desc: "Passenger Vehicle", make: "AUDI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.078, group: "Group 3", type: "VN", desc: "Van", make: "DODGE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.078, group: "Group 3", type: "TK", desc: "Truck", make: "HYUNDAI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.078, group: "Group 3", type: "PC", desc: "Passenger Vehicle", make: "MERCEDES BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.078, group: "Group 3", type: "VN", desc: "Van", make: "MERCEDES BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.078, group: "Group 3", type: "PC", desc: "Passenger Vehicle", make: "MERCEDES-BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.078, group: "Group 3", type: "VN", desc: "Van", make: "MERCEDES-BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.078, group: "Group 3", type: "PC", desc: "Passenger Vehicle", make: "MINI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.078, group: "Group 3", type: "PC", desc: "Passenger Vehicle", make: "VOLVO", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.078, group: "Group 3", type: "TK", desc: "Truck", make: "HYUNDAI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.078, group: "Group 3", type: "PC", desc: "Passenger Vehicle", make: "LAND ROVER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.078, group: "Group 3", type: "VN", desc: "Van", make: "MERCEDES BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.078, group: "Group 3", type: "VN", desc: "Van", make: "MERCEDES-BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.078, group: "Group 3", type: "PC", desc: "Passenger Vehicle", make: "VOLVO", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.078, group: "Group 3", type: "TK", desc: "Truck", make: "HYUNDAI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.078, group: "Group 3", type: "PC", desc: "Passenger Vehicle", make: "PORSCHE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.078, group: "Group 3", type: "PC", desc: "Passenger Vehicle", make: "VOLVO", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "ACURA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "BUICK", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "CADILLAC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.093, group: "Group 4", type: "TK", desc: "Truck", make: "CHEVROLET", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "FORD", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.093, group: "Group 4", type: "TK", desc: "Truck", make: "GMC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.093, group: "Group 4", type: "TK", desc: "Truck", make: "HONDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "MAZDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "MITSUBISHI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "AUDI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "MERCEDES BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "MERCEDES-BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "MINI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "JAGUAR", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "LAND ROVER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.093, group: "Group 4", type: "TK", desc: "Truck", make: "LINCOLN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "MERCEDES BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "MERCEDES-BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "SMART", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.093, group: "Group 4", type: "PC", desc: "Passenger Vehicle", make: "TESLA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.125, group: "Group 5", type: "PC", desc: "Passenger Vehicle", make: "CHEVROLET", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.125, group: "Group 5", type: "VN", desc: "Van", make: "CHEVROLET", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.125, group: "Group 5", type: "TK", desc: "Truck", make: "DODGE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.125, group: "Group 5", type: "TK", desc: "Truck", make: "RAM", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.125, group: "Group 5", type: "PC", desc: "Passenger Vehicle", make: "GMC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.125, group: "Group 5", type: "VN", desc: "Van", make: "GMC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.125, group: "Group 5", type: "PC", desc: "Passenger Vehicle", make: "JEEP", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.125, group: "Group 5", type: "PC", desc: "Passenger Vehicle", make: "NISSAN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.125, group: "Group 5", type: "PC", desc: "Passenger Vehicle", make: "TOYOTA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.125, group: "Group 5", type: "TK", desc: "Truck", make: "TOYOTA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.125, group: "Group 5", type: "PC", desc: "Passenger Vehicle", make: "BMW", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.125, group: "Group 5", type: "TK", desc: "Truck", make: "JEEP", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.125, group: "Group 5", type: "PC", desc: "Passenger Vehicle", make: "LEXUS", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.125, group: "Group 5", type: "VN", desc: "Van", make: "NISSAN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.125, group: "Group 5", type: "PC", desc: "Passenger Vehicle", make: "SUBARU", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.125, group: "Group 5", type: "VN", desc: "Van", make: "DODGE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.125, group: "Group 5", type: "PC", desc: "Passenger Vehicle", make: "FIAT", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.125, group: "Group 5", type: "TK", desc: "Truck", make: "JEEP", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.125, group: "Group 5", type: "PC", desc: "Passenger Vehicle", make: "AUDI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.125, group: "Group 5", type: "TK", desc: "Truck", make: "JEEP", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.125, group: "Group 5", type: "VN", desc: "Van", make: "MERCEDES BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.125, group: "Group 5", type: "VN", desc: "Van", make: "MERCEDES-BENZ", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.156, group: "Group 6", type: "PC", desc: "Passenger Vehicle", make: "CHRYSLER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.156, group: "Group 6", type: "PC", desc: "Passenger Vehicle", make: "DODGE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "0 to 2 Years Old", ageGte: 0, ageLt: 3, target: 0.156, group: "Group 6", type: "PC", desc: "Passenger Vehicle", make: "HONDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.156, group: "Group 6", type: "PC", desc: "Passenger Vehicle", make: "LINCOLN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.156, group: "Group 6", type: "PC", desc: "Passenger Vehicle", make: "BMW", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.156, group: "Group 6", type: "PC", desc: "Passenger Vehicle", make: "SCION", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.156, group: "Group 6", type: "TK", desc: "Truck", make: "MAZDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.18, group: "Group 7", type: "PC", desc: "Passenger Vehicle", make: "CADILLAC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.18, group: "Group 7", type: "TK", desc: "Truck", make: "FORD", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.18, group: "Group 7", type: "VN", desc: "Van", make: "FORD", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.18, group: "Group 7", type: "PC", desc: "Passenger Vehicle", make: "HYUNDAI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.18, group: "Group 7", type: "PC", desc: "Passenger Vehicle", make: "INFINITI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.18, group: "Group 7", type: "PC", desc: "Passenger Vehicle", make: "JEEP", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.18, group: "Group 7", type: "PC", desc: "Passenger Vehicle", make: "KIA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.18, group: "Group 7", type: "PC", desc: "Passenger Vehicle", make: "MAZDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.18, group: "Group 7", type: "TK", desc: "Truck", make: "NISSAN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.18, group: "Group 7", type: "TK", desc: "Truck", make: "TOYOTA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.18, group: "Group 7", type: "PC", desc: "Passenger Vehicle", make: "VOLKSWAGEN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.18, group: "Group 7", type: "PC", desc: "Passenger Vehicle", make: "LEXUS", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.18, group: "Group 7", type: "VN", desc: "Van", make: "NISSAN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.18, group: "Group 7", type: "PC", desc: "Passenger Vehicle", make: "SUBARU", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "ACURA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "BUICK", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.213, group: "Group 8", type: "TK", desc: "Truck", make: "CHEVROLET", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.213, group: "Group 8", type: "VN", desc: "Van", make: "CHEVROLET", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.213, group: "Group 8", type: "TK", desc: "Truck", make: "DODGE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.213, group: "Group 8", type: "TK", desc: "Truck", make: "RAM", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "FORD", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.213, group: "Group 8", type: "TK", desc: "Truck", make: "GMC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "HONDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.213, group: "Group 8", type: "TK", desc: "Truck", make: "HONDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "MITSUBISHI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "NISSAN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "TOYOTA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.213, group: "Group 8", type: "TK", desc: "Truck", make: "FORD", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.213, group: "Group 8", type: "VN", desc: "Van", make: "FORD", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.213, group: "Group 8", type: "TK", desc: "Truck", make: "HONDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "HYUNDAI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "INFINITI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "JEEP", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "KIA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "LINCOLN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "MAZDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.213, group: "Group 8", type: "TK", desc: "Truck", make: "NISSAN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.213, group: "Group 8", type: "TK", desc: "Truck", make: "TOYOTA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "VOLKSWAGEN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "BMW", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.213, group: "Group 8", type: "VN", desc: "Van", make: "DODGE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "LEXUS", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "MINI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.213, group: "Group 8", type: "VN", desc: "Van", make: "NISSAN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "SCION", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.213, group: "Group 8", type: "PC", desc: "Passenger Vehicle", make: "SUBARU", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "CHEVROLET", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "CHRYSLER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "DODGE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "GMC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "3 to 5 Years Old", ageGte: 3, ageLt: 5, target: 0.25, group: "Group 9", type: "VN", desc: "Van", make: "GMC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "ACURA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "BUICK", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "CADILLAC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.25, group: "Group 9", type: "TK", desc: "Truck", make: "CHEVROLET", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.25, group: "Group 9", type: "TK", desc: "Truck", make: "DODGE", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.25, group: "Group 9", type: "TK", desc: "Truck", make: "RAM", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "FORD", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.25, group: "Group 9", type: "TK", desc: "Truck", make: "GMC", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "HONDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "MITSUBISHI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "NISSAN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "5 to 7 Years Old", ageGte: 5, ageLt: 8, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "TOYOTA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "FIAT", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.25, group: "Group 9", type: "TK", desc: "Truck", make: "FORD", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.25, group: "Group 9", type: "VN", desc: "Van", make: "FORD", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "HUMMER", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "HYUNDAI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "INFINITI", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "JEEP", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "KIA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "LINCOLN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.25, group: "Group 9", type: "VN", desc: "Van", make: "LINCOLN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "MAZDA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.25, group: "Group 9", type: "TK", desc: "Truck", make: "NISSAN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.25, group: "Group 9", type: "TK", desc: "Truck", make: "TOYOTA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.25, group: "Group 9", type: "VN", desc: "Van", make: "TOYOTA", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" }, { effective_date: Date("2024-09-01"), end_date: Date("2050-01-01"), ageDesc: "Over 7 Years Old", ageGte: 8, ageLt: null, target: 0.25, group: "Group 9", type: "PC", desc: "Passenger Vehicle", make: "VOLKSWAGEN", ins_co: "MPI", name: "V3", created_at: "", updated_at: "", id: "" } ];